From 04a70d2fdae78be616d1e78493d49f324c98ed57 Mon Sep 17 00:00:00 2001 From: Tony Murray Date: Fri, 14 Jun 2024 22:33:51 -0500 Subject: [PATCH] Update Dell MIBs (#16120) * Update Dell MIBs tidy up some related code a bit too to make it more readable * handle extra data correctly (discard it) --- includes/discovery/sensors/state/dell.inc.php | 19 +- includes/discovery/sensors/state/drac.inc.php | 3 +- mibs/dell/MIB-Dell-10892 | 2418 ++++++++++++- mibs/dell/StorageManagement-MIB | 2652 ++++++++------- mibs/drac/IDRAC-MIB-SMIv2 | 3016 +++++++++++++++-- 5 files changed, 6486 insertions(+), 1622 deletions(-) diff --git a/includes/discovery/sensors/state/dell.inc.php b/includes/discovery/sensors/state/dell.inc.php index 670dc1efe4..d5742fad46 100644 --- a/includes/discovery/sensors/state/dell.inc.php +++ b/includes/discovery/sensors/state/dell.inc.php @@ -22,13 +22,12 @@ $tables = [ ['batteryTable', '.1.3.6.1.4.1.674.10893.1.20.130.15.1.4.', 'batteryState', 'batteryName', 'StorageManagement-MIB', 'dell'], ]; -foreach ($tables as $tablevalue) { - $temp = snmpwalk_cache_multi_oid($device, $tablevalue[0], [], $tablevalue[4], $tablevalue[5]); - $cur_oid = $tablevalue[1]; +foreach ($tables as [$table, $num_oid, $value_oid, $descr_oid, $mib, $mib_dir]) { + $temp = snmpwalk_cache_multi_oid($device, $table, [], $mib, $mib_dir); if (is_array($temp)) { //Create State Index - $state_name = 'dell.' . $tablevalue[2]; + $state_name = 'dell.' . $value_oid; if ($state_name == 'dell.processorDeviceStatusStatus' || $state_name == 'dell.memoryDeviceStatus' || $state_name == 'dell.powerSupplyStatus' || $state_name == 'dell.intrusionStatus') { $states = [ ['value' => 1, 'generic' => 3, 'graph' => 0, 'descr' => 'other'], @@ -107,18 +106,18 @@ foreach ($tables as $tablevalue) { create_state_index($state_name, $states); foreach ($temp as $index => $entry) { - if (strpos($index, '54.') === false) { //Because Dell is buggy + if (array_key_exists($value_oid, $entry)) { // ward against extra data from newer MIBs if ($state_name == 'dell.intrusionStatus') { - $descr = $tablevalue[3]; + $descr = $descr_oid; } elseif ($state_name == 'dell.batteryState') { - $descr = str_replace('"', '', snmp_get($device, 'batteryConnectionControllerName.' . $index . '', '-Ovqn', $tablevalue[4])) . ' - ' . $temp[$index][$tablevalue[3]]; + $descr = str_replace('"', '', snmp_get($device, 'batteryConnectionControllerName.' . $index, '-Ovqn', $mib)) . ' - ' . $entry[$descr_oid]; } elseif ($state_name == 'dell.arrayDiskState') { - $descr = str_replace('"', '', snmp_get($device, 'arrayDiskEnclosureConnectionEnclosureName.' . $index . '', '-Ovqn', $tablevalue[4])) . ' - ' . $temp[$index][$tablevalue[3]]; + $descr = str_replace('"', '', snmp_get($device, 'arrayDiskEnclosureConnectionEnclosureName.' . $index, '-Ovqn', $mib)) . ' - ' . $entry[$descr_oid]; } else { - $descr = strip_tags($temp[$index][$tablevalue[3]]); // Use clean as virtualDiskDeviceName is user defined + $descr = strip_tags($entry[$descr_oid]); // Use clean as virtualDiskDeviceName is user defined } //Discover Sensors - discover_sensor($valid['sensor'], 'state', $device, $cur_oid . $index, $index, $state_name, $descr, 1, 1, null, null, null, null, $temp[$index][$tablevalue[2]], 'snmp', $index); + discover_sensor($valid['sensor'], 'state', $device, $num_oid . $index, $index, $state_name, $descr, 1, 1, null, null, null, null, $entry[$value_oid], 'snmp', $index); //Create Sensor To State Index create_sensor_to_state_index($device, $state_name, $index); diff --git a/includes/discovery/sensors/state/drac.inc.php b/includes/discovery/sensors/state/drac.inc.php index 90b2948d95..a15798ed2a 100644 --- a/includes/discovery/sensors/state/drac.inc.php +++ b/includes/discovery/sensors/state/drac.inc.php @@ -20,8 +20,7 @@ $tables = [ ['systemBatteryTable', '.1.3.6.1.4.1.674.10892.5.4.600.50.1.5.', 'systemBatteryStatus', 'systemBatteryLocationName'], ]; -foreach ($tables as $tablevalue) { - [$table_oid, $num_oid, $value_oid, $descr_oid] = $tablevalue; +foreach ($tables as [$table_oid, $num_oid, $value_oid, $descr_oid]) { $temp = snmpwalk_cache_multi_oid($device, $table_oid, [], 'IDRAC-MIB-SMIv2', null, '-OQUse'); // '-OQUsetX' diff --git a/mibs/dell/MIB-Dell-10892 b/mibs/dell/MIB-Dell-10892 index ce51c3d6ff..1dcb6a2fbc 100644 --- a/mibs/dell/MIB-Dell-10892 +++ b/mibs/dell/MIB-Dell-10892 @@ -2,14 +2,14 @@ -- -- Title: Systems Management Instrumentation MIB -- --- Version: 7.4.0 +-- Version: 11.0.0.0 -- --- Release Date:Nov 2013 +-- Release Date: December 2022 -- -- Description: This MIB defines MIB objects that make system instrumentation -- data available to SNMP management applications. -- --- Copyright (c) 2000-2013 Dell Inc. +-- Copyright (c) 2000-2022 Dell Inc. -- All Rights Reserved. -- -- Note: The information and functionality described by this MIB file, @@ -177,7 +177,8 @@ DellStatus ::= INTEGER { ok(3), -- status of object is OK (normal) nonCritical(4), -- status of object is noncritical (warning) critical(5), -- status of object is critical (failure) - nonRecoverable(6) -- status of object is non-recoverable (dead) + nonRecoverable(6), -- status of object is non-recoverable (dead) + absent(7) -- status of object is absent } -- @@ -384,6 +385,14 @@ systemManagementSoftwareManufacturerName OBJECT-TYPE "0100.0013 This attribute defines the manufacturer of the systems management software." ::= { systemManagementSoftwareGroup 13 } +systemManagementSoftwareProdUseFeedback OBJECT-TYPE + SYNTAX DellUnsigned16BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0100.0014 This attribute defines the current state of the +Product Use Feedback feature. Possible values are Enabled(1) and Disabled(0)." + ::= { systemManagementSoftwareGroup 14 } ------------------------------------------------------------------------------- @@ -1730,7 +1739,7 @@ chassisNodeIDName OBJECT-TYPE DESCRIPTION "0300.0010.0001.0050 This attribute defines the NodeID Code of the chassis,if applicable" - ::= { chassisInformationTableEntry 50 } + ::= { chassisInformationTableEntry 50 } @@ -2237,7 +2246,8 @@ DellFirmwareType ::= INTEGER { unifiedServerConfigurator(19), -- type is Unified Server Configurator lifecycleController(20), -- type is Lifecycle Controller iDRAC7(21), -- type is Integrated Dell Remote Access Controller 7 - iDRAC8(22) -- type is Integrated Dell Remote Access Controller 8 + iDRAC8(22), -- type is Integrated Dell Remote Access Controller 8 + iDRAC9(23) -- type is Integrated Dell Remote Access Controller 9 } FirmwareTableEntry ::= SEQUENCE { @@ -2366,7 +2376,9 @@ DellIntrusionReading ::= 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 + chassisBreachSensorFailure(4), -- intrusion sensor has failed + driveBayOpen(5), -- drive bay is open + driveBayOpenExtended(6) -- drive bay open extended } DellIntrusionType ::= INTEGER { chassisBreachDetectionWhenPowerON(1), -- type is detect intrusion while power on @@ -4594,7 +4606,8 @@ AC power cord." DellBatteryReading ::= INTEGER { -- Note: These values are bit masks, so combination values are possible. - predictiveFailure(1), -- battery predictive failure + -- If 0 (zero), battery is absent + predictiveFailure(1), -- battery predictive failure failed(2), -- battery failed presenceDetected(4) -- battery presence detected } @@ -4802,7 +4815,7 @@ powerUsageCumulativeWattageStartDateName OBJECT-TYPE STATUS mandatory DESCRIPTION "0600.0060.0001.0008 This attribute defines the date and time at -which the data collection started for the value reported by the +which the data collection started for the value reported by the powerUsageCumulativeWattage attribute." ::= { powerUsageTableEntry 8 } powerUsagePeakWatts OBJECT-TYPE @@ -4820,7 +4833,7 @@ powerUsagePeakWattsStartDateName OBJECT-TYPE STATUS mandatory DESCRIPTION "0600.0060.0001.0010 This attribute defines the date and time at -which the data collection started for the value reported by the +which the data collection started for the value reported by the powerUsagePeakWatts attribute." ::= { powerUsageTableEntry 10 } powerUsagePeakWattsReadingDateName OBJECT-TYPE @@ -4847,7 +4860,7 @@ powerUsagePeakAmpsStartDateName OBJECT-TYPE STATUS mandatory DESCRIPTION "0600.0060.0001.0013 This attribute defines the date and time at -which the data collection started for the value reported by the +which the data collection started for the value reported by the powerUsagePeakAmps attribute." ::= { powerUsageTableEntry 13 } powerUsagePeakAmpsReadingDateName OBJECT-TYPE @@ -7404,6 +7417,7 @@ DellProcessorDeviceFamily ::= INTEGER { deviceFamilyIs68010(99), -- family is 68010 deviceFamilyIs68020(100), -- family is 68020 deviceFamilyIs68030(101), -- family is 68030 + deviceFamilyIsAMDZen(107), -- family is AMD Zen Processor Family deviceFamilyIsHobbit(112), -- family is Hobbit Family deviceFamilyIsCrusoeTM5000(120), -- family is Crusoe TM5000 Family deviceFamilyIsCrusoeTM3000(121), -- family is Crusoe TM3000 Family @@ -7488,7 +7502,7 @@ DellProcessorDeviceFamily ::= INTEGER { 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 + 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 @@ -7563,7 +7577,8 @@ ProcessorDeviceTableEntry ::= SEQUENCE { processorDeviceExtendedSettings DellUnsigned16BitRange, processorDeviceBrandName DellString, processorDeviceModelName DellString, - processorDeviceSteppingName DellString + processorDeviceSteppingName DellString, + processorDeviceDeprecatedCapabilities DellUnsigned16BitRange } processorDeviceTable OBJECT-TYPE @@ -7767,13 +7782,17 @@ processorDeviceExtendedCapabilities OBJECT-TYPE processor device. This attribute is a bit field where a bit has the meaning defined below when set to 1 (one). +**NOTE: This attribute should consider processorDeviceDeprecatedCapabilities +for deprecated values. + Bit Position Meaning if Set -------- -------------- Bit 0 Virtualization Technology (VT) supported Bit 1 Demand-Based Switching (DBS) supported Bit 2 eXecute Disable (XD) supported - Bit 3 Hyper-Threading (HT) supported" + Bit 3 Hyper-Threading (HT) supported + Bit 4 Turbo Mode (TM) is supported" ::= { processorDeviceTableEntry 21 } processorDeviceExtendedSettings OBJECT-TYPE SYNTAX DellUnsigned16BitRange @@ -7790,7 +7809,8 @@ defined below when set to 1 (one). Bit 0 Virtualization Technology (VT) enabled Bit 1 Demand Based Switching (DBS) enabled Bit 2 eXecute Disable (XD) enabled - Bit 3 Hyper-Threading (HT) enabled" + Bit 3 Hyper-Threading (HT) enabled + Bit 4 Turbo Mode (TM) is enabled" ::= { processorDeviceTableEntry 22 } processorDeviceBrandName OBJECT-TYPE SYNTAX DellString @@ -7816,6 +7836,28 @@ processorDeviceSteppingName OBJECT-TYPE "1100.0030.0001.0025 This attribute defines the stepping of the processor device." ::= { processorDeviceTableEntry 25 } +processorDeviceDeprecatedCapabilities OBJECT-TYPE + SYNTAX DellUnsigned16BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0021 This attribute defines deprecated capabilities of the +processor device. This attribute is a bit field where a bit has the meaning +defined below when set to 1 (one). + +**NOTE: This attribute should be used to ignore deprecated Capabilities +from processorDeviceExtendedCapabilities. The deprecated values should +not be consumed/displayed as they might have default values. + + Bit + Position Meaning if Set + -------- -------------- + Bit 0 Virtualization Technology (VT) is deprecated + Bit 1 Demand-Based Switching (DBS) is deprecated + Bit 2 eXecute Disable (XD) is deprecated + Bit 3 Hyper-Threading (HT) is deprecated + Bit 4 Turbo Mode (TM) is deprecated" + ::= { processorDeviceTableEntry 26 } ------------------------------------------------------------------------------- @@ -8249,15 +8291,16 @@ DellMemoryDeviceType ::= INTEGER { deviceTypeIsDDR2FBDIMM(20), -- type is DDR2 FB-DIMM deviceTypeIsDDR3(24), -- type is DDR3 deviceTypeIsFBD2(25), -- type is FBD2 - deviceTypeIsDDR4(26) -- type is DDR4 + deviceTypeIsDDR4(26), -- type is DDR4 + deviceTypeIsDDR4(34) -- type is DDR5 } -DellMemoryDeviceRank ::= INTEGER { +DellMemoryDeviceRank ::= INTEGER { deviceRankIsUnknown(1), -- Rank is unknown deviceRankIsSingle(2), -- Rank is Single deviceRankIsDual(4), -- Rank is Dual - deviceRankIsQuad(8), -- Rank is Quad - deviceRankIsOctal(16), -- Rank is Octal + deviceRankIsQuad(8), -- Rank is Quad + deviceRankIsOctal(16), -- Rank is Octal deviceRankIsHexa(32) -- Rank is Hexa } @@ -8285,7 +8328,31 @@ DellMemoryDeviceFailureModes ::= INTEGER { eccSingleBitCorrectionFailureRate(2), -- ECC single bit correction failure rate exceeded eccMultiBitFault(4), -- ECC multibit fault encountered eccSingleBitCorrectionLoggingDisabled(8), -- ECC single bit correction logging disabled - deviceDisabledBySpareActivation(16) -- device disabled because of spare activation + deviceDisabledBySpareActivation(16), -- device disabled because of spare activation + nvdimmNotReady(32), -- NVDIMM Not Ready + nvdimmSaveError(64), -- NVDIMM Save Error + nvdimmRestoreErrorOrTimeout(128), -- NVDIMM Restore Error or Restore Timeout + nvdimmIllegalConfiguration(256), -- Illegal NVDIMM Configuration + nvdimmNotResponding(512), -- NVDIMM Not Responding + nvdimmArmFailureOrTimeout(1024), -- NVDIMM Arm Failure or Arm Timeout + nvdimmsInWriteProtectMode(2048), -- All NVDIMMs in Write-Protect Mode + nvmLifetimeExpired(4096), -- NVM Lifetime Expired + nvdimmPersistencyLost(8192), -- NVDIMM Persistency Lost + nvdimmPersistencyRestored(16384), -- NVDIMM Persistency Restored + nvmLifetimeLessThanFivePercent(32768), -- NVM Lifetime less than Five Percent + aepUnCorrectableError(65536), -- Un-correctable Error + aepCorrectableError(131072), -- Correctable Error + aepOperatingNormally(262144) -- Operating Normally +} + +DellMemoryDeviceMemoryTechnology ::= INTEGER { + other(1), -- Technology is Other + unknown(2), -- Technology is Unknown + dram(3), -- Technology is DRAM + nvdimm-n(4), -- Technology is NVDIMM-N + nvdimm-f(5), -- Technology is NVDIMM-F + nvdimm-p(6), -- Technology is NVDIMM-P + intelpersistentmemory(7) -- Technology is Intel Persistent Memory } MemoryDeviceTableEntry ::= SEQUENCE { @@ -8315,7 +8382,12 @@ MemoryDeviceTableEntry ::= SEQUENCE { memoryDeviceAssetTagName DellString, memoryDeviceSpeedName DellString, memoryDeviceRank DellMemoryDeviceRank, - memoryDeviceExtendedSize DellUnsigned32BitRange + memoryDeviceExtendedSize DellUnsigned32BitRange, + memoryDeviceMemoryTechnology DellMemoryDeviceMemoryTechnology, + memoryDeviceNonVolatileSize DellUnsigned32BitRange, + memoryDeviceVolatileSize DellUnsigned32BitRange, + memoryDeviceCacheSize DellUnsigned32BitRange, + memoryDeviceWearLevel DellUnsigned32BitRange } memoryDeviceTable OBJECT-TYPE @@ -8571,6 +8643,43 @@ memory device. **NOTE: This attribute replaces the memoryDeviceSize." ::= { memoryDeviceTableEntry 27 } +memoryDeviceMemoryTechnology OBJECT-TYPE + SYNTAX DellMemoryDeviceMemoryTechnology + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0028 This attribute defines the Memory technology type of the memory device." + ::= { memoryDeviceTableEntry 28 } +memoryDeviceNonVolatileSize OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0029 This attribute defines the size of the Non-volatile portion of the memory device in MegaBytes." + ::= { memoryDeviceTableEntry 29 } +memoryDeviceVolatileSize OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0030 This attribute defines the size of the Volatile portion of the memory device in MegaBytes." + ::= { memoryDeviceTableEntry 30 } +memoryDeviceCacheSize OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0031 This attribute defines the size of the Cache portion of the memory device in MegaBytes." + ::= { memoryDeviceTableEntry 31 } +memoryDeviceWearLevel OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0032 This attribute defines the Remaining Rated Write Endurance of the memory device. +**NOTE: This attribute is applicable only to Non-Volatile family (NVDIMM-F, NVDIMM-N, NVDIMM-P and Intel Persistent Memory) of Memory devices. +For other technology devices (DRAM) this attribute would be reported as 255 (0xFF) and should be ignored." + ::= { memoryDeviceTableEntry 32 } ------------------------------------------------------------------------------- @@ -9115,10 +9224,11 @@ DellNetworkDeviceCapabilities ::= INTEGER { 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 + fcoeOffload(8), -- device has FCoE Offload capability + unknown(16) -- device capabilities are unknown } DellNetworkDeviceNParEPEnabled ::= INTEGER { - disabled(1), -- NParEP mode is not enabled on device + disabled(1), -- NParEP mode is not enabled on device enabled(2), -- NparEP mode is enabled on device unknown (3) -- don't know NParEP mode on device } @@ -9858,14 +9968,30 @@ DellSystemSlotType ::= INTEGER { 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 + systemSlotIsPCIX(18), -- type is PCI-X + systemSlotIsAGP8X(19), -- type is AGP 8X + systemSlotIsM2Socket1DP(20), -- type is M.2 Socket 1-DP (Mechanical Key A) + systemSlotIsM2Socket1SD(21), -- type is M.2 Socket 1-SD (Mechanical Key E) + systemSlotIsM2Socket2(22), -- type is M.2 Socket 2 (Mechanical Key B) + systemSlotIsM2Socket3(23), -- type is M.2 Socket 3 (Mechanical Key M) + systemSlotIsMXMT1(24), -- type is MXM Type I + systemSlotIsMXMT2(25), -- type is MXM Type II + systemSlotIsMXMT3SC(26), -- type is MXM Type III (standard connector) + systemSlotIsMXMT3HEC(27), -- type is MXM Type III (HE connector) + systemSlotIsMXMT4(28), -- type is MXM Type IV + systemSlotIsMXM3TA(29), -- type is MXM 3.0 Type A + systemSlotIsMXM3TB(30), -- type is MXM 3.0 Type B + systemSlotIsPCIEGEN2SFF8639(31), -- type is PCI Express Gen 2 SFF-8639 + systemSlotIsPCIEGEN3SFF8639(32), -- type is PCI Express Gen 3 SFF-86392 + systemSlotIsPCIEMINI52PWBK(33), -- type is PCI Express Mini 52-pin with bottom-side keep-outs + systemSlotIsPCIEMINI52PWOBK(34), -- type is PCI Express Mini 52-pin without bottom-side keep-outs + systemSlotIsPCIEMINI76P(35), -- type is PCI Express Mini 76-pin + systemSlotIsPC98C20(160), -- type is PC-98/C20 + systemSlotIsPC98C24(161), -- type is PC-98/C24 + systemSlotIsPC98E(162), -- type is PC-98/E + systemSlotIsPC98LocalBus(163), -- type is PC-98/Local Bus + systemSlotIsPC98Card(164), -- type is PC-98/Card + systemSlotIsPCIExpress(165), -- type is PCI Express systemSlotIsPCIExpressX1(166), -- type is PCI Express x1 systemSlotIsPCIExpressX2(167), -- type is PCI Express x2 systemSlotIsPCIExpressX4(168), -- type is PCI Express x4 @@ -9876,19 +10002,34 @@ DellSystemSlotType ::= INTEGER { 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 + systemSlotIsPCIExpressGen2X16(176), -- type is PCI Express Gen 2 x16 + systemSlotIsPCIExpressGen3(177), -- type is PCI Express Gen 3 + systemSlotIsPCIExpressGen3X1(178), -- type is PCI Express Gen 3 x1 + systemSlotIsPCIExpressGen3X2(179), -- type is PCI Express Gen 3 x2 + systemSlotIsPCIExpressGen3X4(180), -- type is PCI Express Gen 3 x4 + systemSlotIsPCIExpressGen3X8(181), -- type is PCI Express Gen 3 x8 + systemSlotIsPCIExpressGen3X16(182), -- type is PCI Express Gen 3 x16 + systemSlotIsPCIExpressGen4(184), -- type is PCI Express Gen 4 + systemSlotIsPCIExpressGen4X1(185), -- type is PCI Express Gen 4 x1 + systemSlotIsPCIExpressGen4X2(186), -- type is PCI Express Gen 4 x2 + systemSlotIsPCIExpressGen4X4(187), -- type is PCI Express Gen 4 x4 + systemSlotIsPCIExpressGen4X8(188), -- type is PCI Express Gen 4 x8 + systemSlotIsPCIExpressGen4X16(189) -- type is PCI Express Gen 4 x16 } DellSystemSlotUsage ::= 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 + systemSlotUsageIsInUse(4), -- usage is in use + systemSlotUsageIsUnAvailable(5) -- usage is unavailable } DellSystemSlotLength ::= INTEGER { systemSlotLengthIsOther(1), -- length is other than following values systemSlotLengthIsUnknown(2), -- length is unknown systemSlotLengthIsShort(3), -- length is Short - systemSlotLengthIsLong(4) -- length is Long + systemSlotLengthIsLong(4), -- length is Long + systemSlotLengthIs25dff(5), -- length is 2.5" drive form factor + systemSlotLengthIs35dff(6) -- length is 3.5" drive form factor } DellSystemSlotCategory ::= INTEGER { systemSlotCategoryIsOther(1), -- category is other than following values @@ -12244,7 +12385,7 @@ lRAGlobalSettingsCapabilitiesUnique OBJECT-TYPE ACCESS read-only STATUS mandatory DESCRIPTION -"1500.0010.0001.0004 This attribute defines the global settings capabilities +"1500.0010.0001.0004 This attribute defines the global settings capabilities that all Local Response Agents may or may not allow to be set or reset." ::= { lRAGlobalSettingsTableEntry 4 } lRAGlobalThermalShutdownCapabilitiesUnique OBJECT-TYPE @@ -12252,7 +12393,7 @@ lRAGlobalThermalShutdownCapabilitiesUnique OBJECT-TYPE ACCESS read-only STATUS mandatory DESCRIPTION -"1500.0010.0001.0005 This attribute defines the thermal shutdown capabilities +"1500.0010.0001.0005 This attribute defines the thermal shutdown capabilities of the Local Response Agent." ::= { lRAGlobalSettingsTableEntry 5 } lRAGlobalThermalShutdownStateSettingsUnique OBJECT-TYPE @@ -12260,7 +12401,7 @@ lRAGlobalThermalShutdownStateSettingsUnique OBJECT-TYPE ACCESS read-only STATUS mandatory DESCRIPTION -"1500.0010.0001.0006 This attribute defines the thermal shutdown settings +"1500.0010.0001.0006 This attribute defines the thermal shutdown settings of the Local Response Agent." ::= { lRAGlobalSettingsTableEntry 6 } @@ -13789,20 +13930,24 @@ DellManagementControllerType ::= INTEGER { vrtxCMC(18), -- type is VRTX CMC fx2CMC(19), -- type is FX2 Family CMC iDRAC8(32), -- type is iDRAC8 Monolithic - iDRAC8Modular(33) -- type is iDRAC8 Modular + iDRAC8Modular(33), -- type is iDRAC8 Modular + iDRAC8DCS(34), -- type is iDRAC8 DCS + iDRAC9(48), -- type is iDRAC9 Monolithic + iDRAC9Modular(49), -- type is iDRAC9 Modular + iDRAC9DCS(50) -- type is iDRAC9 DCS } -DellBladeFormFactorType ::= INTEGER { - formFactorTypeIsSingleWidthHalfHeight(1), -- Form Factor Type is singleWidthHalfHeight +DellBladeFormFactorType ::= INTEGER { + formFactorTypeIsSingleWidthHalfHeight(1), -- Form Factor Type is singleWidthHalfHeight formFactorTypeIsDualWidthHalfHeight(2), -- Form Factor Type is DualWidthHalfHeight formFactorTypeIsSingleWidthFullHeight(3), -- Form Factor Type is SingleWidthFullHeight formFactorTypeIsDualWidthFullHeight(4), -- Form Factor Type is DualWidthFullHeight - formFactorTypeIsSingleWidthQuarterHeight(5), -- Form Factor Type is SingleWidthQuarterHeight + formFactorTypeIsSingleWidthQuarterHeight(5), -- Form Factor Type is SingleWidthQuarterHeight formFactorTypeIs1UHalfWidth(6), -- Form Factor Type is 1UHalfWidth formFactorTypeIs1UQuarterWidth(7), -- Form Factor Type is 1UQuarterWidth formFactorTypeIs1UFullWidth(8), -- Form Factor Type is 1UFullWidth notApplicable(256) -- Form Factor Type is Not Applicable for the system - + } @@ -13820,7 +13965,7 @@ BmcTableEntry ::= SEQUENCE { bmcModuleName DellString, bmcIPv4URLName DisplayString (SIZE (0..1024)), bmcIPv6URLName DisplayString (SIZE (0..1024)), - bmcBladeFormFactorName DellBladeFormFactorType + bmcBladeFormFactorName DellBladeFormFactorType } bmcTable OBJECT-TYPE @@ -13946,9 +14091,9 @@ bmcBladeFormFactorName OBJECT-TYPE STATUS mandatory DESCRIPTION "1900.0010.0001.0014 This attribute defines Blade FormFactor." - ::= { bmcTableEntry 14 } - - + ::= { bmcTableEntry 14 } + + ------------------------------------------------------------------------------- @@ -14368,6 +14513,26 @@ alertChassisServiceTag OBJECT-TYPE ------------------------------------------------------------------------------- -- Miscellaneous Traps ------------------------------------------------------------------------------- +alertSystemHeartBeat TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"The Dell OMSA Application generated a test trap." + + --Novell NMS trap annotation + --#TYPE "Server Administrator has generated heart beat alert." + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1 alertSystemUp TRAP-TYPE ENTERPRISE baseboardGroup @@ -14495,6 +14660,69 @@ alertSystemSoftwareEvent TRAP-TYPE ::= 1014 +alertUnMonitoredSensorInfoEvent TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"An Event has generated from UnMonitored Sensors." + + --Novell NMS trap annotation + --#TYPE "Server UnMonitored Sensor Event" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1018 + +alertUnMonitoredSensorWarningEvent TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"An Event has generated from UnMonitored Sensors." + + --Novell NMS trap annotation + --#TYPE "Server UnMonitored Sensor Event" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1019 + +alertUnMonitoredSensorCriticalEvent TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"An Event has generated from UnMonitored Sensors." + + --Novell NMS trap annotation + --#TYPE "Server UnMonitored Sensor Event" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1020 + ------------------------------------------------------------------------------- -- Temperature Probe Traps ------------------------------------------------------------------------------- @@ -14893,6 +15121,73 @@ alertChassisIntrusionDetected TRAP-TYPE ::= 1254 +------------------------------------------------------------------------------- +-- Drive Bay Intrusion Traps +------------------------------------------------------------------------------- + +alertDriveBayIntrusionNormal TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Drive Bay intrusion has returned to normal." + + --Novell NMS trap annotation + --#TYPE "Server Drive Bay Intrusion Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1258 + +alertDriveBayIntrusionDetected TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Drive Bay intrusion has been detected" + + --Novell NMS trap annotation + --#TYPE "Server Drive Bay Intrusion detected" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1259 + +alertDriveBayIntrusionDetectedExtended TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Drive Bay intrusion has been detected for extended period of time." + + --Novell NMS trap annotation + --#TYPE "Server Drive Bay Intrusion Detected extended" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1261 + ------------------------------------------------------------------------------- -- Redundancy Traps ------------------------------------------------------------------------------- @@ -15115,6 +15410,363 @@ alertMemoryDeviceNonRecoverable TRAP-TYPE ::= 1405 +alertMemoryDeviceNVDIMMPersistencyRestored TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Memory device NVDIMM Persistency Restored." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1425 + +alertMemoryDeviceNVDIMMWarning TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Memory device NVM Lifetime less than Five Percent." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device NonCritical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1426 + +alertMemoryDeviceNVDIMMNotReady TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Memory device NVDIMM Not Ready." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1427 + +alertMemoryDeviceNVDIMMSaveError TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Memory device NVDIMM Save Error." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1428 + +alertMemoryDeviceNVDIMMRestoreError TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Memory device NVDIMM Restore Error or Restore Timeout." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1429 + +alertMemoryDeviceNVDIMMConfigErr TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Memory device Illegal NVDIMM Configuration error." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1430 + +alertMemoryDeviceNVDIMMNotResponding TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Memory device NVDIMM Not Responding." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1431 + +alertMemoryDeviceNVDIMMArmFailure TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Memory device NVDIMM Arm Failure." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1432 + +alertMemoryDeviceNVDIMMWriteProtectMode TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Memory device all NVDIMMs in Write-Protect Mode." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1433 + +alertMemoryDeviceNVMLifetimeExpired TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Memory device NVM Lifetime Expired." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1434 + +alertMemoryDeviceNVDIMMPersistencyLost TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Memory device NVDIMM Persistency Lost" + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1435 + +alertMemoryDeviceAEPWarning TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"A Non-Critical event was detected on the Non-Volatile Dual In-line Memory Module NVDIMM device" + + --Novell NMS trap annotation + --#TYPE "Server Memory Device NonCritical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1436 + +alertMemoryDeviceAEPError TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"A Critical event was detected on the Non-Volatile Dual In-line Memory Module NVDIMM device" + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1437 + +alertMemoryDeviceAEPInfo TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"An Information-Only event was detected on the Non-Volatile Dual In-line Memory Module NVDIMM device. The NVDIMM is operating normally." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1438 + +alertMemorySelfhealInitiate TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"The memory health monitor feature has detected a degradation in the DIMM installed. Reboot system to initiate self-heal process." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Noncritical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1439 + +alertMemoryDevicePPRSuccess TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"The self-heal operation successfully completed at DIMM." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1440 + +alertMemoryDevicePPRFail TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Unable to complete the self-heal process of the memory in the DIMM because of internal issues." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Noncritical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1441 + ------------------------------------------------------------------------------- -- Fan Enclosure Traps ------------------------------------------------------------------------------- @@ -15518,6 +16170,27 @@ alertBatteryFailure TRAP-TYPE ::= 1704 +alertBatteryAbsent TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Battery has found to be Absent." + + --Novell NMS trap annotation + --#TYPE "Server Battery Failure" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1706 + ------------------------------------------------------------------------------- -- SD Card Device Traps ------------------------------------------------------------------------------- @@ -15563,7 +16236,515 @@ alertSDCardDeviceFailure TRAP-TYPE --#STATE DEGRADED ::= 1754 - + +------------------------------------------------------------------------------- +-- Memory OEM Traps +------------------------------------------------------------------------------- + +alertMemoryOEMNoAction TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"An operation has completed successfully in the memory device. The server and device is operating normally." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1801 + +alertMemoryOEMCheckConfigInfo TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"A diagnostic event occurred in the memory device. Check the device and system configuration." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1802 + +alertMemoryOEMReseatInfo TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"A diagnostic event occurred in the memory device. Reseat the device." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1803 + +alertMemoryOEMWarmBootInfo TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"A diagnostic event occurred in the memory device. Perform a warm reboot." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1804 + +alertMemoryOEMColdBootInfo TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"A diagnostic event occurred in the memory device. Perform a cold reboot." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1805 + +alertMemoryOEMRetryInfo TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"A diagnostic event occurred in the memory device. Retry operation." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1806 + +alertMemoryOEMSecureEraseInfo TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"A diagnostic event occurred in the memory device. The device is cryptographically locked." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1807 + +alertMemoryOEMUnknownInfo TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"An unknown diagnostic event occurred in the memory device." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1808 + +alertMemoryOEMCheckConfigWarn TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"A diagnostic warning event occurred in the memory device. Check the device and system configuration." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Non-Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1809 + +alertMemoryOEMReseatWarn TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"A diagnostic warning event occurred in the memory device. Reseat the device." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Non-Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1810 + +alertMemoryOEMColdBootWarn TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"A diagnostic warning event occurred in the memory device. Perform a cold reboot." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Non-Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1811 + +alertMemoryOEMContactSupportRepWarn TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"A diagnostic warning event occurred in the memory device. Contact service provider if issue persists." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Non-Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1812 + +alertMemoryOEMRetryWarn TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"A diagnostic warning event occurred in the memory device. Retry operation." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Non-Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1813 + +alertMemoryOEMUpdateFrmwareWarn TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"A diagnostic warning event occurred in the memory device. Update device firmware." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Non-Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1814 + +alertMemoryOEMContactSupportImmWarn TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"A diagnostic warning event occurred in the memory device. Contact your service provider for assistance in replacing the device." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Non-Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1815 + +alertMemoryOEMUnknownWarn TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"An unknown diagnostic warning event occurred in the memory device." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Non-Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1816 + +alertMemoryOEMCheckConfigCrit TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"A critical diagnostic event occurred in the memory device. Check the device and system configuration." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE NONOPERATIONAL + + ::= 1817 + +alertMemoryOEMReseatCrit TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"A critical diagnostic event occurred in the memory device. Reseat the device." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE NONOPERATIONAL + + ::= 1818 + +alertMemoryOEMColdBootCrit TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +" A critical diagnostic event occurred in the memory device. Perform a cold reboot. " + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE NONOPERATIONAL + + ::= 1819 + +alertMemoryOEMRetryCrit TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +" A critical diagnostic event occurred in the memory device. Retry operation. " + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE NONOPERATIONAL + + ::= 1820 + +alertMemoryOEMSantizeCrit TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +" A critical diagnostic event occurred in the memory device. Sanitize the device." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE NONOPERATIONAL + + ::= 1821 + +alertMemoryOEMUpdateFirwareCrit TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"A critical diagnostic event occurred in the memory device. Update device firmware." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE NONOPERATIONAL + + ::= 1822 + +alertMemoryOEMContactSupportImmCrit TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"A critical diagnostic event occurred in the memory device. Contact your service provider for assistance in replacing the device." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE NONOPERATIONAL + + ::= 1823 + +alertMemoryOEMUnknownCrit TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"An unknown critical diagnostic event occurred in the memory device." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE NONOPERATIONAL + + ::= 1824 + ------------------------------------------------------------------------------- -- -- Enhanced Traps @@ -15725,6 +16906,81 @@ enhancedAlertSystemSoftwareEvent TRAP-TYPE ::= 5014 +enhancedAlertUnMonitoredSensorInfoEvent TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"An Event has generated from UnMonitored Sensors." + + --Novell NMS trap annotation + --#TYPE "Server UnMonitored Sensor Event" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 5015 + +enhancedAlertUnMonitoredSensorWarningEvent TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"An Event has generated from UnMonitored Sensors." + + --Novell NMS trap annotation + --#TYPE "Server UnMonitored Sensor Event" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5016 + +enhancedAlertUnMonitoredSensorCriticalEvent TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"An Event has generated from UnMonitored Sensors." + + --Novell NMS trap annotation + --#TYPE "Server UnMonitored Sensor Event" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5017 + ------------------------------------------------------------------------------- -- Temperature Probe Traps ------------------------------------------------------------------------------- @@ -16195,6 +17451,85 @@ enhancedAlertChassisIntrusionDetected TRAP-TYPE ::= 5254 +------------------------------------------------------------------------------- +-- Drive Bay Intrusion Traps +------------------------------------------------------------------------------- + +enhancedAlertDriveBayIntrusionNormal TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Drive Bay intrusion has returned to normal." + + --Novell NMS trap annotation + --#TYPE "Server Drive Bay Intrusion Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 5258 + +enhancedAlertDriveBayIntrusionDetected TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Drive Bay intrusion has been detected." + + --Novell NMS trap annotation + --#TYPE "Server Drive Bay Intrusion detected" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 5259 + +enhancedAlertDriveBayIntrusionDetectedExtended TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Drive Bay intrusion has been detected for extended period of time." + + --Novell NMS trap annotation + --#TYPE "Server Drive Bay Intrusion Detected Extended" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 5261 + ------------------------------------------------------------------------------- -- Redundancy Traps ------------------------------------------------------------------------------- @@ -16457,6 +17792,431 @@ enhancedAlertMemoryDeviceNonRecoverable TRAP-TYPE ::= 5405 +enhancedAlertMemoryDeviceNVDIMMPersistencyRestored TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Memory device NVDIMM Persistency Restored." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 5425 + +enhancedAlertMemoryDeviceNVDIMMWarning TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Memory device NVM Lifetime less than Five Percent." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device NonCritical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5426 + +enhancedAlertMemoryDeviceNVDIMMNotReady TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Memory device NVDIMM Not Ready." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5427 + +enhancedAlertMemoryDeviceNVDIMMSaveError TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Memory device NVDIMM Save Error." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5428 + +enhancedAlertMemoryDeviceNVDIMMRestoreError TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Memory device NVDIMM Restore Error or Restore Timeout." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5429 + +enhancedAlertMemoryDeviceNVDIMMConfigErr TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Memory device Illegal NVDIMM Configuration error." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5430 + +enhancedAlertMemoryDeviceNVDIMMNotResponding TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Memory device NVDIMM Not Responding." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5431 + +enhancedAlertMemoryDeviceNVDIMMArmFailure TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Memory device NVDIMM Arm Failure." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5432 + +enhancedAlertMemoryDeviceNVDIMMWriteProtectMode TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Memory device all NVDIMMs in Write-Protect Mode." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5433 + +enhancedAlertMemoryDeviceNVMLifetimeExpired TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Memory device NVM Lifetime Expired." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5434 + +enhancedAlertMemoryDeviceNVDIMMPersistencyLost TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Memory device NVDIMM Persistency Lost" + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5435 + +enhancedAlertMemoryDeviceAEPError TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"A Critical event was detected on the Non-Volatile Dual In-line Memory Module NVDIMM device" + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5436 + +enhancedAlertMemoryDeviceAEPWarning TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"A Non-Critical event was detected on the Non-Volatile Dual In-line Memory Module NVDIMM device" + + --Novell NMS trap annotation + --#TYPE "Server Memory Device NonCritical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5437 + +enhancedAlertMemoryDeviceAEPInfo TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"An Information-Only event was detected on the Non-Volatile Dual In-line Memory Module NVDIMM device. The NVDIMM is operating normally." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 5438 + +enhancedAlertMemorySelfhealInitiate TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"The memory health monitor feature has detected a degradation in the DIMM installed. Reboot system to initiate self-heal process." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Noncritical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5439 + +enhancedAlertMemoryDevicePPRSuccess TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"The self-heal operation successfully completed at DIMM." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 5440 + +enhancedAlertMemoryDevicePPRFail TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Unable to complete the self-heal process of the memory in the DIMM installed because of internal issues." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Noncritical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5441 + ------------------------------------------------------------------------------- -- Fan Enclosure Traps ------------------------------------------------------------------------------- @@ -16932,6 +18692,31 @@ enhancedAlertBatteryFailure TRAP-TYPE ::= 5704 +enhancedAlertBatteryAbsent TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Battery has found to be Absent." + + --Novell NMS trap annotation + --#TYPE "Server Battery Failure" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5706 + ------------------------------------------------------------------------------- -- SD Card Device Traps ------------------------------------------------------------------------------- @@ -16986,6 +18771,545 @@ enhancedAlertSDCardDeviceFailure TRAP-TYPE ::= 5754 +------------------------------------------------------------------------------- +-- Memory OEM Traps +------------------------------------------------------------------------------- + +enhancedAlertMemoryOEMNoAction TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"An operation has completed successfully in the memory device. The server and device is operating normally." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 5801 + +enhancedAlertMemoryOEMCheckConfigInfo TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"A diagnostic event occurred in the memory device. Check the device and system configuration." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 5802 + +enhancedAlertMemoryOEMReseatInfo TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"A diagnostic event occurred in the memory device. Reseat the device." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 5803 + +enhancedAlertMemoryOEMWarmBootInfo TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"A diagnostic event occurred in the memory device. Perform a warm reboot." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 5804 + +enhancedAlertMemoryOEMColdBootInfo TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"A diagnostic event occurred in the memory device. Perform a cold reboot." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 5805 + +enhancedAlertMemoryOEMRetryInfo TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"A diagnostic event occurred in the memory device. Retry operation." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 5806 + +enhancedAlertMemoryOEMSecureEraseInfo TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"A diagnostic event occurred in the memory device. The device is cryptographically locked." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 5807 + +enhancedAlertMemoryOEMUnknownInfo TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"An unknown diagnostic event occurred in the memory device." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 5808 + +enhancedAlertMemomoryOEMCheckConfigWarning TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"A diagnostic warning event occurred in the memory device. Check the device and system configuration." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Noncritical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5809 + +enhancedAlertMemomoryOEMReseatWarning TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"A diagnostic warning event occurred in the memory device. Reseat the device." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Noncritical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5810 + +enhancedAlertMemomoryOEMColdBootWarning TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"A diagnostic warning event occurred in the memory device. Perform a cold reboot." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Noncritical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5811 + +enhancedAlertMemomoryOEMContactServiceWarning TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"A diagnostic warning event occurred in the memory device. Contact service provider if issue persists." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Noncritical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5812 + +enhancedAlertMemomoryOEMRetryWarning TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"A diagnostic warning event occurred in the memory device. Retry operation." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Noncritical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5813 + +enhancedAlertMemomoryOEMUpdateFirmwareWarning TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"A diagnostic warning event occurred in the memory device. Update device firmware. " + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Noncritical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5814 + +enhancedAlertMemomoryContactAssistanceWarning TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"A diagnostic warning event occurred in the memory device. Contact your service provider for assistance in replacing the device." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Noncritical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5815 + +enhancedAlertMemomoryOEMUnknownWarning TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"An unknown diagnostic warning event occurred in the memory device." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Noncritical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5816 + +enhancedAlertMemoryOEMCheckConfigCrit TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"A critical diagnostic event occurred in the memory device. Check the device and system configuration." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE NONOPERATIONAL + + ::= 5817 + +enhancedAlertMemoryOEMReseatCrit TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"A critical diagnostic event occurred in the memory device. Reseat the device." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE NONOPERATIONAL + + ::= 5818 + +enhancedAlertMemoryOEMColdBootCrit TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +" A critical diagnostic event occurred in the memory device. Perform a cold reboot. " + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE NONOPERATIONAL + + ::= 5819 + +enhancedAlertMemoryOEMRetryCrit TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +" A critical diagnostic event occurred in the memory device. Retry operation. " + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE NONOPERATIONAL + + ::= 5820 + +enhancedAlertMemoryOEMSantizeCrit TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +" A critical diagnostic event occurred in the memory device. Sanitize the device." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE NONOPERATIONAL + + ::= 5821 + +enhancedAlertMemoryOEMUpdateFirwareCrit TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"A critical diagnostic event occurred in the memory device. Update device firmware." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE NONOPERATIONAL + + ::= 5822 + +enhancedAlertMemoryOEMContactSupportImmCrit TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"A critical diagnostic event occurred in the memory device. Contact your service provider for assistance in replacing the device." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE NONOPERATIONAL + + ::= 5823 + +enhancedAlertMemoryOEMUnknownCrit TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"An unknown critical diagnostic event occurred in the memory device." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE NONOPERATIONAL + + ::= 5824 END diff --git a/mibs/dell/StorageManagement-MIB b/mibs/dell/StorageManagement-MIB index 0c20dad715..bad0370eec 100644 --- a/mibs/dell/StorageManagement-MIB +++ b/mibs/dell/StorageManagement-MIB @@ -1,42 +1,42 @@ -- -- dcstorag.mib -- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 240 --- Monday, September 02, 2013 at 16:26:07 +-- Release Date: December 2022 -- --- Copyright (c) 2002 Dell +-- Copyright (c) 2000-2022 Dell Inc. -- Module Name: dcstorag.mib -- Abstract: -- Defines the Dell OpenManage Storage Management SNMP interface. -- Authors: --- +-- -- Revision History: --- KEMR (10/23/02) 0.1 - Original draft --- +-- KEMR (10/23/02) 0.1 - Original draft +-- -- IMPORTANT NOTE -- MG-SOFT MibBuilder will be used as the tool to change this MIB. Because of the way the MG-SOFT MIB tools work, a copy --- of the intermediate file with the extension .bui will be kept in SourceSafe along with the ASCII .mib version. When +-- of the intermediate file with the extension .bui will be kept in SourceSafe along with the ASCII .mib version. When -- any changes are made to the MIB they will have to be made to the .bui file using MibBuilder and then exported to the --- .mib file. If you open the .mib version of the MIB in MibBuilder, the compiler is run in on the fly and ALL comments +-- .mib file. If you open the .mib version of the MIB in MibBuilder, the compiler is run in on the fly and ALL comments -- will be removed. This is a "feature" of the tool and is beyond our control. StorageManagement-MIB DEFINITIONS ::= BEGIN - + IMPORTS - OBJECT-TYPE - FROM RFC-1212 - TRAP-TYPE - FROM RFC-1215 - enterprises - FROM RFC1155-SMI - DisplayString + OBJECT-TYPE + FROM RFC-1212 + TRAP-TYPE + FROM RFC-1215 + enterprises + FROM RFC1155-SMI + DisplayString FROM RFC1213-MIB; - - + + -- -- Type definitions -- - + DellStatus ::= INTEGER { other(1), @@ -47,30 +47,30 @@ nonRecoverable(6) } - + -- -- Node definitions -- - + -- 1.3.6.1.4.1.674 dell OBJECT IDENTIFIER ::= { enterprises 674 } - + -- 1.3.6.1.4.1.674.10893 storage OBJECT IDENTIFIER ::= { dell 10893 } - + -- 1.3.6.1.4.1.674.10893.1 software OBJECT IDENTIFIER ::= { storage 1 } - --- The Storage Management MIB (Management Information Base) Group --- defines the properties that identify information about the Storage + +-- The Storage Management MIB (Management Information Base) Group +-- defines the properties that identify information about the Storage -- Management software product and the current status of the system it manages. -- 1.3.6.1.4.1.674.10893.1.20 storageManagement OBJECT IDENTIFIER ::= { software 20 } - + -- 1.3.6.1.4.1.674.10893.1.20.1 softwareVersion OBJECT-TYPE SYNTAX DisplayString (SIZE (1..32)) @@ -80,7 +80,7 @@ "Version number of the storage management component of the systems management software." ::= { storageManagement 1 } - + -- 1.3.6.1.4.1.674.10893.1.20.2 globalStatus OBJECT-TYPE SYNTAX INTEGER @@ -94,11 +94,11 @@ STATUS mandatory DESCRIPTION "Global health information for the subsystem managed by - the Storage Management software. This global status is - customized for HP OpenView. Other applications should - refer to the agentSystemGlobalStatus entry in the + the Storage Management software. This global status is + customized for HP OpenView. Other applications should + refer to the agentSystemGlobalStatus entry in the globalData object group. - + Possible values: 1: Critical 2: Warning @@ -106,7 +106,7 @@ 4: Unknown" ::= { storageManagement 2 } - + -- 1.3.6.1.4.1.674.10893.1.20.3 softwareManufacturer OBJECT-TYPE SYNTAX DisplayString (SIZE (1..32)) @@ -116,7 +116,7 @@ "Manufacturer information for the Storage Management software." ::= { storageManagement 3 } - + -- 1.3.6.1.4.1.674.10893.1.20.4 softwareProduct OBJECT-TYPE SYNTAX DisplayString (SIZE (1..64)) @@ -126,7 +126,7 @@ "Product information for the Storage Management software." ::= { storageManagement 4 } - + -- 1.3.6.1.4.1.674.10893.1.20.5 softwareDescription OBJECT-TYPE SYNTAX DisplayString (SIZE (1..128)) @@ -136,13 +136,13 @@ "Product Description for the Storage Management software." ::= { storageManagement 5 } - --- The Storage Management Information Management Information Base (MIB) + +-- The Storage Management Information Management Information Base (MIB) -- Group defines the properties that identify the Storage Management software SNMP agent. -- 1.3.6.1.4.1.674.10893.1.20.100 storageManagementInfo OBJECT IDENTIFIER ::= { storageManagement 100 } - + -- 1.3.6.1.4.1.674.10893.1.20.100.1 displayName OBJECT-TYPE SYNTAX DisplayString @@ -152,7 +152,7 @@ "Name of this management software for display purposes." ::= { storageManagementInfo 1 } - + -- 1.3.6.1.4.1.674.10893.1.20.100.2 description OBJECT-TYPE SYNTAX DisplayString @@ -162,7 +162,7 @@ "A short description of this management software." ::= { storageManagementInfo 2 } - + -- 1.3.6.1.4.1.674.10893.1.20.100.3 agentVendor OBJECT-TYPE SYNTAX DisplayString @@ -172,7 +172,7 @@ "The name of the management software manufacturer." ::= { storageManagementInfo 3 } - + -- 1.3.6.1.4.1.674.10893.1.20.100.4 agentVersion OBJECT-TYPE SYNTAX DisplayString @@ -182,14 +182,14 @@ "This entry is obsolete. Refer to softwareVersion." ::= { storageManagementInfo 4 } - --- The Global Data Management Information Base (MIB) Group defines the --- properties that identify status information about system that the + +-- The Global Data Management Information Base (MIB) Group defines the +-- properties that identify status information about system that the -- Storage Management software is managing and about the Storage Management SNMP agent. -- 1.3.6.1.4.1.674.10893.1.20.110 globalData OBJECT IDENTIFIER ::= { storageManagement 110 } - + -- 1.3.6.1.4.1.674.10893.1.20.110.1 agentSystemGlobalStatus OBJECT-TYPE SYNTAX INTEGER @@ -207,7 +207,7 @@ Note: Enumerated values have changed." ::= { globalData 1 } - + -- 1.3.6.1.4.1.674.10893.1.20.110.2 agentLastGlobalStatus OBJECT-TYPE SYNTAX INTEGER @@ -225,7 +225,7 @@ Note: Enumerated values have changed." ::= { globalData 2 } - + -- 1.3.6.1.4.1.674.10893.1.20.110.3 agentTimeStamp OBJECT-TYPE SYNTAX INTEGER @@ -236,19 +236,19 @@ Universal time in sec since UTC 1/1/70." ::= { globalData 3 } - + -- 1.3.6.1.4.1.674.10893.1.20.110.4 agentGetTimeout OBJECT-TYPE SYNTAX INTEGER (1..10000) ACCESS read-only STATUS mandatory DESCRIPTION - "Suggested timeout value in milliseconds for how long - the SNMP getter should wait while attempting to poll + "Suggested timeout value in milliseconds for how long + the SNMP getter should wait while attempting to poll the SNMP agent." ::= { globalData 4 } - + -- 1.3.6.1.4.1.674.10893.1.20.110.5 agentModifiers OBJECT-TYPE SYNTAX INTEGER (1..10000) @@ -262,7 +262,7 @@ " ::= { globalData 5 } - + -- 1.3.6.1.4.1.674.10893.1.20.110.6 agentRefreshRate OBJECT-TYPE SYNTAX INTEGER (1..10000) @@ -273,7 +273,7 @@ The default value is 300 seconds, or 5 minutes." ::= { globalData 6 } - + -- 1.3.6.1.4.1.674.10893.1.20.110.7 agentHostname OBJECT-TYPE SYNTAX DisplayString @@ -283,7 +283,7 @@ "This entry is obsolete for Storage Management." ::= { globalData 7 } - + -- 1.3.6.1.4.1.674.10893.1.20.110.8 agentIPAddress OBJECT-TYPE SYNTAX DisplayString @@ -293,7 +293,7 @@ "This entry is obsolete for Storage Management." ::= { globalData 8 } - + -- 1.3.6.1.4.1.674.10893.1.20.110.9 agentSoftwareStatus OBJECT-TYPE SYNTAX INTEGER @@ -307,7 +307,7 @@ "This entry is obsolete for Storage Management." ::= { globalData 9 } - + -- 1.3.6.1.4.1.674.10893.1.20.110.10 agentSnmpVersion OBJECT-TYPE SYNTAX DisplayString @@ -317,7 +317,7 @@ "This entry is obsolete. Refer to softwareVersion." ::= { globalData 10 } - + -- 1.3.6.1.4.1.674.10893.1.20.110.11 agentMibVersion OBJECT-TYPE SYNTAX DisplayString @@ -327,7 +327,7 @@ "Version of the Storage Management MIB." ::= { globalData 11 } - + -- 1.3.6.1.4.1.674.10893.1.20.110.12 agentManagementSoftwareURLName OBJECT-TYPE SYNTAX DisplayString @@ -337,7 +337,7 @@ "The Universal Resource Locator (URL) of the systems management software." ::= { globalData 12 } - + -- 1.3.6.1.4.1.674.10893.1.20.110.13 agentGlobalSystemStatus OBJECT-TYPE SYNTAX DellStatus @@ -347,22 +347,22 @@ "Global health information for the subsystem managed by the Storage Management software. This global status should be used by applications other than HP OpenView. - HP OpenView should refer to the globalStatus in the root level object - group. 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 + HP OpenView should refer to the globalStatus in the root level object + group. 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. - + Possible values: 1: Other 2: Unknown - 3: OK - 4: Non-critical + 3: OK + 4: Non-critical 5: Critical 6: Non-recoverable" ::= { globalData 13 } - + -- 1.3.6.1.4.1.674.10893.1.20.110.14 agentLastGlobalSystemStatus OBJECT-TYPE SYNTAX DellStatus @@ -370,17 +370,17 @@ STATUS mandatory DESCRIPTION "The previous global status of the system managed by the Storage Management software. - + Possible values: 1: Other 2: Unknown - 3: OK - 4: Non-critical + 3: OK + 4: Non-critical 5: Critical 6: Non-recoverable" ::= { globalData 14 } - + -- 1.3.6.1.4.1.674.10893.1.20.110.15 agentSmartThermalShutdown OBJECT-TYPE SYNTAX INTEGER @@ -398,32 +398,32 @@ 2: Disabled" ::= { globalData 15 } - --- The Physical Devices Management Information Base (MIB) group exposes --- information about the devices managed by the Storage Management + +-- The Physical Devices Management Information Base (MIB) group exposes +-- information about the devices managed by the Storage Management -- software and their relationships to each other. -- This group and all of its associated tables and objects are not --- supported on Microsoft Windows Advanced Server Limited Edition +-- supported on Microsoft Windows Advanced Server Limited Edition -- 64-bit operating system (Windows.Net-64) on a PE7150. -- 1.3.6.1.4.1.674.10893.1.20.130 physicalDevices OBJECT IDENTIFIER ::= { storageManagement 130 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.2 channelTable OBJECT-TYPE SYNTAX SEQUENCE OF ChannelEntry ACCESS not-accessible STATUS mandatory DESCRIPTION - "A table of controller channels. The number of entries is - related to the number of channels supported by a RAID - controller. Perc2 RAID controller supports a max of 4 - channels per controller. The maximum number of entries is + "A table of controller channels. The number of entries is + related to the number of channels supported by a RAID + controller. Perc2 RAID controller supports a max of 4 + channels per controller. The maximum number of entries is implementation dependent. Note: The properties in this table may not be applicable to all entries." ::= { physicalDevices 2 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.2.1 channelEntry OBJECT-TYPE SYNTAX ChannelEntry @@ -435,9 +435,9 @@ INDEX { channelNumber } ::= { channelTable 1 } - + ChannelEntry ::= - SEQUENCE { + SEQUENCE { channelNumber INTEGER, channelName @@ -471,19 +471,19 @@ "Instance number of this channel entry." ::= { channelEntry 1 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.2.1.2 channelName OBJECT-TYPE SYNTAX DisplayString ACCESS read-only STATUS mandatory DESCRIPTION - "The name of the channel as represented in Storage Management. - The name will include the word channel and the instance. + "The name of the channel as represented in Storage Management. + The name will include the word channel and the instance. For example: Channel 1" ::= { channelEntry 2 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.2.1.3 channelState OBJECT-TYPE SYNTAX INTEGER @@ -501,14 +501,14 @@ Possible states: 0: Unknown 1: Ready - The I/O has resumed. - 2: Failed + 2: Failed 3: Online 4: Offline - The I/O has paused. 6: Degraded " ::= { channelEntry 3 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.2.1.4 channelSeverity OBJECT-TYPE SYNTAX INTEGER @@ -524,7 +524,7 @@ It was replaced with RollUpStatus and ComponentStatus for each device." ::= { channelEntry 4 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.2.1.5 channelTermination OBJECT-TYPE SYNTAX INTEGER @@ -536,15 +536,15 @@ ACCESS read-only STATUS mandatory DESCRIPTION - "The type of SCSI termination on this channel. + "The type of SCSI termination on this channel. Termination is required for proper operation of this channel. - + 1: Wide Termination (16 bit) 2: Narrow Termination (8 bit) 3: Not Terminated" ::= { channelEntry 5 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.2.1.6 channelSCSIID OBJECT-TYPE SYNTAX INTEGER @@ -554,7 +554,7 @@ "The SCSI ID of the controller to which the channel belongs." ::= { channelEntry 6 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.2.1.7 channelRollUpStatus OBJECT-TYPE SYNTAX DellStatus @@ -562,36 +562,36 @@ STATUS mandatory DESCRIPTION "Severity of the channel state. - This is the combined status of the channel and its + This is the combined status of the channel and its components. Possible values: 1: Other 2: Unknown - 3: OK - 4: Non-critical + 3: OK + 4: Non-critical 5: Critical 6: Non-recoverable" ::= { channelEntry 7 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.2.1.8 channelComponentStatus OBJECT-TYPE SYNTAX DellStatus ACCESS read-only STATUS mandatory DESCRIPTION - "The status of the channel itself with out without the + "The status of the channel itself with out without the propagation of any contained component status. Possible values: 1: Other 2: Unknown - 3: OK - 4: Non-critical + 3: OK + 4: Non-critical 5: Critical 6: Non-recoverable" ::= { channelEntry 8 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.2.1.9 channelNexusID OBJECT-TYPE SYNTAX DisplayString @@ -601,7 +601,7 @@ "Durable unique ID for this channel." ::= { channelEntry 9 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.2.1.10 channelDataRate OBJECT-TYPE SYNTAX DisplayString @@ -611,7 +611,7 @@ "The data rate (SCSI speed) of the channel. Example: Ultra 320M SCSI" ::= { channelEntry 10 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.2.1.11 channelBusType OBJECT-TYPE SYNTAX INTEGER @@ -640,20 +640,20 @@ 9: PCIe" ::= { channelEntry 11 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.3 enclosureTable OBJECT-TYPE SYNTAX SEQUENCE OF EnclosureEntry ACCESS not-accessible STATUS mandatory DESCRIPTION - "A table of managed Enclosures. The number of entries is + "A table of managed Enclosures. The number of entries is related to number of enclosures 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 3 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1 enclosureEntry OBJECT-TYPE SYNTAX EnclosureEntry @@ -665,9 +665,9 @@ INDEX { enclosureNumber } ::= { enclosureTable 1 } - + EnclosureEntry ::= - SEQUENCE { + SEQUENCE { enclosureNumber INTEGER, enclosureName @@ -747,7 +747,7 @@ "Instance number of the enclosure entry." ::= { enclosureEntry 1 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.2 enclosureName OBJECT-TYPE SYNTAX DisplayString @@ -757,7 +757,7 @@ "The enclosure's name as represented in Storage Management." ::= { enclosureEntry 2 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.3 enclosureVendor OBJECT-TYPE SYNTAX DisplayString @@ -767,7 +767,7 @@ "The enclosure's (re)seller's name." ::= { enclosureEntry 3 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.4 enclosureState OBJECT-TYPE SYNTAX INTEGER @@ -792,7 +792,7 @@ 6: Degraded" ::= { enclosureEntry 4 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.5 enclosureSeverity OBJECT-TYPE SYNTAX INTEGER @@ -808,7 +808,7 @@ It was replaced with RollUpStatus and ComponentStatus for each device." ::= { enclosureEntry 5 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.6 enclosureID OBJECT-TYPE SYNTAX DisplayString @@ -818,7 +818,7 @@ "Represents unique id for an enclosure." ::= { enclosureEntry 6 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.7 enclosureProcessorVersion OBJECT-TYPE SYNTAX DisplayString @@ -828,7 +828,7 @@ "This entry is obsolete for Storage Management." ::= { enclosureEntry 7 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.8 enclosureServiceTag OBJECT-TYPE SYNTAX DisplayString @@ -838,7 +838,7 @@ "Enclosure identification used when consulting customer support." ::= { enclosureEntry 8 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.9 enclosureAssetTag OBJECT-TYPE SYNTAX DisplayString @@ -848,7 +848,7 @@ "User definable asset tag for the enclosure." ::= { enclosureEntry 9 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.10 enclosureAssetName OBJECT-TYPE SYNTAX DisplayString @@ -858,7 +858,7 @@ "User definable asset name of the enclosure." ::= { enclosureEntry 10 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.11 enclosureSplitBusPartNumber OBJECT-TYPE SYNTAX DisplayString @@ -868,18 +868,18 @@ "The enclosure's split bus part number." ::= { enclosureEntry 11 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.12 enclosureProductID OBJECT-TYPE SYNTAX DisplayString ACCESS read-only STATUS mandatory DESCRIPTION - "The enclosure's product identification. This also corresponds to the enclosure type. + "The enclosure's product identification. This also corresponds to the enclosure type. " ::= { enclosureEntry 12 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.13 enclosureKernelVersion OBJECT-TYPE SYNTAX DisplayString @@ -890,7 +890,7 @@ Refer to enclosureFirmwareVersion for the firmware version of the enclosure." ::= { enclosureEntry 13 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.14 enclosureESM1PartNumber OBJECT-TYPE SYNTAX DisplayString @@ -900,7 +900,7 @@ "This entry is obsolete for Storage Management." ::= { enclosureEntry 14 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.15 enclosureESM2PartNumber OBJECT-TYPE SYNTAX DisplayString @@ -910,7 +910,7 @@ "This entry is obsolete for Storage Management." ::= { enclosureEntry 15 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.16 enclosureType OBJECT-TYPE SYNTAX INTEGER @@ -925,7 +925,10 @@ md1000(8), md1120(9), md1200(10), - md1220(11) + md1220(11), + md1400(12), + md1420(13), + mx5016s(14) } ACCESS read-only STATUS mandatory @@ -941,11 +944,13 @@ 7: Dell PV660F / PV224F 8: Dell MD1000 9: Dell MD1120 - 10: Dell MD1200 - 11: Dell MD1220" + 11: Dell MD1220 + 12: Dell MD1400 + 13: Dell MD1420 + 14: Dell MX5016S" ::= { enclosureEntry 16 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.17 enclosureProcessor2Version OBJECT-TYPE SYNTAX DisplayString @@ -955,7 +960,7 @@ "This entry is obsolete for Storage Management." ::= { enclosureEntry 17 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.18 enclosureConfig OBJECT-TYPE SYNTAX INTEGER @@ -976,7 +981,7 @@ 4: Unified" ::= { enclosureEntry 18 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.19 enclosureChannelNumber OBJECT-TYPE SYNTAX INTEGER @@ -986,7 +991,7 @@ "The channel number, or bus, to which the enclosure is connected." ::= { enclosureEntry 19 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.20 enclosureAlarm OBJECT-TYPE SYNTAX INTEGER @@ -1003,7 +1008,7 @@ 2: Enabled" ::= { enclosureEntry 20 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.21 enclosureBackplanePartNumber OBJECT-TYPE SYNTAX DisplayString @@ -1013,7 +1018,7 @@ "The part number of the enclosure's backplane." ::= { enclosureEntry 21 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.22 enclosureSCSIID OBJECT-TYPE SYNTAX INTEGER @@ -1023,7 +1028,7 @@ "The SCSI ID of the controller to which this enclosure is attached." ::= { enclosureEntry 22 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.23 enclosureRollUpStatus OBJECT-TYPE SYNTAX DellStatus @@ -1035,31 +1040,31 @@ Possible values: 1: Other 2: Unknown - 3: OK - 4: Non-critical + 3: OK + 4: Non-critical 5: Critical 6: Non-recoverable" ::= { enclosureEntry 23 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.24 enclosureComponentStatus OBJECT-TYPE SYNTAX DellStatus ACCESS read-only STATUS mandatory DESCRIPTION - "The status of the enclosure itself without the + "The status of the enclosure itself without the propagation of any contained component status. Possible values: 1: Other 2: Unknown - 3: OK - 4: Non-critical + 3: OK + 4: Non-critical 5: Critical 6: Non-recoverable" ::= { enclosureEntry 24 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.25 enclosureNexusID OBJECT-TYPE SYNTAX DisplayString @@ -1069,7 +1074,7 @@ "Durable unique ID for this enclosure." ::= { enclosureEntry 25 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.26 enclosureFirmwareVersion OBJECT-TYPE SYNTAX DisplayString @@ -1079,7 +1084,7 @@ "The firmware version of the enclosure." ::= { enclosureEntry 26 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.27 enclosureSCSIRate OBJECT-TYPE SYNTAX DisplayString @@ -1090,7 +1095,7 @@ " ::= { enclosureEntry 27 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.28 enclosurePartNumber OBJECT-TYPE SYNTAX DisplayString @@ -1101,7 +1106,7 @@ " ::= { enclosureEntry 28 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.29 enclosureSerialNumber OBJECT-TYPE SYNTAX DisplayString @@ -1112,7 +1117,7 @@ " ::= { enclosureEntry 29 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.30 enclosureSASAddress OBJECT-TYPE SYNTAX DisplayString @@ -1122,7 +1127,7 @@ "The specified SAS address if this is a SAS enclosure. " ::= { enclosureEntry 30 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.31 enclosureOccupiedSlotCount OBJECT-TYPE SYNTAX INTEGER @@ -1133,7 +1138,7 @@ Note: A value of 9999 indicates feature not available." ::= { enclosureEntry 31 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.32 enclosureTotalSlots OBJECT-TYPE SYNTAX INTEGER @@ -1145,7 +1150,7 @@ " ::= { enclosureEntry 32 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.33 enclosureEmptySlotCount OBJECT-TYPE SYNTAX INTEGER @@ -1157,7 +1162,7 @@ " ::= { enclosureEntry 33 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.34 enclosureExpressServiceCode OBJECT-TYPE SYNTAX DisplayString @@ -1167,20 +1172,20 @@ "Express Service Code (ESC) is base10 converted numerical value of service tag." ::= { enclosureEntry 34 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4 arrayDiskTable OBJECT-TYPE SYNTAX SEQUENCE OF ArrayDiskEntry ACCESS not-accessible STATUS mandatory DESCRIPTION - "A table of managed Array Disks. The number of entries is + "A table of managed Array Disks. The number of entries is related to number of Array 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 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1 arrayDiskEntry OBJECT-TYPE SYNTAX ArrayDiskEntry @@ -1192,9 +1197,9 @@ INDEX { arrayDiskNumber } ::= { arrayDiskTable 1 } - + ArrayDiskEntry ::= - SEQUENCE { + SEQUENCE { arrayDiskNumber INTEGER, arrayDiskName @@ -1297,9 +1302,25 @@ INTEGER, arrayDiskPICapable INTEGER, - arrayDiskMaxLinkWidth + arrayDiskMaxLinkWidth INTEGER, arrayDiskNegotiatedLinkWidth + INTEGER, + nonRAIDdiskCachePolicy + DisplayString, + arraydiskCachePolicy + DisplayString, + arraydiskISECapable + INTEGER, + arraydiskWWN + DisplayString, + arraydiskEncryptionProtocol + INTEGER, + arraydiskErrorRecoverable + INTEGER, + arraydiskErrorDescription + DisplayString, + arraydiskAvailableSpare INTEGER } @@ -1312,7 +1333,7 @@ "Instance number of this array disk entry." ::= { arrayDiskEntry 1 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.2 arrayDiskName OBJECT-TYPE SYNTAX DisplayString @@ -1322,7 +1343,7 @@ "The name of the array disk as represented in Storage Management." ::= { arrayDiskEntry 2 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.3 arrayDiskVendor OBJECT-TYPE SYNTAX DisplayString @@ -1332,7 +1353,7 @@ "The array disk's manufacturer's name." ::= { arrayDiskEntry 3 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.4 arrayDiskState OBJECT-TYPE SYNTAX INTEGER @@ -1352,6 +1373,7 @@ rebuild(24), noMedia(25), formatting(26), + unusable(27), diagnostics(28), predictiveFailure(34), initializing(35), @@ -1367,22 +1389,23 @@ "The current condition of the array disk. Possible states: 0: Unknown - 1: Ready - Available for use, but no RAID configuration has been assigned. + 1: Ready - Available for use, but no RAID configuration has been assigned. 2: Failed - Not operational. 3: Online - Operational. RAID configuration has been assigned. - 4: Offline - The drive is not available to the RAID controller. - 6: Degraded - Refers to a fault-tolerant array/virtual disk that has a failed disk. - 7: Recovering - Refers to state of recovering from bad blocks on disks. + 4: Offline - The drive is not available to the RAID controller. + 6: Degraded - Refers to a fault-tolerant array/virtual disk that has a failed disk. + 7: Recovering - Refers to state of recovering from bad blocks on disks. 11: Removed - Indicates that array disk has been removed. 13: Non-RAID - Indicates that array disk is not a RAID capable disk 14: Not Ready - Applicable for PCIeSSD devices indicating that the device is in locked state - 15: Resynching - Indicates one of the following types of disk operations: Transform Type, Reconfiguration, and Check Consistency. + 15: Resynching - Indicates one of the following types of disk operations: Transform Type, Reconfiguration, and Check Consistency. 22: Replacing - Indicates copyback operation is in progress. 23: Spinning Down - Transit state when the physical disk is spinning down for physical disk power management. 24: Rebuild - 25: No Media - CD-ROM or removable disk has no media. - 26: Formatting - In the process of formatting. - 28: Diagnostics - Diagnostics are running. + 25: No Media - CD-ROM or removable disk has no media. + 26: Formatting - In the process of formatting. + 27: Unusable - INIT error drive + 28: Diagnostics - Diagnostics are running. 34: Predictive failure 35: Initializing: Applies only to virtual disks on PERC, PERC 2/SC, and PERC 2/DC controllers. 39: Foreign @@ -1390,11 +1413,11 @@ 41: Unsupported 53: Incompatible 56: Read Only - Applicable for PCIeSSD devices. Indicates that device has reached read-only state - + " ::= { arrayDiskEntry 4 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.5 arrayDiskSeverity OBJECT-TYPE SYNTAX INTEGER @@ -1410,7 +1433,7 @@ It was replaced with RollUpStatus and ComponentStatus for each device." ::= { arrayDiskEntry 5 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.6 arrayDiskProductID OBJECT-TYPE SYNTAX DisplayString @@ -1420,7 +1443,7 @@ "The model number of the array disk." ::= { arrayDiskEntry 6 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.7 arrayDiskSerialNo OBJECT-TYPE SYNTAX DisplayString @@ -1431,7 +1454,7 @@ " ::= { arrayDiskEntry 7 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.8 arrayDiskRevision OBJECT-TYPE SYNTAX DisplayString @@ -1441,7 +1464,7 @@ "The firmware version of the array disk." ::= { arrayDiskEntry 8 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.9 arrayDiskEnclosureID OBJECT-TYPE SYNTAX DisplayString @@ -1451,7 +1474,7 @@ "The SCSI ID of the enclosure processor to which this array disk belongs." ::= { arrayDiskEntry 9 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.10 arrayDiskChannel OBJECT-TYPE SYNTAX INTEGER @@ -1461,7 +1484,7 @@ "The bus to which this array disk is connected." ::= { arrayDiskEntry 10 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.11 arrayDiskLengthInMB OBJECT-TYPE SYNTAX INTEGER @@ -1471,19 +1494,19 @@ "The size in megabytes of the array disk. If this size is 0, it is smaller than a megabyte." ::= { arrayDiskEntry 11 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.12 arrayDiskLengthInBytes OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION - "The size of the array disk in bytes that is less than + "The size of the array disk in bytes that is less than a megabyte. This size plus the arrayDiskLengthInMB is the total size of the array disk." ::= { arrayDiskEntry 12 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.13 arrayDiskLargestContiguousFreeSpaceInMB OBJECT-TYPE SYNTAX INTEGER @@ -1494,7 +1517,7 @@ on the array disk. If this size is 0, it is less than a megabyte." ::= { arrayDiskEntry 13 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.14 arrayDiskLargestContiguousFreeSpaceInBytes OBJECT-TYPE SYNTAX INTEGER @@ -1502,13 +1525,13 @@ STATUS mandatory DESCRIPTION "The size of the largest contiguous free space on this - array disk in bytes that is less than a megabyte. + array disk in bytes that is less than a megabyte. This size plus the arrayDiskLargestContiguousFreeSpaceInMB - is the total size of the largest contiguous free space on + is the total size of the largest contiguous free space on the array disk." ::= { arrayDiskEntry 14 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.15 arrayDiskTargetID OBJECT-TYPE SYNTAX INTEGER (0..15) @@ -1518,7 +1541,7 @@ "The SCSI target ID which this array disk is assigned. " ::= { arrayDiskEntry 15 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.16 arrayDiskLunID OBJECT-TYPE SYNTAX INTEGER @@ -1528,7 +1551,7 @@ "The array disk's logical unit number. " ::= { arrayDiskEntry 16 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.17 arrayDiskUsedSpaceInMB OBJECT-TYPE SYNTAX INTEGER @@ -1539,7 +1562,7 @@ disk. If this size is 0, it is smaller than a megabyte." ::= { arrayDiskEntry 17 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.18 arrayDiskUsedSpaceInBytes OBJECT-TYPE SYNTAX INTEGER @@ -1547,12 +1570,12 @@ STATUS mandatory DESCRIPTION "The size in bytes of the used space on the array disk - that is smaller than a megabyte. This size plus the + that is smaller than a megabyte. This size plus the arrayDiskUsedSpaceInMB is the total amount of used space on the array disk." ::= { arrayDiskEntry 18 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.19 arrayDiskFreeSpaceInMB OBJECT-TYPE SYNTAX INTEGER @@ -1563,7 +1586,7 @@ disk. If this size is 0, it is smaller than a megabyte." ::= { arrayDiskEntry 19 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.20 arrayDiskFreeSpaceInBytes OBJECT-TYPE SYNTAX INTEGER @@ -1571,12 +1594,12 @@ STATUS mandatory DESCRIPTION "The size in bytes of the free space on the array disk - that is smaller than a megabyte. This size plus the + that is smaller than a megabyte. This size plus the arrayDiskFreeSpaceInMB is the total amount of free space on the array disk." ::= { arrayDiskEntry 20 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.21 arrayDiskBusType OBJECT-TYPE SYNTAX INTEGER @@ -1605,7 +1628,7 @@ 9: PCIe" ::= { arrayDiskEntry 21 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.22 arrayDiskSpareState OBJECT-TYPE SYNTAX INTEGER @@ -1630,7 +1653,7 @@ 99: not applicable" ::= { arrayDiskEntry 22 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.23 arrayDiskRollUpStatus OBJECT-TYPE SYNTAX DellStatus @@ -1642,31 +1665,31 @@ Possible values: 1: Other 2: Unknown - 3: OK - 4: Non-critical + 3: OK + 4: Non-critical 5: Critical 6: Non-recoverable" ::= { arrayDiskEntry 23 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.24 arrayDiskComponentStatus OBJECT-TYPE SYNTAX DellStatus ACCESS read-only STATUS mandatory DESCRIPTION - "The status of the array disk itself without the + "The status of the array disk itself without the propagation of any contained component status. Possible values: 1: Other 2: Unknown - 3: OK - 4: Non-critical + 3: OK + 4: Non-critical 5: Critical 6: Non-recoverable" ::= { arrayDiskEntry 24 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.25 arrayDiskDeviceName OBJECT-TYPE SYNTAX DisplayString @@ -1676,7 +1699,7 @@ "The operating system device name for this disk. This property is only applicable to array disks attached to a RAID controller." ::= { arrayDiskEntry 25 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.26 arrayDiskNexusID OBJECT-TYPE SYNTAX DisplayString @@ -1686,7 +1709,7 @@ "Durable unique ID for this array disk." ::= { arrayDiskEntry 26 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.27 arrayDiskPartNumber OBJECT-TYPE SYNTAX DisplayString @@ -1697,7 +1720,7 @@ " ::= { arrayDiskEntry 27 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.28 arrayDiskSASAddress OBJECT-TYPE SYNTAX DisplayString @@ -1708,7 +1731,7 @@ " ::= { arrayDiskEntry 28 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.29 arrayDiskNegotiatedSpeed OBJECT-TYPE SYNTAX INTEGER @@ -1719,7 +1742,7 @@ " ::= { arrayDiskEntry 29 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.30 arrayDiskCapableSpeed OBJECT-TYPE SYNTAX INTEGER @@ -1730,7 +1753,7 @@ " ::= { arrayDiskEntry 30 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.31 arrayDiskSmartAlertIndication OBJECT-TYPE SYNTAX INTEGER @@ -1747,7 +1770,7 @@ 2: Yes - disk has received a predictive failure alert" ::= { arrayDiskEntry 31 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.32 arrayDiskManufactureDay OBJECT-TYPE SYNTAX DisplayString @@ -1757,7 +1780,7 @@ "The day of the week (1=Sunday thru 7=Saturday) on which this disk was manufactured." ::= { arrayDiskEntry 32 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.33 arrayDiskManufactureWeek OBJECT-TYPE SYNTAX DisplayString @@ -1767,7 +1790,7 @@ "The week (1 thru 53) in which this disk was manufactured." ::= { arrayDiskEntry 33 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.34 arrayDiskManufactureYear OBJECT-TYPE SYNTAX DisplayString @@ -1777,7 +1800,7 @@ "The four digit year in which this disk was manufactured." ::= { arrayDiskEntry 34 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.35 arrayDiskMediaType OBJECT-TYPE SYNTAX INTEGER @@ -1796,7 +1819,7 @@ 3:ssd" ::= { arrayDiskEntry 35 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.36 arrayDiskDellCertified OBJECT-TYPE SYNTAX INTEGER @@ -1807,7 +1830,7 @@ Value: 1 - Certified, 0 - Not Certified, 99 - Unknown" ::= { arrayDiskEntry 36 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.37 arrayDiskAltaVendorId OBJECT-TYPE SYNTAX DisplayString @@ -1817,7 +1840,7 @@ "Provides vendor information for Alta interposer." ::= { arrayDiskEntry 37 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.38 arrayDiskAltaProductId OBJECT-TYPE SYNTAX DisplayString @@ -1827,7 +1850,7 @@ "Provides product id for Alta interposer." ::= { arrayDiskEntry 38 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.39 arrayDiskAltaRevisionId OBJECT-TYPE SYNTAX DisplayString @@ -1837,7 +1860,7 @@ "Provides revision id for Alta interposer." ::= { arrayDiskEntry 39 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.40 arrayDiskEncryptionCapable OBJECT-TYPE SYNTAX INTEGER @@ -1848,7 +1871,7 @@ Value: 1 - Capable, 0 - Not Capable, 99 - Not Applicable" ::= { arrayDiskEntry 40 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.41 arrayDiskEncrypted OBJECT-TYPE SYNTAX INTEGER @@ -1859,7 +1882,7 @@ Value: 1 - Yes, 0 - No, 99 - Not Applicable" ::= { arrayDiskEntry 41 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.42 arrayDiskPowerState OBJECT-TYPE SYNTAX INTEGER @@ -1870,7 +1893,7 @@ Value: 0 - Spun up, 1- Spun down, 255 - Transition, 99 - Not Applicable" ::= { arrayDiskEntry 42 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.43 arrayDiskDriveWriteCache OBJECT-TYPE SYNTAX INTEGER @@ -1881,7 +1904,7 @@ Value: 1 - Enabled, 0 - Disabled, 99 - Undetermined/Not Applicable" ::= { arrayDiskEntry 43 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.44 arrayDiskModelNumber OBJECT-TYPE SYNTAX DisplayString @@ -1891,7 +1914,7 @@ "Provides PCIe SSD device model number." ::= { arrayDiskEntry 44 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.45 arrayDiskLifeRemaining OBJECT-TYPE SYNTAX INTEGER (0..100) @@ -1902,7 +1925,7 @@ Value: 0..100, 999 - Undetermined/Not Applicable " ::= { arrayDiskEntry 45 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.46 arrayDiskDriverVersion OBJECT-TYPE SYNTAX DisplayString @@ -1912,7 +1935,7 @@ "Provides PCIe SSD device driver version." ::= { arrayDiskEntry 46 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.47 arrayDiskDeviceLifeStatus OBJECT-TYPE SYNTAX INTEGER @@ -1929,7 +1952,7 @@ 5: Read Only" ::= { arrayDiskEntry 47 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.48 arrayDiskReadOnly OBJECT-TYPE SYNTAX DisplayString @@ -1941,7 +1964,7 @@ " ::= { arrayDiskEntry 48 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.49 arrayDiskRemainingRatedWriteEndurance OBJECT-TYPE SYNTAX DisplayString @@ -1953,7 +1976,7 @@ " ::= { arrayDiskEntry 49 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.50 arrayDiskSectorSize OBJECT-TYPE SYNTAX INTEGER @@ -1964,7 +1987,7 @@ Possible values are: 512 or 4096." ::= { arrayDiskEntry 50 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.51 arrayDiskPICapable OBJECT-TYPE SYNTAX INTEGER @@ -1975,7 +1998,7 @@ Possible values are: 0 (T10 PI incapable) or 1 (T10 PI capable)." ::= { arrayDiskEntry 51 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.52 arrayDiskMaxLinkWidth OBJECT-TYPE SYNTAX INTEGER @@ -1996,22 +2019,103 @@ Possible values are: 0 - 8." ::= { arrayDiskEntry 53 } + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.54 + nonRAIDdiskCachePolicy OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Displays the current disk write cache policy of the NonRAID disk. + Possible values are: Enabled - Disabled." + ::= { arrayDiskEntry 54 } + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.55 + arraydiskCachePolicy OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Displays the current disk write cache policy of the array disk. + Possible values are: Enabled - Disabled - Default." + ::= { arrayDiskEntry 55 } + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.56 + arraydiskISECapable OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A boolean value depicitng if the disk is Instant Secure Erase Capable or not." + ::= { arrayDiskEntry 56 } + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.57 + arraydiskWWN OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Displays WWN for a disk." + ::= { arrayDiskEntry 57 } + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.58 + arraydiskEncryptionProtocol OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Displays Encrption Protocol for a disk. + Possible Values: + 0: No encryption + 1: TCG Enterprise SSC + 2: TCG Opal SSC" + ::= { arrayDiskEntry 58 } + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.59 + arraydiskErrorRecoverable OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates if INIT error drive is recoverable. + Values: 1- Yes, 0 - No, 99 - Not available / Not applicable." + ::= { arrayDiskEntry 59 } + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.60 + arraydiskErrorDescription OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Displays description of INIT error." + ::= { arrayDiskEntry 60 } + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.61 + arraydiskAvailableSpare OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Displays Available Spare for a PCIe SSD. + Possible Values: 0-100 % + Note: A value of 9999 indicates Not Applicable or Not Available" + ::= { arrayDiskEntry 61 } + -- 1.3.6.1.4.1.674.10893.1.20.130.5 arrayDiskEnclosureConnectionTable OBJECT-TYPE SYNTAX SEQUENCE OF ArrayDiskEnclosureConnectionEntry ACCESS not-accessible STATUS mandatory DESCRIPTION - "A table of the connections between array disks, their enclosure, + "A table of the connections between array disks, their enclosure, and their associated controller. For each object in the table, its - object number corresponds to an instance number in the appropriate + object number corresponds to an instance number in the appropriate MIB table for that object where all of the object properties can be found. Note: Only array disks that are part of an enclosure will be listed in this table. Backplanes are considered enclosures by Storage Management." ::= { physicalDevices 5 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.5.1 arrayDiskEnclosureConnectionEntry OBJECT-TYPE SYNTAX ArrayDiskEnclosureConnectionEntry @@ -2023,9 +2127,9 @@ INDEX { arrayDiskEnclosureConnectionNumber } ::= { arrayDiskEnclosureConnectionTable 1 } - + ArrayDiskEnclosureConnectionEntry ::= - SEQUENCE { + SEQUENCE { arrayDiskEnclosureConnectionNumber INTEGER, arrayDiskEnclosureConnectionArrayDiskName @@ -2052,7 +2156,7 @@ This table shows the array disk to enclosure relationship." ::= { arrayDiskEnclosureConnectionEntry 1 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.5.1.2 arrayDiskEnclosureConnectionArrayDiskName OBJECT-TYPE SYNTAX DisplayString @@ -2062,7 +2166,7 @@ "The name of the array disk in this connection as represented in Storage Management." ::= { arrayDiskEnclosureConnectionEntry 2 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.5.1.3 arrayDiskEnclosureConnectionArrayDiskNumber OBJECT-TYPE SYNTAX INTEGER @@ -2073,7 +2177,7 @@ in this connection." ::= { arrayDiskEnclosureConnectionEntry 3 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.5.1.4 arrayDiskEnclosureConnectionEnclosureName OBJECT-TYPE SYNTAX DisplayString @@ -2085,18 +2189,18 @@ " ::= { arrayDiskEnclosureConnectionEntry 4 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.5.1.5 arrayDiskEnclosureConnectionEnclosureNumber OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION - "The instance number in the enclosureTable of the enclosure + "The instance number in the enclosureTable of the enclosure to which this array disk belongs." ::= { arrayDiskEnclosureConnectionEntry 5 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.5.1.6 arrayDiskEnclosureConnectionControllerName OBJECT-TYPE SYNTAX DisplayString @@ -2107,35 +2211,35 @@ to which this array disk is connected." ::= { arrayDiskEnclosureConnectionEntry 6 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.5.1.7 arrayDiskEnclosureConnectionControllerNumber OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION - "The instance number in the controllerTable of the controller + "The instance number in the controllerTable of the controller to which this array disk is connected." ::= { arrayDiskEnclosureConnectionEntry 7 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.6 arrayDiskChannelConnectionTable OBJECT-TYPE SYNTAX SEQUENCE OF ArrayDiskChannelConnectionEntry ACCESS not-accessible STATUS mandatory DESCRIPTION - "A table of the connections between array disks, their channel, and - their associated controller. For each object in the table, its - object number corresponds to an instance number in the appropriate - MIB table for that object where all of the object properties can be + "A table of the connections between array disks, their channel, and + their associated controller. For each object in the table, its + object number corresponds to an instance number in the appropriate + MIB table for that object where all of the object properties can be found. - Note: Only array disks that are NOT part of an enclosure will be + Note: Only array disks that are NOT part of an enclosure will be listed in this table. Backplanes are considered enclosures by Storage Management." ::= { physicalDevices 6 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.6.1 arrayDiskChannelConnectionEntry OBJECT-TYPE SYNTAX ArrayDiskChannelConnectionEntry @@ -2147,9 +2251,9 @@ INDEX { arrayDiskChannelConnectionNumber } ::= { arrayDiskChannelConnectionTable 1 } - + ArrayDiskChannelConnectionEntry ::= - SEQUENCE { + SEQUENCE { arrayDiskChannelConnectionNumber INTEGER, arrayDiskChannelConnectionArrayDiskName @@ -2178,7 +2282,7 @@ array disks." ::= { arrayDiskChannelConnectionEntry 1 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.6.1.2 arrayDiskChannelConnectionArrayDiskName OBJECT-TYPE SYNTAX DisplayString @@ -2189,7 +2293,7 @@ as represented in Storage Management." ::= { arrayDiskChannelConnectionEntry 2 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.6.1.3 arrayDiskChannelConnectionArrayDiskNumber OBJECT-TYPE SYNTAX INTEGER @@ -2200,7 +2304,7 @@ in this connection." ::= { arrayDiskChannelConnectionEntry 3 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.6.1.4 arrayDiskChannelConnectionChannelName OBJECT-TYPE SYNTAX DisplayString @@ -2211,18 +2315,18 @@ to which is array disk is connected." ::= { arrayDiskChannelConnectionEntry 4 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.6.1.5 arrayDiskChannelConnectionChannelNumber OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION - "The instance number of the channel in the channelTable to + "The instance number of the channel in the channelTable to which this array disk is connected." ::= { arrayDiskChannelConnectionEntry 5 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.6.1.6 arrayDiskChannelConnectionControllerName OBJECT-TYPE SYNTAX DisplayString @@ -2233,31 +2337,31 @@ to which this array disk is connected." ::= { arrayDiskChannelConnectionEntry 6 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.6.1.7 arrayDiskChannelConnectionControllerNumber OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION - "The instance number in the controllerTable of the controller + "The instance number in the controllerTable of the controller to which this array disk is connected." ::= { arrayDiskChannelConnectionEntry 7 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.7 fanTable OBJECT-TYPE SYNTAX SEQUENCE OF FanEntry ACCESS not-accessible STATUS mandatory DESCRIPTION - "A table of managed Fans. The number of entries is + "A table of managed Fans. The number of entries is related to number of Fans 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 7 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1 fanEntry OBJECT-TYPE SYNTAX FanEntry @@ -2269,9 +2373,9 @@ INDEX { fanNumber } ::= { fanTable 1 } - + FanEntry ::= - SEQUENCE { + SEQUENCE { fanNumber INTEGER, fanName @@ -2317,7 +2421,7 @@ "Instance number of this fan entry." ::= { fanEntry 1 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.2 fanName OBJECT-TYPE SYNTAX DisplayString @@ -2327,7 +2431,7 @@ "The fan's name as represented in Storage Management." ::= { fanEntry 2 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.3 fanVendor OBJECT-TYPE SYNTAX DisplayString @@ -2337,7 +2441,7 @@ "The fan's (re)seller's name." ::= { fanEntry 3 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.4 fanState OBJECT-TYPE SYNTAX INTEGER @@ -2362,7 +2466,7 @@ 21: Missing" ::= { fanEntry 4 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.5 fanSeverity OBJECT-TYPE SYNTAX INTEGER @@ -2378,7 +2482,7 @@ It was replaced with RollUpStatus and ComponentStatus for each device." ::= { fanEntry 5 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.6 fanProbeUnit OBJECT-TYPE SYNTAX DisplayString @@ -2388,7 +2492,7 @@ "This entry is obsolete for Storage Management." ::= { fanEntry 6 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.7 fanProbeMinWarning OBJECT-TYPE SYNTAX DisplayString @@ -2399,7 +2503,7 @@ by fans managed under Storage Management." ::= { fanEntry 7 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.8 fanProbeMinCritical OBJECT-TYPE SYNTAX DisplayString @@ -2410,7 +2514,7 @@ by fans managed under Storage Management." ::= { fanEntry 8 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.9 fanProbeMaxWarning OBJECT-TYPE SYNTAX DisplayString @@ -2421,7 +2525,7 @@ by fans managed under Storage Management." ::= { fanEntry 9 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.10 fanProbeMaxCritical OBJECT-TYPE SYNTAX DisplayString @@ -2432,7 +2536,7 @@ by fans managed under Storage Management." ::= { fanEntry 10 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.11 fanProbeCurrValue OBJECT-TYPE SYNTAX DisplayString @@ -2443,7 +2547,7 @@ " ::= { fanEntry 11 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.12 fan1PartNumber OBJECT-TYPE SYNTAX DisplayString @@ -2453,7 +2557,7 @@ "The part number of the fan in the enclosure." ::= { fanEntry 12 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.13 fan2PartNumber OBJECT-TYPE SYNTAX DisplayString @@ -2464,7 +2568,7 @@ by fans managed under Storage Management." ::= { fanEntry 13 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.14 fanRollUpStatus OBJECT-TYPE SYNTAX DellStatus @@ -2476,31 +2580,31 @@ Possible values: 1: Other 2: Unknown - 3: OK - 4: Non-critical + 3: OK + 4: Non-critical 5: Critical 6: Non-recoverable" ::= { fanEntry 14 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.15 fanComponentStatus OBJECT-TYPE SYNTAX DellStatus ACCESS read-only STATUS mandatory DESCRIPTION - "The status of the fan itself without the + "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 + 3: OK + 4: Non-critical 5: Critical 6: Non-recoverable" ::= { fanEntry 15 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.16 fanNexusID OBJECT-TYPE SYNTAX DisplayString @@ -2510,7 +2614,7 @@ "Durable unique ID for this fan." ::= { fanEntry 16 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.17 fanRevision OBJECT-TYPE SYNTAX DisplayString @@ -2520,20 +2624,20 @@ "The revision number of the fan in the enclosure." ::= { fanEntry 17 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.8 fanConnectionTable OBJECT-TYPE SYNTAX SEQUENCE OF FanConnectionEntry ACCESS not-accessible STATUS mandatory DESCRIPTION - "A table of the connections between each fan on - the managed node and its enclosure. Each enclosure + "A table of the connections between each fan on + the managed node and its enclosure. Each enclosure number in the table corresponds to that enclosure instance in the Enclosure Table." ::= { physicalDevices 8 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.8.1 fanConnectionEntry OBJECT-TYPE SYNTAX FanConnectionEntry @@ -2545,9 +2649,9 @@ INDEX { fanConnectionNumber } ::= { fanConnectionTable 1 } - + FanConnectionEntry ::= - SEQUENCE { + SEQUENCE { fanConnectionNumber INTEGER, fanConnectionFanName @@ -2569,7 +2673,7 @@ "Instance number of this fan connection entry." ::= { fanConnectionEntry 1 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.8.1.2 fanConnectionFanName OBJECT-TYPE SYNTAX DisplayString @@ -2579,7 +2683,7 @@ "The name of the fan in this connection as represented in Storage Management." ::= { fanConnectionEntry 2 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.8.1.3 fanConnectionFanNumber OBJECT-TYPE SYNTAX INTEGER @@ -2589,7 +2693,7 @@ "The instance number of the fan in the fanTable in this connection." ::= { fanConnectionEntry 3 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.8.1.4 fanConnectionEnclosureName OBJECT-TYPE SYNTAX DisplayString @@ -2600,7 +2704,7 @@ to which this fan belongs." ::= { fanConnectionEntry 4 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.8.1.5 fanConnectionEnclosureNumber OBJECT-TYPE SYNTAX INTEGER @@ -2611,20 +2715,20 @@ to which this fan belongs." ::= { fanConnectionEntry 5 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.9 powerSupplyTable OBJECT-TYPE SYNTAX SEQUENCE OF PowerSupplyEntry ACCESS not-accessible STATUS mandatory DESCRIPTION - "A table of managed Power Supplies. The number of entries is + "A table of managed Power Supplies. The number of entries is related to number of Power Supplies 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 9 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.9.1 powerSupplyEntry OBJECT-TYPE SYNTAX PowerSupplyEntry @@ -2636,9 +2740,9 @@ INDEX { powerSupplyNumber } ::= { powerSupplyTable 1 } - + PowerSupplyEntry ::= - SEQUENCE { + SEQUENCE { powerSupplyNumber INTEGER, powerSupplyName @@ -2672,7 +2776,7 @@ "Instance number of this power supply entry." ::= { powerSupplyEntry 1 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.9.1.2 powerSupplyName OBJECT-TYPE SYNTAX DisplayString @@ -2682,7 +2786,7 @@ "The power supply's name as represented in Storage Management." ::= { powerSupplyEntry 2 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.9.1.3 powerSupplyVendor OBJECT-TYPE SYNTAX DisplayString @@ -2692,7 +2796,7 @@ "The power supply's (re)seller's name." ::= { powerSupplyEntry 3 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.9.1.4 powerSupplyState OBJECT-TYPE SYNTAX INTEGER @@ -2718,7 +2822,7 @@ 21: Missing" ::= { powerSupplyEntry 4 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.9.1.5 powerSupplySeverity OBJECT-TYPE SYNTAX INTEGER @@ -2734,7 +2838,7 @@ It was replaced with RollUpStatus and ComponentStatus for each device." ::= { powerSupplyEntry 5 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.9.1.6 powerSupply1PartNumber OBJECT-TYPE SYNTAX DisplayString @@ -2744,7 +2848,7 @@ "The part number of the power supply of the enclosure." ::= { powerSupplyEntry 6 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.9.1.7 powerSupply2PartNumber OBJECT-TYPE SYNTAX DisplayString @@ -2755,7 +2859,7 @@ by power supplies managed under Storage Management." ::= { powerSupplyEntry 7 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.9.1.8 powerSupplyRollUpStatus OBJECT-TYPE SYNTAX DellStatus @@ -2763,36 +2867,36 @@ STATUS mandatory DESCRIPTION "Severity of the power supply state. - This is the combined status of the power supply and its + This is the combined status of the power supply and its components. Possible values: 1: Other 2: Unknown - 3: OK - 4: Non-critical + 3: OK + 4: Non-critical 5: Critical 6: Non-recoverable" ::= { powerSupplyEntry 8 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.9.1.9 powerSupplyComponentStatus OBJECT-TYPE SYNTAX DellStatus ACCESS read-only STATUS mandatory DESCRIPTION - "The status of the power supply itself without the + "The status of the power supply itself without the propegation of any contained component status. Possible values: 1: Other 2: Unknown - 3: OK - 4: Non-critical + 3: OK + 4: Non-critical 5: Critical 6: Non-recoverable" ::= { powerSupplyEntry 9 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.9.1.10 powerSupplyNexusID OBJECT-TYPE SYNTAX DisplayString @@ -2802,7 +2906,7 @@ "Durable unique ID for this power supply." ::= { powerSupplyEntry 10 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.9.1.11 powerSupplyRevision OBJECT-TYPE SYNTAX DisplayString @@ -2812,20 +2916,20 @@ "The revision number of the power supply in the enclosure." ::= { powerSupplyEntry 11 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.10 powerSupplyConnectionTable OBJECT-TYPE SYNTAX SEQUENCE OF PowerSupplyConnectionEntry ACCESS not-accessible STATUS mandatory DESCRIPTION - "A table of the connections between each power + "A table of the connections between each power supply on the managed node and its enclosure. Each - enclosure number in the table corresponds to that + enclosure number in the table corresponds to that enclosure instance in the Enclosure Table." ::= { physicalDevices 10 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.10.1 powerSupplyConnectionEntry OBJECT-TYPE SYNTAX PowerSupplyConnectionEntry @@ -2837,9 +2941,9 @@ INDEX { powerSupplyConnectionNumber } ::= { powerSupplyConnectionTable 1 } - + PowerSupplyConnectionEntry ::= - SEQUENCE { + SEQUENCE { powerSupplyConnectionNumber INTEGER, powerSupplyConnectionPowersupplyName @@ -2863,18 +2967,18 @@ "Instance number of this power supply connection entry." ::= { powerSupplyConnectionEntry 1 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.10.1.2 powerSupplyConnectionPowersupplyName OBJECT-TYPE SYNTAX DisplayString ACCESS read-only STATUS mandatory DESCRIPTION - "The name of the power supply in this connection + "The name of the power supply in this connection as represented in Storage Management." ::= { powerSupplyConnectionEntry 2 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.10.1.3 powerSupplyConnectionPowersupplyNumber OBJECT-TYPE SYNTAX INTEGER @@ -2885,7 +2989,7 @@ of the power supply in this connection." ::= { powerSupplyConnectionEntry 3 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.10.1.4 powerSupplyConnectionEnclosureName OBJECT-TYPE SYNTAX DisplayString @@ -2896,7 +3000,7 @@ connected as represented in Storage Management." ::= { powerSupplyConnectionEntry 4 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.10.1.5 powerSupplyConnectionEnclosureNumber OBJECT-TYPE SYNTAX INTEGER @@ -2907,7 +3011,7 @@ to which this power supply is connected." ::= { powerSupplyConnectionEntry 5 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.10.1.6 powerSupplyConnectionFirmwareVersion OBJECT-TYPE SYNTAX DisplayString @@ -2918,20 +3022,20 @@ Note: Available above 1.04 firmware version" ::= { powerSupplyConnectionEntry 6 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.11 temperatureProbeTable OBJECT-TYPE SYNTAX SEQUENCE OF TemperatureProbeEntry ACCESS not-accessible STATUS mandatory DESCRIPTION - "A table of managed Temperature Probes. The number of entries is + "A table of managed Temperature Probes. The number of entries is related to number of Temperature Probes 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 11 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.11.1 temperatureProbeEntry OBJECT-TYPE SYNTAX TemperatureProbeEntry @@ -2943,9 +3047,9 @@ INDEX { temperatureProbeNumber } ::= { temperatureProbeTable 1 } - + TemperatureProbeEntry ::= - SEQUENCE { + SEQUENCE { temperatureProbeNumber INTEGER, temperatureProbeName @@ -2985,7 +3089,7 @@ "Instance number of this temperature probe entry." ::= { temperatureProbeEntry 1 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.2 temperatureProbeName OBJECT-TYPE SYNTAX DisplayString @@ -2995,7 +3099,7 @@ "Name of this temperature probe as represented in Storage Management." ::= { temperatureProbeEntry 2 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.3 temperatureProbeVendor OBJECT-TYPE SYNTAX DisplayString @@ -3005,7 +3109,7 @@ "Temperature probe's (re)seller's name." ::= { temperatureProbeEntry 3 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.4 temperatureProbeState OBJECT-TYPE SYNTAX INTEGER @@ -3024,7 +3128,7 @@ Possible states: 0: Unknown 1: Ready - 2: Failed (Minimum Failure Threshold Exceeded, + 2: Failed (Minimum Failure Threshold Exceeded, Maximum Failure Threshold Exceeded) 4: Offline 6: Degraded (Minimum Warning Threshold Exceeded, @@ -3033,7 +3137,7 @@ 21: Missing" ::= { temperatureProbeEntry 4 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.5 temperatureProbeSeverity OBJECT-TYPE SYNTAX INTEGER @@ -3049,18 +3153,18 @@ It was replaced with RollUpStatus and ComponentStatus for each device." ::= { temperatureProbeEntry 5 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.6 temperatureProbeUnit OBJECT-TYPE SYNTAX DisplayString ACCESS read-only STATUS mandatory DESCRIPTION - "The units that will be used to display temperatures for this + "The units that will be used to display temperatures for this temperature probe." ::= { temperatureProbeEntry 6 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.7 temperatureProbeMinWarning OBJECT-TYPE SYNTAX INTEGER @@ -3071,7 +3175,7 @@ a warning state." ::= { temperatureProbeEntry 7 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.8 temperatureProbeMinCritical OBJECT-TYPE SYNTAX INTEGER @@ -3082,7 +3186,7 @@ an error state." ::= { temperatureProbeEntry 8 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.9 temperatureProbeMaxWarning OBJECT-TYPE SYNTAX INTEGER @@ -3093,7 +3197,7 @@ a warning state." ::= { temperatureProbeEntry 9 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.10 temperatureProbeMaxCritical OBJECT-TYPE SYNTAX INTEGER @@ -3104,7 +3208,7 @@ an error state." ::= { temperatureProbeEntry 10 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.11 temperatureProbeCurValue OBJECT-TYPE SYNTAX INTEGER @@ -3114,7 +3218,7 @@ "The current temperature of this probe." ::= { temperatureProbeEntry 11 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.12 temperatureProbeRollUpStatus OBJECT-TYPE SYNTAX DellStatus @@ -3127,13 +3231,13 @@ Possible values: 1: Other 2: Unknown - 3: OK - 4: Non-critical + 3: OK + 4: Non-critical 5: Critical 6: Non-recoverable" ::= { temperatureProbeEntry 12 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.13 temperatureProbeComponentStatus OBJECT-TYPE SYNTAX DellStatus @@ -3145,13 +3249,13 @@ Possible values: 1: Other 2: Unknown - 3: OK - 4: Non-critical + 3: OK + 4: Non-critical 5: Critical 6: Non-recoverable" ::= { temperatureProbeEntry 13 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.14 temperatureProbeNexusID OBJECT-TYPE SYNTAX DisplayString @@ -3161,20 +3265,20 @@ "Durable unique ID for this temperature probe." ::= { temperatureProbeEntry 14 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.12 temperatureConnectionTable OBJECT-TYPE SYNTAX SEQUENCE OF TemperatureConnectionEntry ACCESS not-accessible STATUS mandatory DESCRIPTION - "A table of the connections between each - temperature probe on the managed node and its enclosure. - Each enclosure number in the table corresponds to that + "A table of the connections between each + temperature probe on the managed node and its enclosure. + Each enclosure number in the table corresponds to that enclosure instance in the Enclosure Table." ::= { physicalDevices 12 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.12.1 temperatureConnectionEntry OBJECT-TYPE SYNTAX TemperatureConnectionEntry @@ -3186,9 +3290,9 @@ INDEX { temperatureConnectionNumber } ::= { temperatureConnectionTable 1 } - + TemperatureConnectionEntry ::= - SEQUENCE { + SEQUENCE { temperatureConnectionNumber INTEGER, temperatureConnectionTemperatureName @@ -3210,18 +3314,18 @@ "Instance number of this temperature probe connection entry." ::= { temperatureConnectionEntry 1 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.12.1.2 temperatureConnectionTemperatureName OBJECT-TYPE SYNTAX DisplayString ACCESS read-only STATUS mandatory DESCRIPTION - "The name of the temperature probe in this connection as + "The name of the temperature probe in this connection as represented in Storage Management." ::= { temperatureConnectionEntry 2 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.12.1.3 temperatureConnectionTemperatureNumber OBJECT-TYPE SYNTAX INTEGER @@ -3231,7 +3335,7 @@ "The instance number in the temperatureTable of the temperature probe in this connection." ::= { temperatureConnectionEntry 3 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.12.1.4 temperatureConnectionEnclosureName OBJECT-TYPE SYNTAX DisplayString @@ -3242,7 +3346,7 @@ to which this temperature probe belongs." ::= { temperatureConnectionEntry 4 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.12.1.5 temperatureConnectionEnclosureNumber OBJECT-TYPE SYNTAX INTEGER @@ -3254,21 +3358,21 @@ " ::= { temperatureConnectionEntry 5 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.13 enclosureManagementModuleTable OBJECT-TYPE SYNTAX SEQUENCE OF EnclosureManagementModuleEntry ACCESS not-accessible STATUS mandatory DESCRIPTION - "A table of managed Enclosure Management Modules. The number of + "A table of managed Enclosure Management Modules. The number of entries is related to number of Enclosure Management Modules - discovered in the system. The maximum number of entries + 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 13 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.13.1 enclosureManagementModuleEntry OBJECT-TYPE SYNTAX EnclosureManagementModuleEntry @@ -3280,9 +3384,9 @@ INDEX { enclosureManagementModuleNumber } ::= { enclosureManagementModuleTable 1 } - + EnclosureManagementModuleEntry ::= - SEQUENCE { + SEQUENCE { enclosureManagementModuleNumber INTEGER, enclosureManagementModuleName @@ -3320,18 +3424,18 @@ "Instance number of this enclosure memory module entry." ::= { enclosureManagementModuleEntry 1 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.2 enclosureManagementModuleName OBJECT-TYPE SYNTAX DisplayString ACCESS read-only STATUS mandatory DESCRIPTION - "Name of this enclosure memory module as represented in + "Name of this enclosure memory module as represented in Storage Management." ::= { enclosureManagementModuleEntry 2 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.3 enclosureManagementModuleVendor OBJECT-TYPE SYNTAX DisplayString @@ -3341,7 +3445,7 @@ "The management module's (re)seller's name." ::= { enclosureManagementModuleEntry 3 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.4 enclosureManagementModuleState OBJECT-TYPE SYNTAX INTEGER @@ -3357,7 +3461,7 @@ ACCESS read-only STATUS mandatory DESCRIPTION - "The current condition of the enclosure management + "The current condition of the enclosure management module. Possible states: 0: Unknown @@ -3370,7 +3474,7 @@ 21: Missing" ::= { enclosureManagementModuleEntry 4 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.5 enclosureManagementModuleSeverity OBJECT-TYPE SYNTAX INTEGER @@ -3386,7 +3490,7 @@ It was replaced with RollUpStatus and ComponentStatus for each device." ::= { enclosureManagementModuleEntry 5 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.6 enclosureManagementModulePartNumber OBJECT-TYPE SYNTAX DisplayString @@ -3396,7 +3500,7 @@ "The part number of the enclosure memory module." ::= { enclosureManagementModuleEntry 6 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.7 enclosureManagementModuleType OBJECT-TYPE SYNTAX INTEGER @@ -3414,7 +3518,7 @@ 2: Termination Card" ::= { enclosureManagementModuleEntry 7 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.8 enclosureManagementModuleFWVersion OBJECT-TYPE SYNTAX DisplayString @@ -3424,7 +3528,7 @@ "Firmware version of the enclosure memory module." ::= { enclosureManagementModuleEntry 8 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.9 enclosureManagementModuleMaxSpeed OBJECT-TYPE SYNTAX DisplayString @@ -3434,7 +3538,7 @@ "The maximum bus speed of the enclosure management module." ::= { enclosureManagementModuleEntry 9 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.10 enclosureManagementModuleRollUpStatus OBJECT-TYPE SYNTAX DellStatus @@ -3446,31 +3550,31 @@ Possible values: 1: Other 2: Unknown - 3: OK - 4: Non-critical + 3: OK + 4: Non-critical 5: Critical 6: Non-recoverable" ::= { enclosureManagementModuleEntry 10 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.11 enclosureManagementModuleComponentStatus OBJECT-TYPE SYNTAX DellStatus ACCESS read-only STATUS mandatory DESCRIPTION - "The status of the enclosure management module itself + "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 + 3: OK + 4: Non-critical 5: Critical 6: Non-recoverable" ::= { enclosureManagementModuleEntry 11 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.12 enclosureManagementModuleNexusID OBJECT-TYPE SYNTAX DisplayString @@ -3480,7 +3584,7 @@ "Durable unique ID for this EMM." ::= { enclosureManagementModuleEntry 12 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.13 enclosureManagementModuleRevision OBJECT-TYPE SYNTAX DisplayString @@ -3490,34 +3594,34 @@ "The revision number of the enclosure management module." ::= { enclosureManagementModuleEntry 13 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.14 enclosureManagementModuleConnectionTable OBJECT-TYPE SYNTAX SEQUENCE OF EnclosureManagementModuleConnectionEntry ACCESS not-accessible STATUS mandatory DESCRIPTION - "A table of the connections between each enclosure management module - on the managed node and its enclosure. Each enclosure + "A table of the connections between each enclosure management module + on the managed node and its enclosure. Each enclosure number in the table corresponds to that enclosure instance in the Enclosure Table." ::= { physicalDevices 14 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.14.1 enclosureManagementModuleConnectionEntry OBJECT-TYPE SYNTAX EnclosureManagementModuleConnectionEntry ACCESS not-accessible STATUS mandatory DESCRIPTION - "An entry in the Enclosure Management Module Connection table . A row in this + "An entry in the Enclosure Management Module Connection table . A row in this table cannot be created or deleted by SNMP operations on columns of the table." INDEX { enclosureManagementModuleConnectionNumber } ::= { enclosureManagementModuleConnectionTable 1 } - + EnclosureManagementModuleConnectionEntry ::= - SEQUENCE { + SEQUENCE { enclosureManagementModuleConnectionNumber INTEGER, enclosureManagementModuleConnectionEMMName @@ -3540,29 +3644,29 @@ connection entry." ::= { enclosureManagementModuleConnectionEntry 1 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.14.1.2 enclosureManagementModuleConnectionEMMName OBJECT-TYPE SYNTAX DisplayString ACCESS read-only STATUS mandatory DESCRIPTION - "The name of the enclosure management module in this + "The name of the enclosure management module in this connection as represented in Storage Management." ::= { enclosureManagementModuleConnectionEntry 2 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.14.1.3 enclosureManagementModuleConnectionEMMNumber OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION - "The instance number of the enclosure management module in + "The instance number of the enclosure management module in the enclosureManagementModuleTable in this connection." ::= { enclosureManagementModuleConnectionEntry 3 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.14.1.4 enclosureManagementModuleConnectionEnclosureName OBJECT-TYPE SYNTAX DisplayString @@ -3573,7 +3677,7 @@ to which this enclosure management module belongs." ::= { enclosureManagementModuleConnectionEntry 4 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.14.1.5 enclosureManagementModuleConnectionEnclosureNumber OBJECT-TYPE SYNTAX INTEGER @@ -3584,21 +3688,21 @@ to which this enclosure management module belongs." ::= { enclosureManagementModuleConnectionEntry 5 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.15 batteryTable OBJECT-TYPE SYNTAX SEQUENCE OF BatteryEntry ACCESS not-accessible STATUS mandatory DESCRIPTION - "A table of managed Batteries. The number of + "A table of managed Batteries. The number of entries is related to number of Batteries - discovered in the system. The maximum number of entries + 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 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.15.1 batteryEntry OBJECT-TYPE SYNTAX BatteryEntry @@ -3610,9 +3714,9 @@ INDEX { batteryNumber } ::= { batteryTable 1 } - + BatteryEntry ::= - SEQUENCE { + SEQUENCE { batteryNumber INTEGER, batteryName @@ -3654,7 +3758,7 @@ "Instance number of this battery entry." ::= { batteryEntry 1 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.2 batteryName OBJECT-TYPE SYNTAX DisplayString @@ -3664,7 +3768,7 @@ "The battery's name as represented in Storage Management." ::= { batteryEntry 2 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.3 batteryVendor OBJECT-TYPE SYNTAX DisplayString @@ -3674,7 +3778,7 @@ "The battery's (re)seller's name." ::= { batteryEntry 3 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.4 batteryState OBJECT-TYPE SYNTAX INTEGER @@ -3698,7 +3802,7 @@ 1: Ready 2: Failed 6: Degraded - 7: Reconditioning + 7: Reconditioning 9: High 10: Low Power 12: Charging @@ -3707,7 +3811,7 @@ " ::= { batteryEntry 4 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.5 batteryRollUpStatus OBJECT-TYPE SYNTAX DellStatus @@ -3719,31 +3823,31 @@ Possible values: 1: Other 2: Unknown - 3: OK - 4: Non-critical + 3: OK + 4: Non-critical 5: Critical 6: Non-recoverable" ::= { batteryEntry 5 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.6 batteryComponentStatus OBJECT-TYPE SYNTAX DellStatus ACCESS read-only STATUS mandatory DESCRIPTION - "The status of the battery itself without the + "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 + 3: OK + 4: Non-critical 5: Critical 6: Non-recoverable" ::= { batteryEntry 6 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.7 batteryChargeCount OBJECT-TYPE SYNTAX INTEGER @@ -3753,7 +3857,7 @@ "The number of charges that have been applied to the battery." ::= { batteryEntry 7 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.8 batteryMaxChargeCount OBJECT-TYPE SYNTAX INTEGER @@ -3763,7 +3867,7 @@ "The maximum number of charges that can be applied to the battery." ::= { batteryEntry 8 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.9 batteryNexusID OBJECT-TYPE SYNTAX DisplayString @@ -3773,7 +3877,7 @@ "Durable unique ID for this battery." ::= { batteryEntry 9 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.10 batteryPredictedCapacity OBJECT-TYPE SYNTAX INTEGER @@ -3793,7 +3897,7 @@ " ::= { batteryEntry 10 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.11 batteryNextLearnTime OBJECT-TYPE SYNTAX INTEGER @@ -3804,7 +3908,7 @@ " ::= { batteryEntry 11 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.12 batteryLearnState OBJECT-TYPE SYNTAX INTEGER @@ -3829,7 +3933,7 @@ 32: Due" ::= { batteryEntry 12 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.13 batteryID OBJECT-TYPE SYNTAX INTEGER @@ -3839,7 +3943,7 @@ "Represents unique id for battery." ::= { batteryEntry 13 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.14 batteryMaxLearnDelay OBJECT-TYPE SYNTAX INTEGER @@ -3849,7 +3953,7 @@ "The maximum amount of time (in hours) that the battery learn cycle can be delayed." ::= { batteryEntry 14 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.15 batteryLearnMode OBJECT-TYPE SYNTAX INTEGER @@ -3871,20 +3975,20 @@ " ::= { batteryEntry 15 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.16 batteryConnectionTable OBJECT-TYPE SYNTAX SEQUENCE OF BatteryConnectionEntry ACCESS not-accessible STATUS mandatory DESCRIPTION - "A table of the connections between each - battery on the managed node and its controller. - Each controller number in the table corresponds to that + "A table of the connections between each + battery on the managed node and its controller. + Each controller number in the table corresponds to that controller instance in the Controller Table." ::= { physicalDevices 16 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.16.1 batteryConnectionEntry OBJECT-TYPE SYNTAX BatteryConnectionEntry @@ -3896,9 +4000,9 @@ INDEX { batteryConnectionNumber } ::= { batteryConnectionTable 1 } - + BatteryConnectionEntry ::= - SEQUENCE { + SEQUENCE { batteryConnectionNumber INTEGER, batteryConnectionBatteryName @@ -3920,7 +4024,7 @@ "Instance number of this battery connection entry." ::= { batteryConnectionEntry 1 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.16.1.2 batteryConnectionBatteryName OBJECT-TYPE SYNTAX DisplayString @@ -3930,7 +4034,7 @@ "The name of the battery in this connection as represented in Storage Management." ::= { batteryConnectionEntry 2 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.16.1.3 batteryConnectionBatteryNumber OBJECT-TYPE SYNTAX INTEGER @@ -3940,7 +4044,7 @@ "The instance number in the batteryTable of the battery in this connection." ::= { batteryConnectionEntry 3 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.16.1.4 batteryConnectionControllerName OBJECT-TYPE SYNTAX DisplayString @@ -3951,7 +4055,7 @@ to which this battery belongs." ::= { batteryConnectionEntry 4 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.16.1.5 batteryConnectionControllerNumber OBJECT-TYPE SYNTAX INTEGER @@ -3962,7 +4066,7 @@ to which this battery belongs." ::= { batteryConnectionEntry 5 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1 controllerTable OBJECT-TYPE SYNTAX SEQUENCE OF ControllerEntry @@ -3975,7 +4079,7 @@ Note: The properties in this table may not be applicable to all entries." ::= { physicalDevices 1 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1 controllerEntry OBJECT-TYPE SYNTAX ControllerEntry @@ -3987,9 +4091,9 @@ INDEX { controllerNumber } ::= { controllerTable 1 } - + ControllerEntry ::= - SEQUENCE { + SEQUENCE { controllerNumber INTEGER, controllerName @@ -4130,12 +4234,18 @@ INTEGER, controllerPIEnable INTEGER, - controllerCurrentMode + controllerCurrentMode DisplayString, frontChassisSlot INTEGER, controllerInstance - INTEGER + INTEGER, + controllerNonRAIDdiskCachePolicy + DisplayString, + controllerAutoconfigureBehavior + DisplayString +-- controllerSupportedInterface +-- INTEGER, } -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.1 @@ -4147,19 +4257,19 @@ "Instance number of this controller entry." ::= { controllerEntry 1 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.2 controllerName OBJECT-TYPE SYNTAX DisplayString ACCESS read-only STATUS mandatory DESCRIPTION - "The name of the controller in this subsystem as represented in Storage Management. - Includes the controller type and instance. + "The name of the controller in this subsystem as represented in Storage Management. + Includes the controller type and instance. For example: Perc3/QC 1." ::= { controllerEntry 2 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.3 controllerVendor OBJECT-TYPE SYNTAX DisplayString @@ -4169,7 +4279,7 @@ "The controller's (re)seller's name." ::= { controllerEntry 3 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.4 controllerType OBJECT-TYPE SYNTAX INTEGER @@ -4187,7 +4297,7 @@ DESCRIPTION "The type of this controller: 1: SCSI - 2: PV660F + 2: PV660F 3: PV662F 4: IDE (Integrated/Intelligent Drive Electronics) 5: SATA (Serial Advanced Technology Attachment) @@ -4195,7 +4305,7 @@ 9: PCIe SSD" ::= { controllerEntry 4 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.5 controllerState OBJECT-TYPE SYNTAX INTEGER @@ -4209,7 +4319,7 @@ ACCESS read-only STATUS mandatory DESCRIPTION - "The current condition of the controller's subsystem + "The current condition of the controller's subsystem (which includes any devices connected to it.) Possible states: 0: Unknown @@ -4220,7 +4330,7 @@ 6: Degraded" ::= { controllerEntry 5 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.6 controllerSeverity OBJECT-TYPE SYNTAX INTEGER @@ -4236,18 +4346,18 @@ It was replaced with RollUpStatus and ComponentStatus for each device." ::= { controllerEntry 6 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.7 controllerRebuildRateInPercent OBJECT-TYPE SYNTAX INTEGER (0..100) ACCESS read-only STATUS mandatory DESCRIPTION - "The percent of the compute cycles dedicated to rebuilding + "The percent of the compute cycles dedicated to rebuilding failed array disks. " ::= { controllerEntry 7 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.8 controllerFWVersion OBJECT-TYPE SYNTAX DisplayString @@ -4257,29 +4367,29 @@ "The controller's current firmware version." ::= { controllerEntry 8 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.9 controllerCacheSizeInMB OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION - "The controller's current amount of cache memory in megabytes. + "The controller's current amount of cache memory in megabytes. If this size is 0, it is less than a megabyte." ::= { controllerEntry 9 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.10 controllerCacheSizeInBytes OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION - "The controller's current amount of cache memory that is less than a megabyte. This combined with the + "The controller's current amount of cache memory that is less than a megabyte. This combined with the controllerCacheSizeInMB will be the total amount of memory." ::= { controllerEntry 10 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.11 controllerPhysicalDeviceCount OBJECT-TYPE SYNTAX INTEGER @@ -4289,7 +4399,7 @@ "Number of physical devices on the controller channel including both disks and the controller." ::= { controllerEntry 11 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.12 controllerLogicalDeviceCount OBJECT-TYPE SYNTAX INTEGER @@ -4299,7 +4409,7 @@ "Number of virtual disks on the controller." ::= { controllerEntry 12 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.13 controllerPartnerStatus OBJECT-TYPE SYNTAX DisplayString @@ -4309,7 +4419,7 @@ "This entry is obsolete for Storage Management." ::= { controllerEntry 13 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.14 controllerHostPortCount OBJECT-TYPE SYNTAX INTEGER @@ -4320,7 +4430,7 @@ Fibre channel is not supported in Storage Management." ::= { controllerEntry 14 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.15 controllerMemorySizeInMB OBJECT-TYPE SYNTAX INTEGER @@ -4330,7 +4440,7 @@ "Size of memory in megabytes on the controller. If this size is 0, it is less than a megabyte. This attribute is only supported on Adaptec controllers. " ::= { controllerEntry 15 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.16 controllerMemorySizeInBytes OBJECT-TYPE SYNTAX INTEGER @@ -4341,7 +4451,7 @@ will be the total size of the memory. This attribute is only supported on Adaptec controllers." ::= { controllerEntry 16 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.17 controllerDriveChannelCount OBJECT-TYPE SYNTAX INTEGER (1..4) @@ -4352,7 +4462,7 @@ Fibre channel is not supported in Storage Management." ::= { controllerEntry 17 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.18 controllerFaultTolerant OBJECT-TYPE SYNTAX INTEGER { yes(1) } @@ -4363,7 +4473,7 @@ Fibre channel is not supported in Storage Management." ::= { controllerEntry 18 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.19 controllerC0Port0WWN OBJECT-TYPE SYNTAX DisplayString @@ -4374,7 +4484,7 @@ Fibre channel is not supported in Storage Management." ::= { controllerEntry 19 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.20 controllerC0Port0Name OBJECT-TYPE SYNTAX DisplayString @@ -4385,7 +4495,7 @@ Fibre channel is not supported in Storage Management." ::= { controllerEntry 20 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.21 controllerC0Port0ID OBJECT-TYPE SYNTAX INTEGER @@ -4396,7 +4506,7 @@ Fibre channel is not supported in Storage Management." ::= { controllerEntry 21 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.22 controllerC0Target OBJECT-TYPE SYNTAX INTEGER @@ -4404,11 +4514,11 @@ STATUS obsolete DESCRIPTION "This entry is obsolete. - Fibre channel is not supported in Storage Management. + Fibre channel is not supported in Storage Management. " ::= { controllerEntry 22 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.23 controllerC0Channel OBJECT-TYPE SYNTAX INTEGER @@ -4419,7 +4529,7 @@ Fibre channel is not supported in Storage Management." ::= { controllerEntry 23 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.24 controllerC0OSController OBJECT-TYPE SYNTAX DisplayString @@ -4430,7 +4540,7 @@ Fibre channel is not supported in Storage Management." ::= { controllerEntry 24 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.25 controllerC0BatteryState OBJECT-TYPE SYNTAX INTEGER @@ -4450,7 +4560,7 @@ Fibre channel is not supported in Storage Management. " ::= { controllerEntry 25 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.26 controllerC1Port0WWN OBJECT-TYPE SYNTAX DisplayString @@ -4461,7 +4571,7 @@ Fibre channel is not supported in Storage Management." ::= { controllerEntry 26 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.27 controllerC1Port0Name OBJECT-TYPE SYNTAX DisplayString @@ -4472,7 +4582,7 @@ Fibre channel is not supported in Storage Management." ::= { controllerEntry 27 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.28 controllerC1Port0ID OBJECT-TYPE SYNTAX INTEGER @@ -4483,7 +4593,7 @@ Fibre channel is not supported in Storage Management." ::= { controllerEntry 28 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.29 controllerC1Target OBJECT-TYPE SYNTAX INTEGER @@ -4494,7 +4604,7 @@ Fibre channel is not supported in Storage Management." ::= { controllerEntry 29 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.30 controllerC1Channel OBJECT-TYPE SYNTAX INTEGER @@ -4505,7 +4615,7 @@ Fibre channel is not supported in Storage Management." ::= { controllerEntry 30 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.31 controllerC1OSController OBJECT-TYPE SYNTAX INTEGER @@ -4516,7 +4626,7 @@ Fibre channel is not supported in Storage Management." ::= { controllerEntry 31 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.32 controllerC1BatteryState OBJECT-TYPE SYNTAX INTEGER @@ -4536,7 +4646,7 @@ Fibre channel is not supported in Storage Management. " ::= { controllerEntry 32 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.33 controllerNodeWWN OBJECT-TYPE SYNTAX DisplayString @@ -4547,7 +4657,7 @@ Fibre channel is not supported in Storage Management." ::= { controllerEntry 33 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.34 controllerC0Port1WWN OBJECT-TYPE SYNTAX DisplayString @@ -4558,7 +4668,7 @@ Fibre channel is not supported in Storage Management." ::= { controllerEntry 34 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.35 controllerC1Port1WWN OBJECT-TYPE SYNTAX DisplayString @@ -4569,7 +4679,7 @@ Fibre channel is not supported in Storage Management." ::= { controllerEntry 35 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.36 controllerBatteryChargeCount OBJECT-TYPE SYNTAX INTEGER @@ -4580,43 +4690,43 @@ Fibre channel is not supported in Storage Management." ::= { controllerEntry 36 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.37 controllerRollUpStatus OBJECT-TYPE SYNTAX DellStatus ACCESS read-only STATUS mandatory DESCRIPTION - "Severity of the controller state. + "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 + 3: OK + 4: Non-critical 5: Critical 6: Non-recoverable" ::= { controllerEntry 37 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.38 controllerComponentStatus OBJECT-TYPE SYNTAX DellStatus ACCESS read-only STATUS mandatory DESCRIPTION - "The status of the controller itself without the + "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 + 3: OK + 4: Non-critical 5: Critical 6: Non-recoverable" ::= { controllerEntry 38 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.39 controllerNexusID OBJECT-TYPE SYNTAX DisplayString @@ -4626,7 +4736,7 @@ "Durable unique ID for this controller." ::= { controllerEntry 39 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.40 controllerAlarmState OBJECT-TYPE SYNTAX INTEGER @@ -4645,7 +4755,7 @@ 3: Not Applicable" ::= { controllerEntry 40 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.41 controllerDriverVersion OBJECT-TYPE SYNTAX DisplayString @@ -4655,7 +4765,7 @@ "Currently installed driver version for this controller." ::= { controllerEntry 41 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.42 controllerPCISlot OBJECT-TYPE SYNTAX DisplayString @@ -4663,10 +4773,11 @@ STATUS mandatory DESCRIPTION "The PCI slot number or embedded number for controllers on the motherboard. + For Modular or NGM controllers, the PCI Slot Designation or Embedded is displayed. " ::= { controllerEntry 42 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.43 controllerClusterMode OBJECT-TYPE SYNTAX INTEGER @@ -4688,7 +4799,7 @@ " ::= { controllerEntry 43 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.44 controllerMinFWVersion OBJECT-TYPE SYNTAX DisplayString @@ -4699,7 +4810,7 @@ " ::= { controllerEntry 44 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.45 controllerMinDriverVersion OBJECT-TYPE SYNTAX DisplayString @@ -4710,7 +4821,7 @@ " ::= { controllerEntry 45 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.46 controllerSCSIInitiatorID OBJECT-TYPE SYNTAX INTEGER @@ -4720,7 +4831,7 @@ "The SCSI ID of the initiator." ::= { controllerEntry 46 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.47 controllerChannelCount OBJECT-TYPE SYNTAX INTEGER @@ -4730,7 +4841,7 @@ "Number of channels on the controller." ::= { controllerEntry 47 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.48 controllerReconstructRate OBJECT-TYPE SYNTAX INTEGER @@ -4741,7 +4852,7 @@ " ::= { controllerEntry 48 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.49 controllerPatrolReadRate OBJECT-TYPE SYNTAX INTEGER @@ -4752,7 +4863,7 @@ " ::= { controllerEntry 49 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.50 controllerBGIRate OBJECT-TYPE SYNTAX INTEGER @@ -4763,7 +4874,7 @@ " ::= { controllerEntry 50 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.51 controllerCheckConsistencyRate OBJECT-TYPE SYNTAX INTEGER @@ -4774,7 +4885,7 @@ " ::= { controllerEntry 51 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.52 controllerPatrolReadMode OBJECT-TYPE SYNTAX INTEGER @@ -4794,7 +4905,7 @@ " ::= { controllerEntry 52 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.53 controllerPatrolReadState OBJECT-TYPE SYNTAX INTEGER @@ -4815,7 +4926,7 @@ " ::= { controllerEntry 53 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.54 controllerPatrolReadIterations OBJECT-TYPE SYNTAX INTEGER @@ -4825,7 +4936,7 @@ "The number of times Patrol Read has been run on this controller." ::= { controllerEntry 54 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.55 controllerStorportDriverVersion OBJECT-TYPE SYNTAX DisplayString @@ -4835,7 +4946,7 @@ "Provide current Windows OS storport driver version. Not applicable for Linux." ::= { controllerEntry 55 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.56 controllerMinRequiredStorportVer OBJECT-TYPE SYNTAX DisplayString @@ -4845,7 +4956,7 @@ "Provides minimum required storport driver version for Windows OS only. " ::= { controllerEntry 56 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.57 controllerEncryptionCapable OBJECT-TYPE SYNTAX INTEGER @@ -4856,7 +4967,7 @@ Value: 1 - Capable, 99 - NotApplicable" ::= { controllerEntry 57 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.58 controllerEncryptionKeyPresent OBJECT-TYPE SYNTAX INTEGER @@ -4867,7 +4978,7 @@ Value: 1 - Yes, 0 - No, 99 - NotApplicable" ::= { controllerEntry 58 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.59 controllerPersistentHotSpare OBJECT-TYPE SYNTAX INTEGER (0..1) @@ -4878,7 +4989,7 @@ Value: 1 - Enabled, 0 - Disabled, 99 - Undetermined / Not applicable" ::= { controllerEntry 59 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.60 controllerSpinDownUnconfiguredDrives OBJECT-TYPE SYNTAX INTEGER (0..1) @@ -4889,7 +5000,7 @@ Value: 1 - Enabled, 0 - Disabled, 99 - Undetermined / Not applicable" ::= { controllerEntry 60 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.61 controllerSpinDownHotSpareDrives OBJECT-TYPE SYNTAX INTEGER (0..1) @@ -4900,7 +5011,7 @@ Value: 1 - Enabled, 0 - Disabled, 99 - Undetermined / Not applicable" ::= { controllerEntry 61 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.62 controllerSpinDownTimeInterval OBJECT-TYPE SYNTAX INTEGER (30..1440) @@ -4908,11 +5019,11 @@ STATUS mandatory DESCRIPTION "Shows the duration in minutes after which, the unconfigured or hot spare drives will be spun down to power save mode. - Value: 30 to 1440 + Value: 30 to 1440 Note: A value of 9999 indicates feature not available." ::= { controllerEntry 62 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.63 controllerEncryptionMode OBJECT-TYPE SYNTAX INTEGER @@ -4920,11 +5031,11 @@ STATUS mandatory DESCRIPTION "Indicates the current encryption mode of the controller. - Value: 0 - No Encryption, 1 - Local Key Management (LKM), 2 - Dell Key Management (DKM), 99 - Not Applicable + Value: 0 - No Encryption, 1 - Local Key Management (LKM), 2 - Secure Enterprise Key Management (SEKM), 99 - Not Applicable " ::= { controllerEntry 63 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.64 controllerCacheCade OBJECT-TYPE SYNTAX INTEGER @@ -4935,7 +5046,7 @@ Value: 1 - Capable, 0 - Not Capable, 99 - Undetermined" ::= { controllerEntry 64 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.65 controllerSpinDownConfiguredDrives OBJECT-TYPE SYNTAX INTEGER @@ -4947,7 +5058,7 @@ " ::= { controllerEntry 65 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.66 controllerAutomaticPowerSaving OBJECT-TYPE SYNTAX INTEGER @@ -4958,7 +5069,7 @@ Value: 0 - Disabled, 1 - Enabled, 99 - Undetermined" ::= { controllerEntry 66 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.67 controllerConfiguredDrivesSpinUpTime OBJECT-TYPE SYNTAX DisplayString @@ -4969,7 +5080,7 @@ Value: 1:00 AM to 12:59 PM, 9999 - Undetermined" ::= { controllerEntry 67 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.68 controllerConfiguredDrivesSpinUpTimeInterval OBJECT-TYPE SYNTAX INTEGER (30..1440) @@ -4980,7 +5091,7 @@ Value: 1 .. 24, 9999 - Undetermined" ::= { controllerEntry 68 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.69 controllerPreservedCache OBJECT-TYPE SYNTAX INTEGER @@ -4991,7 +5102,7 @@ Values: 1- Yes, 0 - No, 99 - Not available / Not applicable" ::= { controllerEntry 69 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.70 controllerPIEnable OBJECT-TYPE SYNTAX INTEGER @@ -5002,7 +5113,7 @@ Value can be either 0 (T10 PI disabled) or 1 (T10 PI enabled)." ::= { controllerEntry 70 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.71 controllerCurrentMode OBJECT-TYPE SYNTAX DisplayString @@ -5011,7 +5122,7 @@ DESCRIPTION "Shows the current controller mode." ::= { controllerEntry 71 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.72 frontChassisSlot OBJECT-TYPE SYNTAX INTEGER @@ -5020,7 +5131,7 @@ DESCRIPTION "Shows the physical slot on the chassis for stash ." ::= { controllerEntry 72 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.73 controllerInstance OBJECT-TYPE SYNTAX INTEGER @@ -5029,20 +5140,61 @@ DESCRIPTION "Shows the current instance of the controller for stash ." ::= { controllerEntry 73 } - + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.74 + controllerNonRAIDdiskCachePolicy OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Displays the current disk write cache policy for Non-RAID disks." + ::= { controllerEntry 74 } + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.75 + controllerAutoconfigureBehavior OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Displays the current auto configure behavior mode on controller." + ::= { controllerEntry 75 } + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.75 + -- controllerSupportedInterfaces OBJECT-TYPE + -- SYNTAX INTEGER + -- { + -- sata(7), + -- sas(8), + -- pcie(9) + -- sas, sata (10) + -- sas, sata, pcie (11) + -- } + -- ACCESS read-only + -- STATUS mandatory + -- DESCRIPTION + -- "The supported device protocol on controller. + -- Possible values: + -- 7: SATA + -- 8: SAS + -- 9: PCIe + -- 10: SAS, SATA + -- 11: SAS, SATA, PCIE" + -- ::= { controllerEntry 75 } + + -- 1.3.6.1.4.1.674.10893.1.20.130.17 tapeDriveTable OBJECT-TYPE SYNTAX SEQUENCE OF TapeDriveEntry ACCESS not-accessible STATUS mandatory DESCRIPTION - "A table of listed Tape Drives The number of entries is + "A table of listed Tape Drives The number of entries is related to number of Tape Drives 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 17 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.17.1 tapeDriveEntry OBJECT-TYPE SYNTAX TapeDriveEntry @@ -5054,9 +5206,9 @@ INDEX { tapeDriveNumber } ::= { tapeDriveTable 1 } - + TapeDriveEntry ::= - SEQUENCE { + SEQUENCE { tapeDriveNumber INTEGER, tapeDriveName @@ -5085,7 +5237,7 @@ "Instance number of this tape drive entry." ::= { tapeDriveEntry 1 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.17.1.2 tapeDriveName OBJECT-TYPE SYNTAX DisplayString @@ -5095,7 +5247,7 @@ "The name of the tape drive as represented in Storage Management." ::= { tapeDriveEntry 2 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.17.1.3 tapeDriveVendor OBJECT-TYPE SYNTAX DisplayString @@ -5105,7 +5257,7 @@ "The tape drive's manufacturer's name." ::= { tapeDriveEntry 3 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.17.1.4 tapeDriveProductID OBJECT-TYPE SYNTAX DisplayString @@ -5115,7 +5267,7 @@ "The model number of the tape drive" ::= { tapeDriveEntry 4 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.17.1.5 tapeDriveNexusID OBJECT-TYPE SYNTAX DisplayString @@ -5125,7 +5277,7 @@ "Durable unique ID for this tape drive" ::= { tapeDriveEntry 5 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.17.1.6 tapeDriveBusType OBJECT-TYPE SYNTAX INTEGER { sas(8) } @@ -5137,7 +5289,7 @@ 8. SAS" ::= { tapeDriveEntry 6 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.17.1.7 tapeDriveSASAddress OBJECT-TYPE SYNTAX DisplayString @@ -5148,7 +5300,7 @@ " ::= { tapeDriveEntry 7 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.17.1.8 tapeDriveMediaType OBJECT-TYPE @@ -5167,13 +5319,13 @@ ACCESS not-accessible STATUS mandatory DESCRIPTION - "A table of listed NVME Adapter cards. The number of entries is + "A table of listed NVME Adapter cards. The number of entries is related to number of NVME Adapter cards 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 18 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1 nvmeAdapterEntry OBJECT-TYPE @@ -5187,7 +5339,7 @@ ::= { nvmeAdapterTable 1 } NvmeAdapterEntry ::= - SEQUENCE { + SEQUENCE { nvmeAdapterNumber INTEGER, nvmeAdapterState @@ -5199,7 +5351,7 @@ nvmeAdapterDeviceName DisplayString, nvmeAdapterVendor - DisplayString, + DisplayString, nvmeAdapterProductID DisplayString, nvmeAdapterSerialNumber @@ -5209,41 +5361,43 @@ nvmeAdapterDriverVersion DisplayString, nvmeAdapterPCIBusNo - INTEGER, + INTEGER, nvmeAdapterPCIDeviceNum - INTEGER, + INTEGER, nvmeAdapterPCIFuncNum - INTEGER, + INTEGER, nvmeAdapterNexusID DisplayString, nvmeAdapterBusProtocolType - INTEGER, + INTEGER, nvmeAdapterMediaType INTEGER, nvmeAdapterLengthInMegaBytes - INTEGER, + INTEGER, nvmeAdapterLengthOffsetBytes - INTEGER, + INTEGER, nvmeAdapterDeviceID - INTEGER, + INTEGER, nvmeAdapterModelNumber - DisplayString, + DisplayString, nvmeAdapterNegotiatedSpeed - INTEGER, + INTEGER, nvmeAdapterCapableSpeed INTEGER, nvmeAdapterRemainingRatedWrEnd - INTEGER, + INTEGER, nvmeAdapterFormFactor INTEGER, nvmeAdapterSupportedSpec - DisplayString, + DisplayString, nvmeAdapterMaxLinkWidth INTEGER, nvmeAdapterNegotiatedLinkWidth INTEGER, nvmeAdapterSubVendor - DisplayString + DisplayString, + nvmeAdapterAvailableSpare + INTEGER } @@ -5255,7 +5409,7 @@ DESCRIPTION "Instance number of this NVME Adapter entry." ::= { nvmeAdapterEntry 1 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.2 nvmeAdapterState OBJECT-TYPE SYNTAX INTEGER @@ -5264,27 +5418,27 @@ DESCRIPTION "The current state of the NVMe Adapter." ::= { nvmeAdapterEntry 2 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.3 nvmeAdapterControllerNum OBJECT-TYPE - SYNTAX INTEGER + SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "The PCIeSSD subsystem Id to which the NVMe Adapter belongs to." ::= { nvmeAdapterEntry 3 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.4 nvmeAdapterPCISlot OBJECT-TYPE - SYNTAX INTEGER + SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "The PCI slot of the system where the adapter card is connected." ::= { nvmeAdapterEntry 4 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.5 nvmeAdapterDeviceName OBJECT-TYPE SYNTAX DisplayString @@ -5311,7 +5465,7 @@ DESCRIPTION "The product id or part number of the NVMe Adapter " ::= { nvmeAdapterEntry 7 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.8 nvmeAdapterSerialNumber OBJECT-TYPE SYNTAX DisplayString @@ -5321,7 +5475,7 @@ "Product serial number of the NVMe Adapter." ::= { nvmeAdapterEntry 8 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.9 nvmeAdapterRevision OBJECT-TYPE SYNTAX DisplayString @@ -5331,7 +5485,7 @@ "The NVMe Adapter revision." ::= { nvmeAdapterEntry 9 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.10 nvmeAdapterDriverVersion OBJECT-TYPE SYNTAX DisplayString @@ -5341,7 +5495,7 @@ "NVMe Adapter driver version." ::= { nvmeAdapterEntry 10 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.11 nvmeAdapterPCIBusNo OBJECT-TYPE SYNTAX INTEGER @@ -5351,7 +5505,7 @@ "The PCI Bus number of the NVMe adapter." ::= { nvmeAdapterEntry 11 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.12 nvmeAdapterPCIDeviceNum OBJECT-TYPE SYNTAX INTEGER @@ -5361,26 +5515,26 @@ "The PCI device number of the NVMe Adapter." ::= { nvmeAdapterEntry 12 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.13 nvmeAdapterPCIFuncNum OBJECT-TYPE - SYNTAX INTEGER + SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "The PCI device number of the NVMe Adapter." ::= { nvmeAdapterEntry 13 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.14 nvmeAdapterNexusID OBJECT-TYPE - SYNTAX DisplayString + SYNTAX DisplayString ACCESS read-only STATUS mandatory DESCRIPTION "Nexus ID of the NVMe Adapter." ::= { nvmeAdapterEntry 14 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.15 nvmeAdapterBusProtocolType OBJECT-TYPE SYNTAX INTEGER @@ -5390,7 +5544,7 @@ "The Bus protocol for NVMe device, expected value: 9 (PCIeSSD)." ::= { nvmeAdapterEntry 15 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.16 nvmeAdapterMediaType OBJECT-TYPE SYNTAX INTEGER @@ -5403,7 +5557,7 @@ 2:ssd" ::= { nvmeAdapterEntry 16 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.17 nvmeAdapterLengthInMegaBytes OBJECT-TYPE SYNTAX INTEGER @@ -5412,7 +5566,7 @@ DESCRIPTION "Size in megabytes of the NVMe Adapter." ::= { nvmeAdapterEntry 17 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.18 nvmeAdapterLengthOffsetBytes OBJECT-TYPE SYNTAX INTEGER @@ -5424,13 +5578,13 @@ -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.19 nvmeAdapterDeviceID OBJECT-TYPE - SYNTAX INTEGER + SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "The device Id of the NVMe Adapter." ::= { nvmeAdapterEntry 19 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.20 nvmeAdapterModelNumber OBJECT-TYPE SYNTAX DisplayString @@ -5440,50 +5594,50 @@ "Model number of the NVMe Adapter as per the manufacturer." ::= { nvmeAdapterEntry 20 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.21 nvmeAdapterNegotiatedSpeed OBJECT-TYPE - SYNTAX INTEGER + SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "The negotiated speed of the NVMe adapter in GT/s." ::= { nvmeAdapterEntry 21 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.22 nvmeAdapterCapableSpeed OBJECT-TYPE - SYNTAX INTEGER + SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "The maximum rated speed of the NVMe adapter in GT/s." ::= { nvmeAdapterEntry 22 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.23 nvmeAdapterRemainingRatedWrEnd OBJECT-TYPE - SYNTAX INTEGER + SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "The remaining percentage of writes on the NVME device" ::= { nvmeAdapterEntry 23 } - - + + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.24 nvmeAdapterFormFactor OBJECT-TYPE - SYNTAX INTEGER + SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION - "The form factor of the NVMe Adapter. + "The form factor of the NVMe Adapter. Expected Value: 2 means (Card)" ::= { nvmeAdapterEntry 24 } - - + + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.25 nvmeAdapterSupportedSpec OBJECT-TYPE - SYNTAX DisplayString + SYNTAX DisplayString ACCESS read-only STATUS mandatory DESCRIPTION @@ -5498,7 +5652,7 @@ DESCRIPTION "The maximum bus width of NVME Adapter" ::= { nvmeAdapterEntry 26} - + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.27 nvmeAdapterNegotiatedLinkWidth OBJECT-TYPE SYNTAX INTEGER @@ -5507,7 +5661,7 @@ DESCRIPTION "The negotiated bus width of NVME Adapter. " ::= { nvmeAdapterEntry 27 } - + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.28 nvmeAdapterSubVendor OBJECT-TYPE @@ -5518,43 +5672,51 @@ "Sub vendor of the NVMe Adapter device." ::= { nvmeAdapterEntry 28} - + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.29 + nvmeAdapterAvailableSpare OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The remaining available spare space on the NVME device" + ::= { nvmeAdapterEntry 29 } + -- 1.3.6.1.4.1.674.10893.1.20.140 logicalDevices OBJECT IDENTIFIER ::= { storageManagement 140 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.3 arrayDiskLogicalConnectionTable OBJECT-TYPE SYNTAX SEQUENCE OF ArrayDiskLogicalConnectionEntry ACCESS not-accessible STATUS mandatory DESCRIPTION - "A table of the connections between array disks, the + "A table of the connections between array disks, the virtual disk to which they belong, and their - associated logical disk. For each object in the table, - its object number corresponds to an instance number in - the appropriate MIB table for that object where all of + associated logical disk. For each object in the table, + its object number corresponds to an instance number in + the appropriate MIB table for that object where all of the object properties can be found. - - + + " ::= { logicalDevices 3 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.3.1 arrayDiskLogicalConnectionEntry OBJECT-TYPE SYNTAX ArrayDiskLogicalConnectionEntry ACCESS not-accessible STATUS mandatory DESCRIPTION - "An entry in the Array Disk Logical Connection table . A row in this table + "An entry in the Array Disk Logical Connection table . A row in this table cannot be created or deleted by SNMP operations on columns of the table." INDEX { arrayDiskLogicalConnectionNumber } ::= { arrayDiskLogicalConnectionTable 1 } - + ArrayDiskLogicalConnectionEntry ::= - SEQUENCE { + SEQUENCE { arrayDiskLogicalConnectionNumber INTEGER, arrayDiskLogicalConnectionArrayDiskName @@ -5580,7 +5742,7 @@ "Instance number of this array disk logical connection entry." ::= { arrayDiskLogicalConnectionEntry 1 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.3.1.2 arrayDiskLogicalConnectionArrayDiskName OBJECT-TYPE SYNTAX DisplayString @@ -5590,7 +5752,7 @@ "The name of the array disk in this logical connection." ::= { arrayDiskLogicalConnectionEntry 2 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.3.1.3 arrayDiskLogicalConnectionArrayDiskNumber OBJECT-TYPE SYNTAX INTEGER @@ -5600,7 +5762,7 @@ "The instance number of the array disk in this logical connection." ::= { arrayDiskLogicalConnectionEntry 3 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.3.1.4 arrayDiskLogicalConnectionVirtualDiskName OBJECT-TYPE SYNTAX DisplayString @@ -5610,18 +5772,18 @@ "The name of the virtual disk to which this array disk belongs." ::= { arrayDiskLogicalConnectionEntry 4 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.3.1.5 arrayDiskLogicalConnectionVirtualDiskNumber OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION - "The instance number of the virtual disk to which this array disk + "The instance number of the virtual disk to which this array disk belongs." ::= { arrayDiskLogicalConnectionEntry 5 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.3.1.6 arrayDiskLogicalConnectionDiskName OBJECT-TYPE SYNTAX DisplayString @@ -5632,7 +5794,7 @@ This property is currently not supported." ::= { arrayDiskLogicalConnectionEntry 6 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.3.1.7 arrayDiskLogicalConnectionDiskNumber OBJECT-TYPE SYNTAX INTEGER @@ -5643,7 +5805,7 @@ This property is currently not supported." ::= { arrayDiskLogicalConnectionEntry 7 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.1 virtualDiskTable OBJECT-TYPE SYNTAX SEQUENCE OF VirtualDiskEntry @@ -5651,12 +5813,12 @@ STATUS mandatory DESCRIPTION "A table of managed Virtual Disks. The number of entries is related - to number of Virtual Disks discovered in the system. + 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 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1 virtualDiskEntry OBJECT-TYPE SYNTAX VirtualDiskEntry @@ -5668,9 +5830,9 @@ INDEX { virtualDiskNumber } ::= { virtualDiskTable 1 } - + VirtualDiskEntry ::= - SEQUENCE { + SEQUENCE { virtualDiskNumber INTEGER, virtualDiskName @@ -5738,7 +5900,7 @@ "Instance number of this virtual disk entry." ::= { virtualDiskEntry 1 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.2 virtualDiskName OBJECT-TYPE SYNTAX DisplayString @@ -5749,7 +5911,7 @@ by the user." ::= { virtualDiskEntry 2 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.3 virtualDiskDeviceName OBJECT-TYPE SYNTAX DisplayString @@ -5759,7 +5921,7 @@ "Device name used by this virtual disk's member disks." ::= { virtualDiskEntry 3 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.4 virtualDiskState OBJECT-TYPE SYNTAX INTEGER @@ -5787,10 +5949,10 @@ (which includes any member array disks.) Possible states: 0: Unknown - 1: Ready - The disk is accessible and has no known problems. + 1: Ready - The disk is accessible and has no known problems. 2: Failed - Access has been lost to the data or is about to be lost. 3: Online - 4: Offline - The disk is not accessible. The disk may be corrupted or intermittently unavailable. + 4: Offline - The disk is not accessible. The disk may be corrupted or intermittently unavailable. 6: Degraded - The data on the virtual disk is no longer fault tolerant because one of the underlying disks is not online. 15: Resynching 16: Regenerating @@ -5804,7 +5966,7 @@ 54: Degraded Redundancy" ::= { virtualDiskEntry 4 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.5 virtualDiskSeverity OBJECT-TYPE SYNTAX INTEGER @@ -5820,7 +5982,7 @@ It was replaced with RollUpStatus and ComponentStatus for each device." ::= { virtualDiskEntry 5 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.6 virtualDiskLengthInMB OBJECT-TYPE SYNTAX INTEGER @@ -5831,7 +5993,7 @@ is 0, it is smaller than a megabyte." ::= { virtualDiskEntry 6 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.7 virtualDiskLengthInBytes OBJECT-TYPE SYNTAX INTEGER @@ -5843,7 +6005,7 @@ is the total size of the virtual disk." ::= { virtualDiskEntry 7 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.8 virtualDiskFreeSpaceInMB OBJECT-TYPE SYNTAX INTEGER @@ -5853,7 +6015,7 @@ "This entry is obsolete. This property is not supported for virtual disks managed under Storage Management." ::= { virtualDiskEntry 8 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.9 virtualDiskFreeSpaceInBytes OBJECT-TYPE SYNTAX INTEGER @@ -5863,7 +6025,7 @@ "This entry is obsolete. This property is not supported for virtual disks managed under Storage Management." ::= { virtualDiskEntry 9 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.10 virtualDiskWritePolicy OBJECT-TYPE SYNTAX INTEGER @@ -5873,13 +6035,14 @@ writeBack(3), writeThrough(4), enabledAlways(5), - enabledAlwaysSAS(6), + forceWriteback(6), + enabledAlwaysSAS(7), notApplicable(9) } ACCESS read-only STATUS mandatory DESCRIPTION - "Indicates whether the controller's write cache will be used + "Indicates whether the controller's write cache will be used when writing to a virtual disk. Possible values: 1: Enabled - Adaptec Write Cache Enabled Protected @@ -5887,11 +6050,12 @@ 3: LSI Write Back 4: LSI Write Through 5: Enabled Always - Adaptec only - 6: Enabled Always - SAS only + 6: Force write back + 7: Enabled Always - SAS only 9: Not Applicable" ::= { virtualDiskEntry 10 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.11 virtualDiskReadPolicy OBJECT-TYPE SYNTAX INTEGER @@ -5906,7 +6070,7 @@ ACCESS read-only STATUS mandatory DESCRIPTION - "Indicates whether the controller's read cache will be used + "Indicates whether the controller's read cache will be used when reading from a virtual disk. Possible values: 1: Enabled - Adaptec Read Cache Enabled @@ -5917,7 +6081,7 @@ 9: Not Applicable" ::= { virtualDiskEntry 11 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.12 virtualDiskCachePolicy OBJECT-TYPE SYNTAX INTEGER @@ -5929,7 +6093,7 @@ ACCESS read-only STATUS mandatory DESCRIPTION - "Indicates whether the controller's cache is used when + "Indicates whether the controller's cache is used when reading from or writing to a virtual disk. Possible values: 1: Direct I/O (LSI) @@ -5937,7 +6101,7 @@ 99: Not applicable" ::= { virtualDiskEntry 12 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.13 virtualDiskLayout OBJECT-TYPE SYNTAX INTEGER @@ -5984,7 +6148,7 @@ " ::= { virtualDiskEntry 13 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.14 virtualDiskCurStripeSizeInMB OBJECT-TYPE SYNTAX INTEGER @@ -5996,20 +6160,20 @@ " ::= { virtualDiskEntry 14 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.15 virtualDiskCurStripeSizeInBytes OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION - "The portion of the stripe size in bytes that is smaller + "The portion of the stripe size in bytes that is smaller than a megabyte. This size plus the virtualDiskCurStripeSizeInMB is the total stripe size on the virtual disk. If this size is 0, either the entire size is whole megabytes or it is not applicable." ::= { virtualDiskEntry 15 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.16 virtualDiskChannel OBJECT-TYPE SYNTAX INTEGER @@ -6020,7 +6184,7 @@ by virtual disks managed under Storage Management." ::= { virtualDiskEntry 16 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.17 virtualDiskTargetID OBJECT-TYPE SYNTAX INTEGER @@ -6030,7 +6194,7 @@ "Unique ID for the virtual disk." ::= { virtualDiskEntry 17 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.18 virtualDiskLunID OBJECT-TYPE SYNTAX INTEGER @@ -6041,7 +6205,7 @@ by virtual disks managed under Storage Management." ::= { virtualDiskEntry 18 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.19 virtualDiskRollUpStatus OBJECT-TYPE SYNTAX DellStatus @@ -6049,36 +6213,36 @@ STATUS mandatory DESCRIPTION "Severity of the virtual disk state. - This is the combined status of the virtual disk and its + This is the combined status of the virtual disk and its components. Possible values: 1: Other 2: Unknown - 3: OK - 4: Non-critical + 3: OK + 4: Non-critical 5: Critical 6: Non-recoverable" ::= { virtualDiskEntry 19 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.20 virtualDiskComponentStatus OBJECT-TYPE SYNTAX DellStatus ACCESS read-only STATUS mandatory DESCRIPTION - "The status of the virtual disk itself without + "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 + 3: OK + 4: Non-critical 5: Critical 6: Non-recoverable" ::= { virtualDiskEntry 20 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.21 virtualDiskNexusID OBJECT-TYPE SYNTAX DisplayString @@ -6088,7 +6252,7 @@ "Durable unique ID for this virtual disk." ::= { virtualDiskEntry 21 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.22 virtualDiskArrayDiskType OBJECT-TYPE SYNTAX INTEGER @@ -6097,6 +6261,7 @@ sata(2), scsi(3), ide(4), + pcie(5), unknown(99) } ACCESS read-only @@ -6108,11 +6273,12 @@ 2: SATA 3: SCSI 4: IDE + 5: PCIE 99: Unknown " ::= { virtualDiskEntry 22 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.23 virtualDiskBadBlocksDetected OBJECT-TYPE SYNTAX INTEGER @@ -6123,7 +6289,7 @@ Value: 0 - No, 1 - Yes, 2 - Not Applicable, 99 - Unknown" ::= { virtualDiskEntry 23 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.24 virtualDiskEncrypted OBJECT-TYPE SYNTAX INTEGER @@ -6134,7 +6300,7 @@ Value: 0 - No, 1 - Yes, 99 - Unknown." ::= { virtualDiskEntry 24 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.25 virtualDiskIsCacheCade OBJECT-TYPE SYNTAX INTEGER @@ -6145,18 +6311,25 @@ Value: 1 - Yes, 0 - No, 99 - Undetermined" ::= { virtualDiskEntry 25 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.26 virtualDiskDiskCachePolicy OBJECT-TYPE SYNTAX INTEGER + { + unchanged(1), + enabled(2), + disabled(4), + default(8), + undetermined(10) + } ACCESS read-only STATUS mandatory DESCRIPTION "Indicates disk cache policy of the logical device. - Value: 1 - Enabled, 2 - Disabled, 99 - Undetermined" + Value: 1 - Unchanged, 2 - Enabled, 4 - Disabled, 8 - Default, 10 - Undetermined" ::= { virtualDiskEntry 26 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.27 virtualDiskAssociatedFluidCacheStatus OBJECT-TYPE SYNTAX INTEGER @@ -6166,7 +6339,7 @@ "Indicates the status of the associated fluid cache status" ::= { virtualDiskEntry 27 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.28 virtualDiskPIEnable OBJECT-TYPE SYNTAX INTEGER @@ -6178,7 +6351,7 @@ " ::= { virtualDiskEntry 28 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.2 virtualDiskPartitionTable OBJECT-TYPE SYNTAX SEQUENCE OF VirtualDiskPartitionEntry @@ -6186,12 +6359,12 @@ STATUS mandatory DESCRIPTION "A table of managed Virtual Disk Partitions. The number of entries is related - to number of partitions discovered in the system. The maximum number of + to number of partitions 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 2 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.2.1 virtualDiskPartitionEntry OBJECT-TYPE SYNTAX VirtualDiskPartitionEntry @@ -6203,9 +6376,9 @@ INDEX { virtualDiskPartitionNumber } ::= { virtualDiskPartitionTable 1 } - + VirtualDiskPartitionEntry ::= - SEQUENCE { + SEQUENCE { virtualDiskPartitionNumber INTEGER, virtualDiskPartitionDeviceName @@ -6229,7 +6402,7 @@ "Instance number of this partition entry" ::= { virtualDiskPartitionEntry 1 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.2.1.2 virtualDiskPartitionDeviceName OBJECT-TYPE SYNTAX OCTET STRING @@ -6239,7 +6412,7 @@ "Device name of the partition given by the operating system." ::= { virtualDiskPartitionEntry 2 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.2.1.3 virtualDiskPartitionState OBJECT-TYPE SYNTAX INTEGER @@ -6259,7 +6432,7 @@ 4: Failed - Mapped cache disk has failed." ::= { virtualDiskPartitionEntry 3 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.2.1.4 virtualDiskPartitionSize OBJECT-TYPE SYNTAX INTEGER @@ -6269,7 +6442,7 @@ "Size of the Partition in GB." ::= { virtualDiskPartitionEntry 4 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.2.1.5 virtualDiskPartitionFluidCacheStatus OBJECT-TYPE SYNTAX OCTET STRING @@ -6280,7 +6453,7 @@ " ::= { virtualDiskPartitionEntry 5 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.2.1.6 virtualDiskPartitionNexusID OBJECT-TYPE SYNTAX DisplayString @@ -6290,20 +6463,20 @@ "Durable unique ID for this partition. This comprises the controllerID, virtualDisk ID and hash mapped WWN number of this partition" ::= { virtualDiskPartitionEntry 6 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.4 fluidCacheTable OBJECT-TYPE SYNTAX SEQUENCE OF FluidCacheEntry ACCESS not-accessible STATUS mandatory DESCRIPTION - "A table of managed FluidCache. The number of entries is related to FluidCache discovered in the system. + "A table of managed FluidCache. The number of entries is related to FluidCache 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 4 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.4.1 fluidCacheEntry OBJECT-TYPE SYNTAX FluidCacheEntry @@ -6316,9 +6489,9 @@ INDEX { fluidCacheNumber } ::= { fluidCacheTable 1 } - + FluidCacheEntry ::= - SEQUENCE { + SEQUENCE { fluidCacheNumber INTEGER, fluidCacheName @@ -6362,7 +6535,7 @@ "Instance number of this fluid cache entry" ::= { fluidCacheEntry 1 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.4.1.2 fluidCacheName OBJECT-TYPE SYNTAX OCTET STRING @@ -6372,7 +6545,7 @@ "The name of the fluidcache in this subsystem as represented in Storage Management. " ::= { fluidCacheEntry 2 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.4.1.3 fluidCacheLicenseState OBJECT-TYPE SYNTAX OCTET STRING @@ -6382,7 +6555,7 @@ "License state of the associated fluid cache subsystem" ::= { fluidCacheEntry 3 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.4.1.4 fluidCacheLicenseValidity OBJECT-TYPE SYNTAX INTEGER @@ -6393,7 +6566,7 @@ Incase of site wide license, value '0' should be read as 'Not Applicable'" ::= { fluidCacheEntry 4 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.4.1.5 fluidCacheLicenseEntitlementID OBJECT-TYPE SYNTAX OCTET STRING @@ -6403,7 +6576,7 @@ "Indiactes the Entitlement Identifier for the license of the fluid cache subsystem" ::= { fluidCacheEntry 5 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.4.1.6 fluidCacheLicenseDuration OBJECT-TYPE SYNTAX OCTET STRING @@ -6413,7 +6586,7 @@ "Indicates the duration of the the license validity" ::= { fluidCacheEntry 6 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.4.1.7 fluidCacheLicenseCapacity OBJECT-TYPE SYNTAX OCTET STRING @@ -6423,7 +6596,7 @@ "Indicates the capacity of the license of fluidcache subsystem" ::= { fluidCacheEntry 7 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.4.1.8 fluidCacheLicenseRemaining OBJECT-TYPE SYNTAX OCTET STRING @@ -6433,7 +6606,7 @@ "Indicates the remaining days of the license validity" ::= { fluidCacheEntry 8 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.4.1.9 fluidCacheLicenseType OBJECT-TYPE SYNTAX OCTET STRING @@ -6443,7 +6616,7 @@ "Indicates the type of the license of the fluidcache subsystem" ::= { fluidCacheEntry 9 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.4.1.10 fluidCacheLicenseVendor OBJECT-TYPE SYNTAX OCTET STRING @@ -6453,7 +6626,7 @@ "Indicates the license vendor for the fluidcache subsystem" ::= { fluidCacheEntry 10 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.4.1.11 fluidCacheLicenseProductId OBJECT-TYPE SYNTAX OCTET STRING @@ -6463,7 +6636,7 @@ "Indicates the product ID of the license of the fluidcache susbsytem" ::= { fluidCacheEntry 11 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.4.1.12 fluidCacheLicenseDateSold OBJECT-TYPE SYNTAX OCTET STRING @@ -6473,7 +6646,7 @@ "Indicates the date on which the license for the fluidcache subsystem is sold" ::= { fluidCacheEntry 12 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.4.1.13 fluidCacheLicenseGeneration OBJECT-TYPE SYNTAX OCTET STRING @@ -6483,7 +6656,7 @@ "Indicates the generation of the license for the fluidcache subsystem" ::= { fluidCacheEntry 13 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.4.1.14 fluidCacheLicenseFeatureID OBJECT-TYPE SYNTAX OCTET STRING @@ -6493,7 +6666,7 @@ "Indicates the license feature ID of the fluidcache subsystem" ::= { fluidCacheEntry 14 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.4.1.15 fluidCacheLicenseFeatureDescription OBJECT-TYPE SYNTAX OCTET STRING @@ -6503,7 +6676,7 @@ "Provides the description of the license feature of fluidcache subsystem" ::= { fluidCacheEntry 15 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.4.1.16 fluidCacheNexus OBJECT-TYPE SYNTAX OCTET STRING @@ -6513,26 +6686,30 @@ "Indicates the unique ID of the fludicache component" ::= { fluidCacheEntry 16 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.5 fluidCacheDiskTable OBJECT-TYPE SYNTAX SEQUENCE OF FluidCacheDiskEntry ACCESS not-accessible STATUS mandatory + DESCRIPTION + "Indicates the Disk Table of the fludicache component" ::= { logicalDevices 5 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.5.1 fluidCacheDiskEntry OBJECT-TYPE SYNTAX FluidCacheDiskEntry ACCESS not-accessible STATUS mandatory + DESCRIPTION + "Indicates the Disk Number of the fludicache component" INDEX { fluidCacheDiskNumber } ::= { fluidCacheDiskTable 1 } - + FluidCacheDiskEntry ::= - SEQUENCE { + SEQUENCE { fluidCacheDiskNumber INTEGER, fluidCacheDiskName @@ -6564,7 +6741,7 @@ "Instance number of the fluidCacheDisk entry" ::= { fluidCacheDiskEntry 1 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.5.1.2 fluidCacheDiskName OBJECT-TYPE SYNTAX OCTET STRING @@ -6574,7 +6751,7 @@ "Name of the Fluid Cache Disk Name as seen by storage management" ::= { fluidCacheDiskEntry 2 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.5.1.3 fluidCacheDiskState OBJECT-TYPE SYNTAX INTEGER @@ -6582,13 +6759,13 @@ STATUS mandatory DESCRIPTION "State of the FluidCacheDisk entry - Valid values are + Valid values are 2 - Active, otherwise Inactive - + " ::= { fluidCacheDiskEntry 3 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.5.1.4 fluidCacheDiskBackendDeviceType OBJECT-TYPE SYNTAX INTEGER @@ -6601,7 +6778,7 @@ 791 denotes Partition" ::= { fluidCacheDiskEntry 4 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.5.1.5 fluidCacheDiskBackendDeviceName OBJECT-TYPE SYNTAX OCTET STRING @@ -6611,7 +6788,7 @@ "Device name of the backend device as seen by the operating system" ::= { fluidCacheDiskEntry 5 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.5.1.6 fluidCacheDiskBackendDeviceSize OBJECT-TYPE SYNTAX INTEGER @@ -6621,35 +6798,35 @@ "Size of the Backend device. Size is indicated in GB" ::= { fluidCacheDiskEntry 6 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.5.1.7 fluidCacheDiskOperatingMode OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION - "Operating mode of the FluidCache. Values are + "Operating mode of the FluidCache. Values are 0 - Writeback mode 1 - Writethrough mode 2 - PassThrough mode " ::= { fluidCacheDiskEntry 7 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.5.1.8 fluidCacheDiskConfiguredMode OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION - "Configured Mode of the FluidCache. The values are + "Configured Mode of the FluidCache. The values are 0 - Writeback mode 1 - Writethrough mode 2 - PassThrough mode " ::= { fluidCacheDiskEntry 8 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.5.1.9 fluidCacheDiskNexus OBJECT-TYPE SYNTAX OCTET STRING @@ -6659,7 +6836,7 @@ "Durable Unique ID of the fluidcache disk" ::= { fluidCacheDiskEntry 9 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.5.1.10 fluidCacheDiskStatus OBJECT-TYPE SYNTAX INTEGER @@ -6667,36 +6844,40 @@ STATUS mandatory DESCRIPTION "Severity of the fluid cache disk state. - + Possible values: 1: Other 2: Unknown - 3: OK - 4: Non-critical + 3: OK + 4: Non-critical 5: Critical 6: Non-recoverable" ::= { fluidCacheDiskEntry 10 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.6 fluidCachePoolTable OBJECT-TYPE SYNTAX SEQUENCE OF FluidCachePoolEntry ACCESS not-accessible STATUS mandatory + DESCRIPTION + "Indicates the Pool Table of the fludicache component" ::= { logicalDevices 6 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.6.1 fluidCachePoolEntry OBJECT-TYPE SYNTAX FluidCachePoolEntry ACCESS not-accessible STATUS mandatory + DESCRIPTION + "Indicates the Pool Number of the fludicache component" INDEX { fluidCachePoolNumber } ::= { fluidCachePoolTable 1 } - + FluidCachePoolEntry ::= - SEQUENCE { + SEQUENCE { fluidCachePoolNumber INTEGER, fluidCachePoolStoreCount @@ -6724,7 +6905,7 @@ "Instance number of the fluid cachepool entry" ::= { fluidCachePoolEntry 1 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.6.1.2 fluidCachePoolStoreCount OBJECT-TYPE SYNTAX INTEGER @@ -6734,7 +6915,7 @@ "Number of flash devices that are part of the fluidcache pool" ::= { fluidCachePoolEntry 2 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.6.1.3 fluidCachePoolUUID OBJECT-TYPE SYNTAX OCTET STRING @@ -6744,7 +6925,7 @@ "UUID of the fluidcache pool" ::= { fluidCachePoolEntry 3 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.6.1.4 fluidCachePoolLicenseState OBJECT-TYPE SYNTAX DisplayString @@ -6756,7 +6937,7 @@ " ::= { fluidCachePoolEntry 4 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.6.1.5 fluidCachePoolSize OBJECT-TYPE SYNTAX INTEGER @@ -6766,7 +6947,7 @@ "Size of the fluidcache pool in GiB" ::= { fluidCachePoolEntry 5 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.6.1.6 fluidCachePoolHighAvailabilityState OBJECT-TYPE SYNTAX OCTET STRING @@ -6776,7 +6957,7 @@ "Indicates if the fluidcache pool is operating in high availability mode." ::= { fluidCachePoolEntry 6 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.6.1.7 fluidCachePoolNexus OBJECT-TYPE SYNTAX OCTET STRING @@ -6786,7 +6967,7 @@ "Durable unique ID of the fluidcache pool entry" ::= { fluidCachePoolEntry 7 } - + -- 1.3.6.1.4.1.674.10893.1.20.140.6.1.8 fluidCachePoolStatus OBJECT-TYPE SYNTAX INTEGER @@ -6794,21 +6975,21 @@ STATUS mandatory DESCRIPTION "Severity of the fluid cache pool table state. - + Possible values: 1: Other 2: Unknown - 3: OK - 4: Non-critical + 3: OK + 4: Non-critical 5: Critical 6: Non-recoverable" ::= { fluidCachePoolEntry 8 } - + -- 1.3.6.1.4.1.674.10893.1.20.200 storageManagementEvent OBJECT IDENTIFIER ::= { storageManagement 200 } - + -- 1.3.6.1.4.1.674.10893.1.20.200.1 messageIDEvent OBJECT-TYPE SYNTAX INTEGER @@ -6818,7 +6999,7 @@ "0200.0001 Storage Management alert (event) message number." ::= { storageManagementEvent 1 } - + -- 1.3.6.1.4.1.674.10893.1.20.200.2 descriptionEvent OBJECT-TYPE SYNTAX DisplayString (SIZE (1..64)) @@ -6828,7 +7009,7 @@ "0200.0002 Storage Management event message text describing the alert." ::= { storageManagementEvent 2 } - + -- 1.3.6.1.4.1.674.10893.1.20.200.3 locationEvent OBJECT-TYPE SYNTAX DisplayString @@ -6838,7 +7019,7 @@ "0200.0003 Additional information identifying the location of the object causing the alert." ::= { storageManagementEvent 3 } - + -- 1.3.6.1.4.1.674.10893.1.20.200.4 objectNameEvent OBJECT-TYPE SYNTAX DisplayString @@ -6848,7 +7029,7 @@ "0200.0004 Name of the object as represented in Storage Management causing the alert." ::= { storageManagementEvent 4 } - + -- 1.3.6.1.4.1.674.10893.1.20.200.5 objectOIDEvent OBJECT-TYPE SYNTAX DisplayString (SIZE (1..64)) @@ -6858,7 +7039,7 @@ "0200.0005 MIB OID of the object causing the alert." ::= { storageManagementEvent 5 } - + -- 1.3.6.1.4.1.674.10893.1.20.200.6 objectNexusEvent OBJECT-TYPE SYNTAX DisplayString (SIZE (1..64)) @@ -6868,7 +7049,7 @@ "0200.0006 Durable, unique ID of the object causing the alert." ::= { storageManagementEvent 6 } - + -- 1.3.6.1.4.1.674.10893.1.20.200.7 currentStatusEvent OBJECT-TYPE SYNTAX DellStatus @@ -6878,7 +7059,7 @@ "0200.0007 Current status of object causing the alert, if applicable." ::= { storageManagementEvent 7 } - + -- 1.3.6.1.4.1.674.10893.1.20.200.8 previousStatusEvent OBJECT-TYPE SYNTAX DellStatus @@ -6888,7 +7069,7 @@ "0200.0008 Previous status of object causing the alert if applicable." ::= { storageManagementEvent 8 } - + -- 1.3.6.1.4.1.674.10893.1.20.200.9 enhancedMessageIDEvent OBJECT-TYPE SYNTAX DisplayString @@ -6898,7 +7079,7 @@ "0200.0001 Enhanced Storage Management Message ID." ::= { storageManagementEvent 9 } - + -- 1.3.6.1.4.1.674.10893.1.20.200.10 systemFQDNEvent OBJECT-TYPE SYNTAX DisplayString @@ -6908,7 +7089,7 @@ "0200.0008 System FQDN of object causing the alert if applicable." ::= { storageManagementEvent 10 } - + -- 1.3.6.1.4.1.674.10893.1.20.200.11 serviceTagEvent OBJECT-TYPE SYNTAX DisplayString @@ -6918,7 +7099,7 @@ "0200.0008 Service Tag of object causing the alert if applicable." ::= { storageManagementEvent 11 } - + -- 1.3.6.1.4.1.674.10893.1.20.200.12 chassisServiceTagEvent OBJECT-TYPE SYNTAX DisplayString @@ -6928,16 +7109,16 @@ "0200.0008 Chassis Service Tag of object causing the alert if applicable." ::= { storageManagementEvent 12 } - - + + -- -- Trap definitions -- - - alertStorageManagementInformation TRAP-TYPE + + alertStorageManagementInformation TRAP-TYPE ENTERPRISE storageManagementEvent VARIABLES { messageIDEvent, descriptionEvent } - DESCRIPTION + DESCRIPTION "Storage Management Information There is no global status change associated with this trap." --#TYPE "Storage Management Event: Storage Management Information" @@ -6948,10 +7129,10 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 101 - alertStorageManagementNormal TRAP-TYPE + alertStorageManagementNormal TRAP-TYPE ENTERPRISE storageManagementEvent VARIABLES { messageIDEvent, descriptionEvent } - DESCRIPTION + DESCRIPTION "There is no global status change associated with this trap." --#TYPE "Storage Management Event: Storage Management Normal" --#SEVERITY INFORMATIONAL @@ -6961,10 +7142,10 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 102 - alertStorageManagementWarning TRAP-TYPE + alertStorageManagementWarning TRAP-TYPE ENTERPRISE storageManagementEvent VARIABLES { messageIDEvent, descriptionEvent } - DESCRIPTION + DESCRIPTION "Storage Management has detected a device independent warning condition. There is no global status change associated with this trap." --#TYPE "Storage Management Event: Storage Management Warning" @@ -6975,10 +7156,10 @@ --#STATE DEGRADED --#STATUS MANDATORY ::= 103 - alertStorageManagementFailure TRAP-TYPE + alertStorageManagementFailure TRAP-TYPE ENTERPRISE storageManagementEvent VARIABLES { messageIDEvent, descriptionEvent } - DESCRIPTION + DESCRIPTION "Storage Management has detected a device independent error condition. There is no global status change associated with this trap." --#TYPE "Storage Management Event: Storage Management Failure" @@ -6989,10 +7170,10 @@ --#STATE FAILED --#STATUS MANDATORY ::= 104 - alertStorageManagementNonRecoverable TRAP-TYPE + alertStorageManagementNonRecoverable TRAP-TYPE ENTERPRISE storageManagementEvent VARIABLES { messageIDEvent, descriptionEvent } - DESCRIPTION + DESCRIPTION "Storage Management has detected a device independent non-recoverable condition. There is no global status change associated with this trap." --#TYPE "Storage Management Event: Storage Management Non-recoverable" @@ -7003,11 +7184,11 @@ --#STATE FAILED --#STATUS MANDATORY ::= 105 - alertControllerInformation TRAP-TYPE + alertControllerInformation TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Controller information." --#TYPE "Storage Management Event: Controller Information" --#SEVERITY INFORMATIONAL @@ -7017,11 +7198,11 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 751 - alertControllerNormal TRAP-TYPE + alertControllerNormal TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Controller has returned to normal." --#TYPE "Storage Management Event: Controller Normal" --#SEVERITY INFORMATIONAL @@ -7031,11 +7212,11 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 752 - alertControllerWarning TRAP-TYPE + alertControllerWarning TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Controller warning." --#TYPE "Storage Management Event: Controller Warning" --#SEVERITY MINOR @@ -7045,11 +7226,11 @@ --#STATE DEGRADED --#STATUS MANDATORY ::= 753 - alertControllerFailure TRAP-TYPE + alertControllerFailure TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Controller failure." --#TYPE "Storage Management Event: Controller Failure" --#SEVERITY CRITICAL @@ -7059,11 +7240,11 @@ --#STATE FAILED --#STATUS MANDATORY ::= 754 - alertControllerNonRecoverable TRAP-TYPE + alertControllerNonRecoverable TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Controller is non-recoverable." --#TYPE "Storage Management Event: Controller Non-recoverable" --#SEVERITY CRITICAL @@ -7073,11 +7254,11 @@ --#STATE FAILED --#STATUS MANDATORY ::= 755 - alertChannelInformation TRAP-TYPE + alertChannelInformation TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Channel information." --#TYPE "Storage Management Event: Channel Information" --#SEVERITY INFORMATIONAL @@ -7087,11 +7268,11 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 801 - alertChannelNormal TRAP-TYPE + alertChannelNormal TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Channel has returned to normal." --#TYPE "Storage Management Event: Channel Normal" --#SEVERITY INFORMATIONAL @@ -7101,11 +7282,11 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 802 - alertChannelWarning TRAP-TYPE + alertChannelWarning TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Channel warning." --#TYPE "Storage Management Event: Channel Warning" --#SEVERITY MINOR @@ -7115,11 +7296,11 @@ --#STATE DEGRADED --#STATUS MANDATORY ::= 803 - alertChannelFailure TRAP-TYPE + alertChannelFailure TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Channel failure." --#TYPE "Storage Management Event: Channel Failure" --#SEVERITY CRITICAL @@ -7129,11 +7310,11 @@ --#STATE FAILED --#STATUS MANDATORY ::= 804 - alertChannelNonRecoverable TRAP-TYPE + alertChannelNonRecoverable TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Channel is non-recoverable." --#TYPE "Storage Management Event: Channel Non-recoverable" --#SEVERITY CRITICAL @@ -7143,11 +7324,11 @@ --#STATE FAILED --#STATUS MANDATORY ::= 805 - alertEnclosureInformation TRAP-TYPE + alertEnclosureInformation TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Enclosure information." --#TYPE "Storage Management Event: Enclosure Information" --#SEVERITY INFORMATIONAL @@ -7157,11 +7338,11 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 851 - alertEnclosureNormal TRAP-TYPE + alertEnclosureNormal TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Enclosure has returned to normal." --#TYPE "Storage Management Event: Enclosure Normal" --#SEVERITY INFORMATIONAL @@ -7171,11 +7352,11 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 852 - alertEnclosureWarning TRAP-TYPE + alertEnclosureWarning TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Enclosure warning." --#TYPE "Storage Management Event: Enclosure Warning" --#SEVERITY MINOR @@ -7185,11 +7366,11 @@ --#STATE DEGRADED --#STATUS MANDATORY ::= 853 - alertEnclosureFailure TRAP-TYPE + alertEnclosureFailure TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Enclosure failure." --#TYPE "Storage Management Event: Enclosure Failure" --#SEVERITY CRITICAL @@ -7199,11 +7380,11 @@ --#STATE FAILED --#STATUS MANDATORY ::= 854 - alertEnclosureNonRecoverable TRAP-TYPE + alertEnclosureNonRecoverable TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Enclosure is non-recoverable." --#TYPE "Storage Management Event: Enclosure Non-recoverable" --#SEVERITY CRITICAL @@ -7213,11 +7394,11 @@ --#STATE FAILED --#STATUS MANDATORY ::= 855 - alertArrayDiskInformation TRAP-TYPE + alertArrayDiskInformation TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Array disk information." --#TYPE "Storage Management Event: Array Disk Information" --#SEVERITY INFORMATIONAL @@ -7227,11 +7408,11 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 901 - alertArrayDiskNormal TRAP-TYPE + alertArrayDiskNormal TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Array disk has returned to normal." --#TYPE "Storage Management Event: Array Disk Normal" --#SEVERITY INFORMATIONAL @@ -7241,11 +7422,11 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 902 - alertArrayDiskWarning TRAP-TYPE + alertArrayDiskWarning TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Array disk warning." --#TYPE "Storage Management Event: Array Disk Warning" --#SEVERITY MINOR @@ -7255,11 +7436,11 @@ --#STATE DEGRADED --#STATUS MANDATORY ::= 903 - alertArrayDiskFailure TRAP-TYPE + alertArrayDiskFailure TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Array disk failure." --#TYPE "Storage Management Event: Array Disk Failure" --#SEVERITY CRITICAL @@ -7269,11 +7450,11 @@ --#STATE FAILED --#STATUS MANDATORY ::= 904 - alertArrayDiskNonRecoverable TRAP-TYPE + alertArrayDiskNonRecoverable TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Array disk is non-recoverable." --#TYPE "Storage Management Event: Array Disk Non-recoverable" --#SEVERITY CRITICAL @@ -7283,11 +7464,11 @@ --#STATE FAILED --#STATUS MANDATORY ::= 905 - alertEMMInformation TRAP-TYPE + alertEMMInformation TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "EMM information." --#TYPE "Storage Management Event: EMM Information" --#SEVERITY INFORMATIONAL @@ -7297,11 +7478,11 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 951 - alertEMMNormal TRAP-TYPE + alertEMMNormal TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "EMM has returned to normal." --#TYPE "Storage Management Event: EMM Normal" --#SEVERITY INFORMATIONAL @@ -7311,11 +7492,11 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 952 - alertEMMWarning TRAP-TYPE + alertEMMWarning TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "EMM warning." --#TYPE "Storage Management Event: EMM Warning" --#SEVERITY MINOR @@ -7325,11 +7506,11 @@ --#STATE DEGRADED --#STATUS MANDATORY ::= 953 - alertEMMFailure TRAP-TYPE + alertEMMFailure TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "EMM failure." --#TYPE "Storage Management Event: EMM Failure" --#SEVERITY CRITICAL @@ -7339,11 +7520,11 @@ --#STATE FAILED --#STATUS MANDATORY ::= 954 - alertEMMNonRecoverable TRAP-TYPE + alertEMMNonRecoverable TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "EMM is non-recoverable." --#TYPE "Storage Management Event: EMM Non-recoverable" --#SEVERITY CRITICAL @@ -7353,11 +7534,11 @@ --#STATE FAILED --#STATUS MANDATORY ::= 955 - alertPowerSupplyInformation TRAP-TYPE + alertPowerSupplyInformation TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Power supply information." --#TYPE "Storage Management Event: Power Supply Information" --#SEVERITY INFORMATIONAL @@ -7367,11 +7548,11 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 1001 - alertPowerSupplyNormal TRAP-TYPE + alertPowerSupplyNormal TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Power supply has returned to normal." --#TYPE "Storage Management Event: Power Supply Normal" --#SEVERITY INFORMATIONAL @@ -7381,11 +7562,11 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 1002 - alertPowerSupplyWarning TRAP-TYPE + alertPowerSupplyWarning TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Power supply warning." --#TYPE "Storage Management Event: Power Supply Warning" --#SEVERITY MINOR @@ -7395,11 +7576,11 @@ --#STATE DEGRADED --#STATUS MANDATORY ::= 1003 - alertPowerSupplyFailure TRAP-TYPE + alertPowerSupplyFailure TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Power supply failure." --#TYPE "Storage Management Event: Power Supply Failure" --#SEVERITY CRITICAL @@ -7409,11 +7590,11 @@ --#STATE FAILED --#STATUS MANDATORY ::= 1004 - alertPowerSupplyNonRecoverable TRAP-TYPE + alertPowerSupplyNonRecoverable TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Power supply is non-recoverable." --#TYPE "Storage Management Event: Power Supply Non-recoverable" --#SEVERITY CRITICAL @@ -7423,11 +7604,11 @@ --#STATE FAILED --#STATUS MANDATORY ::= 1005 - alertTemperatureProbeInformation TRAP-TYPE + alertTemperatureProbeInformation TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Temperature probe information." --#TYPE "Storage Management Event: Temperature Probe Information" --#SEVERITY INFORMATIONAL @@ -7437,11 +7618,11 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 1051 - alertTemperatureProbeNormal TRAP-TYPE + alertTemperatureProbeNormal TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Temperature probe has returned to normal." --#TYPE "Storage Management Event: Temperature Probe Normal" --#SEVERITY INFORMATIONAL @@ -7451,11 +7632,11 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 1052 - alertTemperatureProbeWarning TRAP-TYPE + alertTemperatureProbeWarning TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Temperature probe warning." --#TYPE "Storage Management Event: Temperature Probe Warning" --#SEVERITY MINOR @@ -7465,11 +7646,11 @@ --#STATE DEGRADED --#STATUS MANDATORY ::= 1053 - alertTemperatureProbeFailure TRAP-TYPE + alertTemperatureProbeFailure TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Temperature probe failure." --#TYPE "Storage Management Event: Temperature Probe Failure" --#SEVERITY CRITICAL @@ -7479,11 +7660,11 @@ --#STATE FAILED --#STATUS MANDATORY ::= 1054 - alertTemperatureProbeNonRecoverable TRAP-TYPE + alertTemperatureProbeNonRecoverable TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Temperature probe is non-recoverable." --#TYPE "Storage Management Event: Temperature Probe Non-recoverable" --#SEVERITY CRITICAL @@ -7493,11 +7674,11 @@ --#STATE FAILED --#STATUS MANDATORY ::= 1055 - alertFanInformation TRAP-TYPE + alertFanInformation TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Fan information." --#TYPE "Storage Management Event: Fan Information" --#SEVERITY INFORMATIONAL @@ -7507,11 +7688,11 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 1101 - alertFanNormal TRAP-TYPE + alertFanNormal TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Fan has returned to normal." --#TYPE "Storage Management Event: Fan Normal" --#SEVERITY INFORMATIONAL @@ -7521,11 +7702,11 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 1102 - alertFanWarning TRAP-TYPE + alertFanWarning TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Fan warning." --#TYPE "Storage Management Event: Fan Warning" --#SEVERITY MINOR @@ -7535,11 +7716,11 @@ --#STATE DEGRADED --#STATUS MANDATORY ::= 1103 - alertFanFailure TRAP-TYPE + alertFanFailure TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Fan failure." --#TYPE "Storage Management Event: Fan Failure" --#SEVERITY CRITICAL @@ -7549,11 +7730,11 @@ --#STATE FAILED --#STATUS MANDATORY ::= 1104 - alertFanNonRecoverable TRAP-TYPE + alertFanNonRecoverable TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Fan is non-recoverable." --#TYPE "Storage Management Event: Fan Non-recoverable" --#SEVERITY CRITICAL @@ -7563,11 +7744,11 @@ --#STATE FAILED --#STATUS MANDATORY ::= 1105 - alertBatteryInformation TRAP-TYPE + alertBatteryInformation TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Battery information." --#TYPE "Storage Management Event: Battery Information" --#SEVERITY INFORMATIONAL @@ -7577,11 +7758,11 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 1151 - alertBatteryNormal TRAP-TYPE + alertBatteryNormal TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Battery has returned to normal." --#TYPE "Storage Management Event: Battery Normal" --#SEVERITY INFORMATIONAL @@ -7591,11 +7772,11 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 1152 - alertBatteryWarning TRAP-TYPE + alertBatteryWarning TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Battery warning." --#TYPE "Storage Management Event: Battery Warning" --#SEVERITY MINOR @@ -7605,11 +7786,11 @@ --#STATE DEGRADED --#STATUS MANDATORY ::= 1153 - alertBatteryFailure TRAP-TYPE + alertBatteryFailure TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Battery failure." --#TYPE "Storage Management Event: Battery Failure" --#SEVERITY CRITICAL @@ -7619,11 +7800,11 @@ --#STATE FAILED --#STATUS MANDATORY ::= 1154 - alertBatteryNonRecoverable TRAP-TYPE + alertBatteryNonRecoverable TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Battery is non-recoverable." --#TYPE "Storage Management Event: Battery Non-recoverable" --#SEVERITY CRITICAL @@ -7633,11 +7814,11 @@ --#STATE FAILED --#STATUS MANDATORY ::= 1155 - alertVirtualDiskInformation TRAP-TYPE + alertVirtualDiskInformation TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Virtual disk information." --#TYPE "Storage Management Event: Virtual Disk Information" --#SEVERITY INFORMATIONAL @@ -7647,11 +7828,11 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 1201 - alertVirtualDiskNormal TRAP-TYPE + alertVirtualDiskNormal TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Virtual disk has returned to normal." --#TYPE "Storage Management Event: Virtual Disk Normal" --#SEVERITY INFORMATIONAL @@ -7661,11 +7842,11 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 1202 - alertVirtualDiskWarning TRAP-TYPE + alertVirtualDiskWarning TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Virtual disk warning." --#TYPE "Storage Management Event: Virtual Disk Warning" --#SEVERITY MINOR @@ -7675,11 +7856,11 @@ --#STATE DEGRADED --#STATUS MANDATORY ::= 1203 - alertVirtualDiskFailure TRAP-TYPE + alertVirtualDiskFailure TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Virtual disk failure." --#TYPE "Storage Management Event: Virtual Disk Failure" --#SEVERITY CRITICAL @@ -7689,11 +7870,11 @@ --#STATE FAILED --#STATUS MANDATORY ::= 1204 - alertVirtualDiskNonRecoverable TRAP-TYPE + alertVirtualDiskNonRecoverable TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Virtual disk is non-recoverable." --#TYPE "Storage Management Event: Virtual Disk Non-recoverable" --#SEVERITY CRITICAL @@ -7703,11 +7884,11 @@ --#STATE FAILED --#STATUS MANDATORY ::= 1205 - alertRedundancyNormal TRAP-TYPE + alertRedundancyNormal TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Redundancy has returned to normal." --#TYPE "Storage Management Event: Redundancy Normal" --#SEVERITY INFORMATIONAL @@ -7717,11 +7898,11 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 1304 - alertRedundancyDegraded TRAP-TYPE + alertRedundancyDegraded TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Redundancy has been degraded." --#TYPE "Storage Management Event: Redundancy Degraded" --#SEVERITY MINOR @@ -7731,11 +7912,11 @@ --#STATE DEGRADED --#STATUS MANDATORY ::= 1305 - alertRedundancyLost TRAP-TYPE + alertRedundancyLost TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Redundancy has been lost." --#TYPE "Storage Management Event: Redundancy Lost" --#SEVERITY MINOR @@ -7745,11 +7926,11 @@ --#STATE DEGRADED --#STATUS MANDATORY ::= 1306 - alertFluidCacheDiskInformation TRAP-TYPE + alertFluidCacheDiskInformation TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Fluid Cache Disk Information" --#TYPE "Storage Management Event: Fluid Cache Disk Information" --#SEVERITY INFORMATIONAL @@ -7759,11 +7940,11 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 1401 - alertfluidCacheDiskWarning TRAP-TYPE + alertfluidCacheDiskWarning TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Fluid Cache Disk warning." --#TYPE "Storage Management Event: Fluid Cache Disk Warning" --#SEVERITY MINOR @@ -7773,11 +7954,11 @@ --#STATE DEGRADED --#STATUS MANDATORY ::= 1403 - alertFluidCacheDisklFailure TRAP-TYPE + alertFluidCacheDisklFailure TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Fluid Cache Disk failure." --#TYPE "Storage Management Event: Fluid Cache Disk Failure" --#SEVERITY CRITICAL @@ -7787,11 +7968,11 @@ --#STATE FAILED --#STATUS MANDATORY ::= 1404 - alertVirtualDiskPartitionInformation TRAP-TYPE + alertVirtualDiskPartitionInformation TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Virtual Disk Partition Information" --#TYPE "Storage Management Event: Virtual Disk Partition Information" --#SEVERITY INFORMATIONAL @@ -7801,11 +7982,11 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 1501 - alertVirtualDiskPartitionWarning TRAP-TYPE + alertVirtualDiskPartitionWarning TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Virtual Disk Partition warning." --#TYPE "Storage Management Event: Virtual Disk Partition Warning" --#SEVERITY MINOR @@ -7815,11 +7996,11 @@ --#STATE DEGRADED --#STATUS MANDATORY ::= 1503 - alertVirtualDiskPartitionFailure TRAP-TYPE + alertVirtualDiskPartitionFailure TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Virtual Disk Partition failure." --#TYPE "Storage Management Event: Virtual Disk Partition Failure" --#SEVERITY CRITICAL @@ -7829,11 +8010,11 @@ --#STATE FAILED --#STATUS MANDATORY ::= 1504 - alertFluidCacheInformation TRAP-TYPE + alertFluidCacheInformation TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Fluid Cache Information" --#TYPE "Storage Management Event: Fluid Cache Information" --#SEVERITY INFORMATIONAL @@ -7843,11 +8024,11 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 1601 - alertfluidCacheWarning TRAP-TYPE + alertfluidCacheWarning TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Fluid Cache warning." --#TYPE "Storage Management Event: Fluid Cache Warning" --#SEVERITY MINOR @@ -7857,11 +8038,11 @@ --#STATE DEGRADED --#STATUS MANDATORY ::= 1603 - alertFluidCacheFailure TRAP-TYPE + alertFluidCacheFailure TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Fluid Cache failure." --#TYPE "Storage Management Event: Fluid Cache Failure" --#SEVERITY CRITICAL @@ -7871,11 +8052,11 @@ --#STATE FAILED --#STATUS MANDATORY ::= 1604 - alertFluidCachePoolInformation TRAP-TYPE + alertFluidCachePoolInformation TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Fluid Cache Pool Information" --#TYPE "Storage Management Event: Fluid Cache Pool Information" --#SEVERITY INFORMATIONAL @@ -7885,11 +8066,11 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 1701 - alertfluidCachePoolWarning TRAP-TYPE + alertfluidCachePoolWarning TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Fluid Cache Pool warning." --#TYPE "Storage Management Event: Fluid Cache Pool Warning" --#SEVERITY MINOR @@ -7899,11 +8080,11 @@ --#STATE DEGRADED --#STATUS MANDATORY ::= 1703 - alertFluidCachePoolFailure TRAP-TYPE + alertFluidCachePoolFailure TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION + DESCRIPTION "Fluid Cache Pool failure." --#TYPE "Storage Management Event: Fluid Cache Pool Failure" --#SEVERITY CRITICAL @@ -7913,11 +8094,11 @@ --#STATE FAILED --#STATUS MANDATORY ::= 1704 - alertEEMIStorageManagementInformation TRAP-TYPE + alertEEMIStorageManagementInformation TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, + VARIABLES { messageIDEvent, descriptionEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Storage Management Information There is no global status change associated with this trap." --#TYPE "Storage Management Event: Storage Management Information" @@ -7928,11 +8109,11 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 10100 - alertEEMIStorageManagementNormal TRAP-TYPE + alertEEMIStorageManagementNormal TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, + VARIABLES { messageIDEvent, descriptionEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "There is no global status change associated with this trap." --#TYPE "Storage Management Event: Storage Management Normal" --#SEVERITY INFORMATIONAL @@ -7942,11 +8123,11 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 10200 - alertEEMIStorageManagementWarning TRAP-TYPE + alertEEMIStorageManagementWarning TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, + VARIABLES { messageIDEvent, descriptionEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Storage Management has detected a device independent warning condition. There is no global status change associated with this trap." --#TYPE "Storage Management Event: Storage Management Warning" @@ -7957,11 +8138,11 @@ --#STATE DEGRADED --#STATUS MANDATORY ::= 10300 - alertEEMIStorageManagementFailure TRAP-TYPE + alertEEMIStorageManagementFailure TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, + VARIABLES { messageIDEvent, descriptionEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Storage Management has detected a device independent error condition. There is no global status change associated with this trap." --#TYPE "Storage Management Event: Storage Management Failure" @@ -7972,11 +8153,11 @@ --#STATE FAILED --#STATUS MANDATORY ::= 10400 - alertEEMIStorageManagementNonRecoverable TRAP-TYPE + alertEEMIStorageManagementNonRecoverable TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, + VARIABLES { messageIDEvent, descriptionEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Storage Management has detected a device independent non-recoverable condition. There is no global status change associated with this trap." --#TYPE "Storage Management Event: Storage Management Non-recoverable" @@ -7987,12 +8168,12 @@ --#STATE FAILED --#STATUS MANDATORY ::= 10500 - alertEEMIControllerInformation TRAP-TYPE + alertEEMIControllerInformation TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Controller information." --#TYPE "Storage Management Event: Controller Information" --#SEVERITY INFORMATIONAL @@ -8002,12 +8183,12 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 75100 - alertEEMIControllerNormal TRAP-TYPE + alertEEMIControllerNormal TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Controller has returned to normal." --#TYPE "Storage Management Event: Controller Normal" --#SEVERITY INFORMATIONAL @@ -8017,12 +8198,12 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 75200 - alertEEMIControllerWarning TRAP-TYPE + alertEEMIControllerWarning TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Controller warning." --#TYPE "Storage Management Event: Controller Warning" --#SEVERITY MINOR @@ -8032,12 +8213,12 @@ --#STATE DEGRADED --#STATUS MANDATORY ::= 75300 - alertEEMIControllerFailure TRAP-TYPE + alertEEMIControllerFailure TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Controller failure." --#TYPE "Storage Management Event: Controller Failure" --#SEVERITY CRITICAL @@ -8047,12 +8228,12 @@ --#STATE FAILED --#STATUS MANDATORY ::= 75400 - alertEEMIControllerNonRecoverable TRAP-TYPE + alertEEMIControllerNonRecoverable TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Controller is non-recoverable." --#TYPE "Storage Management Event: Controller Non-recoverable" --#SEVERITY CRITICAL @@ -8062,12 +8243,12 @@ --#STATE FAILED --#STATUS MANDATORY ::= 75500 - alertEEMIChannelInformation TRAP-TYPE + alertEEMIChannelInformation TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Channel information." --#TYPE "Storage Management Event: Channel Information" --#SEVERITY INFORMATIONAL @@ -8077,12 +8258,12 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 80100 - alertEEMIChannelNormal TRAP-TYPE + alertEEMIChannelNormal TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Channel has returned to normal." --#TYPE "Storage Management Event: Channel Normal" --#SEVERITY INFORMATIONAL @@ -8092,12 +8273,12 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 80200 - alertEEMIChannelWarning TRAP-TYPE + alertEEMIChannelWarning TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Channel warning." --#TYPE "Storage Management Event: Channel Warning" --#SEVERITY MINOR @@ -8107,12 +8288,12 @@ --#STATE DEGRADED --#STATUS MANDATORY ::= 80300 - alertEEMIChannelFailure TRAP-TYPE + alertEEMIChannelFailure TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Channel failure." --#TYPE "Storage Management Event: Channel Failure" --#SEVERITY CRITICAL @@ -8122,12 +8303,12 @@ --#STATE FAILED --#STATUS MANDATORY ::= 80400 - alertEEMIChannelNonRecoverable TRAP-TYPE + alertEEMIChannelNonRecoverable TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Channel is non-recoverable." --#TYPE "Storage Management Event: Channel Non-recoverable" --#SEVERITY CRITICAL @@ -8137,12 +8318,12 @@ --#STATE FAILED --#STATUS MANDATORY ::= 80500 - alertEEMIEnclosureInformation TRAP-TYPE + alertEEMIEnclosureInformation TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Enclosure information." --#TYPE "Storage Management Event: Enclosure Information" --#SEVERITY INFORMATIONAL @@ -8152,12 +8333,12 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 85100 - alertEEMIEnclosureNormal TRAP-TYPE + alertEEMIEnclosureNormal TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Enclosure has returned to normal." --#TYPE "Storage Management Event: Enclosure Normal" --#SEVERITY INFORMATIONAL @@ -8167,12 +8348,12 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 85200 - alertEEMIEnclosureWarning TRAP-TYPE + alertEEMIEnclosureWarning TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Enclosure warning." --#TYPE "Storage Management Event: Enclosure Warning" --#SEVERITY MINOR @@ -8182,12 +8363,12 @@ --#STATE DEGRADED --#STATUS MANDATORY ::= 85300 - alertEEMIEnclosureFailure TRAP-TYPE + alertEEMIEnclosureFailure TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Enclosure failure." --#TYPE "Storage Management Event: Enclosure Failure" --#SEVERITY CRITICAL @@ -8197,12 +8378,12 @@ --#STATE FAILED --#STATUS MANDATORY ::= 85400 - alertEEMIEnclosureNonRecoverable TRAP-TYPE + alertEEMIEnclosureNonRecoverable TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Enclosure is non-recoverable." --#TYPE "Storage Management Event: Enclosure Non-recoverable" --#SEVERITY CRITICAL @@ -8212,12 +8393,12 @@ --#STATE FAILED --#STATUS MANDATORY ::= 85500 - alertEEMIArrayDiskInformation TRAP-TYPE + alertEEMIArrayDiskInformation TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Array disk information." --#TYPE "Storage Management Event: Array Disk Information" --#SEVERITY INFORMATIONAL @@ -8227,12 +8408,12 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 90100 - alertEEMIArrayDiskNormal TRAP-TYPE + alertEEMIArrayDiskNormal TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Array disk has returned to normal." --#TYPE "Storage Management Event: Array Disk Normal" --#SEVERITY INFORMATIONAL @@ -8242,12 +8423,12 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 90200 - alertEEMIArrayDiskWarning TRAP-TYPE + alertEEMIArrayDiskWarning TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Array disk warning." --#TYPE "Storage Management Event: Array Disk Warning" --#SEVERITY MINOR @@ -8257,12 +8438,12 @@ --#STATE DEGRADED --#STATUS MANDATORY ::= 90300 - alertEEMIArrayDiskFailure TRAP-TYPE + alertEEMIArrayDiskFailure TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Array disk failure." --#TYPE "Storage Management Event: Array Disk Failure" --#SEVERITY CRITICAL @@ -8272,12 +8453,12 @@ --#STATE FAILED --#STATUS MANDATORY ::= 90400 - alertEEMIArrayDiskNonRecoverable TRAP-TYPE + alertEEMIArrayDiskNonRecoverable TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Array disk is non-recoverable." --#TYPE "Storage Management Event: Array Disk Non-recoverable" --#SEVERITY CRITICAL @@ -8287,12 +8468,12 @@ --#STATE FAILED --#STATUS MANDATORY ::= 90500 - alertEMMEMMInformation TRAP-TYPE + alertEMMEMMInformation TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "EMM information." --#TYPE "Storage Management Event: EMM Information" --#SEVERITY INFORMATIONAL @@ -8302,12 +8483,12 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 95100 - alertEEMIEMMNormal TRAP-TYPE + alertEEMIEMMNormal TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "EMM has returned to normal." --#TYPE "Storage Management Event: EMM Normal" --#SEVERITY INFORMATIONAL @@ -8317,12 +8498,12 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 95200 - alertEEMIEMMWarning TRAP-TYPE + alertEEMIEMMWarning TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "EMM warning." --#TYPE "Storage Management Event: EMM Warning" --#SEVERITY MINOR @@ -8332,12 +8513,12 @@ --#STATE DEGRADED --#STATUS MANDATORY ::= 95300 - alertEEMIEMMFailure TRAP-TYPE + alertEEMIEMMFailure TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "EMM failure." --#TYPE "Storage Management Event: EMM Failure" --#SEVERITY CRITICAL @@ -8347,12 +8528,12 @@ --#STATE FAILED --#STATUS MANDATORY ::= 95400 - alertEEMIEMMNonRecoverable TRAP-TYPE + alertEEMIEMMNonRecoverable TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "EMM is non-recoverable." --#TYPE "Storage Management Event: EMM Non-recoverable" --#SEVERITY CRITICAL @@ -8362,12 +8543,12 @@ --#STATE FAILED --#STATUS MANDATORY ::= 95500 - alertEEMIPowerSupplyInformation TRAP-TYPE + alertEEMIPowerSupplyInformation TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Power supply information." --#TYPE "Storage Management Event: Power Supply Information" --#SEVERITY INFORMATIONAL @@ -8377,12 +8558,12 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 100100 - alertEEMIPowerSupplyNormal TRAP-TYPE + alertEEMIPowerSupplyNormal TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Power supply has returned to normal." --#TYPE "Storage Management Event: Power Supply Normal" --#SEVERITY INFORMATIONAL @@ -8392,12 +8573,12 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 100200 - alertEEMIPowerSupplyWarning TRAP-TYPE + alertEEMIPowerSupplyWarning TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Power supply warning." --#TYPE "Storage Management Event: Power Supply Warning" --#SEVERITY MINOR @@ -8407,12 +8588,12 @@ --#STATE DEGRADED --#STATUS MANDATORY ::= 100300 - alertEEMIPowerSupplyFailure TRAP-TYPE + alertEEMIPowerSupplyFailure TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Power supply failure." --#TYPE "Storage Management Event: Power Supply Failure" --#SEVERITY CRITICAL @@ -8422,12 +8603,12 @@ --#STATE FAILED --#STATUS MANDATORY ::= 100400 - alertEEMIPowerSupplyNonRecoverable TRAP-TYPE + alertEEMIPowerSupplyNonRecoverable TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Power supply is non-recoverable." --#TYPE "Storage Management Event: Power Supply Non-recoverable" --#SEVERITY CRITICAL @@ -8437,12 +8618,12 @@ --#STATE FAILED --#STATUS MANDATORY ::= 100500 - alertEEMITemperatureProbeInformation TRAP-TYPE + alertEEMITemperatureProbeInformation TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Temperature probe information." --#TYPE "Storage Management Event: Temperature Probe Information" --#SEVERITY INFORMATIONAL @@ -8452,12 +8633,12 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 105100 - alertEEMITemperatureProbeNormal TRAP-TYPE + alertEEMITemperatureProbeNormal TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Temperature probe has returned to normal." --#TYPE "Storage Management Event: Temperature Probe Normal" --#SEVERITY INFORMATIONAL @@ -8467,12 +8648,12 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 105200 - alertEEMITemperatureProbeWarning TRAP-TYPE + alertEEMITemperatureProbeWarning TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Temperature probe warning." --#TYPE "Storage Management Event: Temperature Probe Warning" --#SEVERITY MINOR @@ -8482,12 +8663,12 @@ --#STATE DEGRADED --#STATUS MANDATORY ::= 105300 - alertEEMITemperatureProbeFailure TRAP-TYPE + alertEEMITemperatureProbeFailure TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Temperature probe failure." --#TYPE "Storage Management Event: Temperature Probe Failure" --#SEVERITY CRITICAL @@ -8497,12 +8678,12 @@ --#STATE FAILED --#STATUS MANDATORY ::= 105400 - alertEEMITemperatureProbeNonRecoverable TRAP-TYPE + alertEEMITemperatureProbeNonRecoverable TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Temperature probe is non-recoverable." --#TYPE "Storage Management Event: Temperature Probe Non-recoverable" --#SEVERITY CRITICAL @@ -8512,12 +8693,12 @@ --#STATE FAILED --#STATUS MANDATORY ::= 105500 - alertEEMIFanInformation TRAP-TYPE + alertEEMIFanInformation TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Fan information." --#TYPE "Storage Management Event: Fan Information" --#SEVERITY INFORMATIONAL @@ -8527,12 +8708,12 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 110100 - alertEEMIFanNormal TRAP-TYPE + alertEEMIFanNormal TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Fan has returned to normal." --#TYPE "Storage Management Event: Fan Normal" --#SEVERITY INFORMATIONAL @@ -8542,12 +8723,12 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 110200 - alertEEMIFanWarning TRAP-TYPE + alertEEMIFanWarning TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Fan warning." --#TYPE "Storage Management Event: Fan Warning" --#SEVERITY MINOR @@ -8557,12 +8738,12 @@ --#STATE DEGRADED --#STATUS MANDATORY ::= 110300 - alertEEMIFanFailure TRAP-TYPE + alertEEMIFanFailure TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Fan failure." --#TYPE "Storage Management Event: Fan Failure" --#SEVERITY CRITICAL @@ -8572,12 +8753,12 @@ --#STATE FAILED --#STATUS MANDATORY ::= 110400 - alertEEMIFanNonRecoverable TRAP-TYPE + alertEEMIFanNonRecoverable TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Fan is non-recoverable." --#TYPE "Storage Management Event: Fan Non-recoverable" --#SEVERITY CRITICAL @@ -8587,12 +8768,12 @@ --#STATE FAILED --#STATUS MANDATORY ::= 110500 - alertEEMIBatteryInformation TRAP-TYPE + alertEEMIBatteryInformation TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Battery information." --#TYPE "Storage Management Event: Battery Information" --#SEVERITY INFORMATIONAL @@ -8602,12 +8783,12 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 115100 - alertEEMIBatteryNormal TRAP-TYPE + alertEEMIBatteryNormal TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Battery has returned to normal." --#TYPE "Storage Management Event: Battery Normal" --#SEVERITY INFORMATIONAL @@ -8617,12 +8798,12 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 115200 - alertEEMIBatteryWarning TRAP-TYPE + alertEEMIBatteryWarning TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Battery warning." --#TYPE "Storage Management Event: Battery Warning" --#SEVERITY MINOR @@ -8632,12 +8813,12 @@ --#STATE DEGRADED --#STATUS MANDATORY ::= 115300 - alertEEMIBatteryFailure TRAP-TYPE + alertEEMIBatteryFailure TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Battery failure." --#TYPE "Storage Management Event: Battery Failure" --#SEVERITY CRITICAL @@ -8647,12 +8828,12 @@ --#STATE FAILED --#STATUS MANDATORY ::= 115400 - alertEEMIBatteryNonRecoverable TRAP-TYPE + alertEEMIBatteryNonRecoverable TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Battery is non-recoverable." --#TYPE "Storage Management Event: Battery Non-recoverable" --#SEVERITY CRITICAL @@ -8662,12 +8843,12 @@ --#STATE FAILED --#STATUS MANDATORY ::= 115500 - alertEEMIVirtualDiskInformation TRAP-TYPE + alertEEMIVirtualDiskInformation TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Virtual disk information." --#TYPE "Storage Management Event: Virtual Disk Information" --#SEVERITY INFORMATIONAL @@ -8677,12 +8858,12 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 120100 - alertEEMIVirtualDiskNormal TRAP-TYPE + alertEEMIVirtualDiskNormal TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Virtual disk has returned to normal." --#TYPE "Storage Management Event: Virtual Disk Normal" --#SEVERITY INFORMATIONAL @@ -8692,12 +8873,12 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 120200 - alertEEMIVirtualDiskWarning TRAP-TYPE + alertEEMIVirtualDiskWarning TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Virtual disk warning." --#TYPE "Storage Management Event: Virtual Disk Warning" --#SEVERITY MINOR @@ -8707,12 +8888,12 @@ --#STATE DEGRADED --#STATUS MANDATORY ::= 120300 - alertEEMIVirtualDiskFailure TRAP-TYPE + alertEEMIVirtualDiskFailure TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Virtual disk failure." --#TYPE "Storage Management Event: Virtual Disk Failure" --#SEVERITY CRITICAL @@ -8722,12 +8903,12 @@ --#STATE FAILED --#STATUS MANDATORY ::= 120400 - alertEEMIVirtualDiskNonRecoverable TRAP-TYPE + alertEEMIVirtualDiskNonRecoverable TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Virtual disk is non-recoverable." --#TYPE "Storage Management Event: Virtual Disk Non-recoverable" --#SEVERITY CRITICAL @@ -8737,12 +8918,12 @@ --#STATE FAILED --#STATUS MANDATORY ::= 120500 - alertEEMIRedundancyNormal TRAP-TYPE + alertEEMIRedundancyNormal TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Redundancy has returned to normal." --#TYPE "Storage Management Event: Redundancy Normal" --#SEVERITY INFORMATIONAL @@ -8752,12 +8933,12 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 130400 - alertEEMIRedundancyDegraded TRAP-TYPE + alertEEMIRedundancyDegraded TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Redundancy has been degraded." --#TYPE "Storage Management Event: Redundancy Degraded" --#SEVERITY MINOR @@ -8767,12 +8948,12 @@ --#STATE DEGRADED --#STATUS MANDATORY ::= 130500 - alertEEMIRedundancyLost TRAP-TYPE + alertEEMIRedundancyLost TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Redundancy has been lost." --#TYPE "Storage Management Event: Redundancy Lost" --#SEVERITY MINOR @@ -8782,12 +8963,12 @@ --#STATE DEGRADED --#STATUS MANDATORY ::= 130600 - alertEEMIFluidCacheDiskInformation TRAP-TYPE + alertEEMIFluidCacheDiskInformation TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Fluid Cache Disk Information" --#TYPE "Storage Management Event: Fluid Cache Disk Information" --#SEVERITY INFORMATIONAL @@ -8797,12 +8978,12 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 140100 - alertEEMIfluidCacheDiskWarning TRAP-TYPE + alertEEMIfluidCacheDiskWarning TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Fluid Cache Disk warning." --#TYPE "Storage Management Event: Fluid Cache Disk Warning" --#SEVERITY MINOR @@ -8812,12 +8993,12 @@ --#STATE DEGRADED --#STATUS MANDATORY ::= 140300 - alertEEMIFluidCacheDisklFailure TRAP-TYPE + alertEEMIFluidCacheDisklFailure TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Fluid Cache Disk failure." --#TYPE "Storage Management Event: Fluid Cache Disk Failure" --#SEVERITY CRITICAL @@ -8827,12 +9008,12 @@ --#STATE FAILED --#STATUS MANDATORY ::= 140400 - alertEEMIVirtualDiskPartitionInformation TRAP-TYPE + alertEEMIVirtualDiskPartitionInformation TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Virtual Disk Partition Information" --#TYPE "Storage Management Event: Virtual Disk Partition Information" --#SEVERITY INFORMATIONAL @@ -8842,12 +9023,12 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 150100 - alertEEMIVirtualDiskPartitionWarning TRAP-TYPE + alertEEMIVirtualDiskPartitionWarning TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Virtual Disk Partition warning." --#TYPE "Storage Management Event: Virtual Disk Partition Warning" --#SEVERITY MINOR @@ -8857,12 +9038,12 @@ --#STATE DEGRADED --#STATUS MANDATORY ::= 150300 - alertEEMIVirtualDiskPartitionFailure TRAP-TYPE + alertEEMIVirtualDiskPartitionFailure TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Virtual Disk Partition failure." --#TYPE "Storage Management Event: Virtual Disk Partition Failure" --#SEVERITY CRITICAL @@ -8872,12 +9053,12 @@ --#STATE FAILED --#STATUS MANDATORY ::= 150400 - alertEEMIFluidCacheInformation TRAP-TYPE + alertEEMIFluidCacheInformation TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Fluid Cache Information" --#TYPE "Storage Management Event: Fluid Cache Information" --#SEVERITY INFORMATIONAL @@ -8887,12 +9068,12 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 160100 - alertEEMIfluidCacheWarning TRAP-TYPE + alertEEMIfluidCacheWarning TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Fluid Cache warning." --#TYPE "Storage Management Event: Fluid Cache Warning" --#SEVERITY MINOR @@ -8902,12 +9083,12 @@ --#STATE DEGRADED --#STATUS MANDATORY ::= 160300 - alertEEMIFluidCacheFailure TRAP-TYPE + alertEEMIFluidCacheFailure TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Fluid Cache failure." --#TYPE "Storage Management Event: Fluid Cache Failure" --#SEVERITY CRITICAL @@ -8917,12 +9098,12 @@ --#STATE FAILED --#STATUS MANDATORY ::= 160400 - alertEEMIFluidCachePoolInformation TRAP-TYPE + alertEEMIFluidCachePoolInformation TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Fluid Cache Pool Information" --#TYPE "Storage Management Event: Fluid Cache Pool Information" --#SEVERITY INFORMATIONAL @@ -8932,12 +9113,12 @@ --#STATE OPERATIONAL --#STATUS MANDATORY ::= 170100 - alertEEMIfluidCachePoolWarning TRAP-TYPE + alertEEMIfluidCachePoolWarning TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Fluid Cache Pool warning." --#TYPE "Storage Management Event: Fluid Cache Pool Warning" --#SEVERITY MINOR @@ -8947,12 +9128,12 @@ --#STATE DEGRADED --#STATUS MANDATORY ::= 170300 - alertEEMIFluidCachePoolFailure TRAP-TYPE + alertEEMIFluidCachePoolFailure TRAP-TYPE ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION + DESCRIPTION "Fluid Cache Pool failure." --#TYPE "Storage Management Event: Fluid Cache Pool Failure" --#SEVERITY CRITICAL @@ -8962,7 +9143,36 @@ --#STATE FAILED --#STATUS MANDATORY ::= 170400 - + + alertRRWEThresholdSASSATASSD TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent } + DESCRIPTION + "Storage Management Information + There is no global status change associated with this trap." +--#TYPE "Storage Management Event: Storage Management Information" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, The Remaining Rated Write Endurance Threshold for SAS and SATA SSDs is set to. %s" +--#ARGUMENTS { 0, 1 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 170401 + alertRRWEThresholdPCIeSSD TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent } + DESCRIPTION + "Storage Management Information + There is no global status change associated with this trap." +--#TYPE "Storage Management Event: Storage Management Information" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, The Remaining Rated Write Endurance Threshold for PCIe SSDs is set to. %s" +--#ARGUMENTS { 0, 1 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 170402 + END -- diff --git a/mibs/drac/IDRAC-MIB-SMIv2 b/mibs/drac/IDRAC-MIB-SMIv2 index 0b95700e0b..7d91fe4d08 100644 --- a/mibs/drac/IDRAC-MIB-SMIv2 +++ b/mibs/drac/IDRAC-MIB-SMIv2 @@ -2,8 +2,8 @@ -- -- Title: iDRAC MIB -- --- Version: 3.2 --- Date: 19 January 2015 +-- Version: 4.3 +-- Date: 24 Nov 2022 -- -- Description: This MIB defines MIB objects that make iDRAC data available -- to SNMP management applications. @@ -12,7 +12,7 @@ -- 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-2015 Dell Inc. +-- Copyright (c) 2012-2018 Dell Inc. -- All Rights Reserved. -- -- Note: The information and functionality described by this MIB file, @@ -38,10 +38,13 @@ IMPORTS MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, enterprises FROM SNMPv2-SMI TEXTUAL-CONVENTION, DisplayString - FROM SNMPv2-TC; + FROM SNMPv2-TC + OBJECT-GROUP,NOTIFICATION-GROUP + FROM SNMPv2-CONF; + outOfBandGroup MODULE-IDENTITY - LAST-UPDATED "201501190000Z" -- 19 January 2015 + LAST-UPDATED "201808210000Z" -- 21 August 2018 ORGANIZATION "Dell Inc." CONTACT-INFO "Visit the Dell Support website at: support.dell.com" @@ -51,6 +54,18 @@ outOfBandGroup MODULE-IDENTITY that iDRAC supports." -- Revision history, in reverse chronological order. + REVISION "201905310000Z" -- 31 MAY 2019 + DESCRIPTION + "Version: 3.6 + * Updated alertServerIdleTime trap" + + REVISION "201808210000Z" -- 21 August 2018 + DESCRIPTION + "Version: 3.4 + * Updated alertStorageSolidstateDrive trap. + * Updated alertInternaliDRACMemoryUnresponsive trap. + * Added new memory properties - memoryDeviceTechnology, memoryDeviceVolatileSize, memoryDeviceNonVolatilesSize, memoryDeviceCacheSize & memoryDeviceRemainingRatedWriteEndurance." + REVISION "201501190000Z" -- 19 January 2015 DESCRIPTION "Version: 3.2 @@ -111,7 +126,7 @@ outOfBandGroup MODULE-IDENTITY * Added physicalDiskPCIeNegotiatedLinkWidth. * Added physicalDiskPCIeCapableLinkWidth. * Added enclosureType." - + REVISION "201308220000Z" -- 22 Aug 2013 DESCRIPTION "Version: 2.1 @@ -189,6 +204,11 @@ physicalDevices OBJECT IDENTIFIER ::= { storageManagement 130 } logicalDevices OBJECT IDENTIFIER ::= { storageManagement 140 } -- Storage details end +conformanceGroup OBJECT IDENTIFIER ::= { outOfBandGroup 6 } +conformanceMIBCompliances OBJECT IDENTIFIER ::= { conformanceGroup 1 } +conformanceMIBGroups OBJECT IDENTIFIER ::= { conformanceGroup 2 } +conformanceMIBnotificationGroup OBJECT IDENTIFIER ::= { conformanceGroup 4 } + ------------------------------------------------------------------------------ -- Textual Conventions @@ -298,7 +318,16 @@ StateCapabilitiesFlags ::= TEXTUAL-CONVENTION enableCapable(2), -- be disabled (offline) or be enabled (online) notReadyCapable(4), -- not ready enableAndNotReadyCapable(6) +} +SystemLockdownModeEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "State Capabilities flags." + SYNTAX INTEGER { + --disabled(0), - LockdownMode disabled + enabled(1), -- LockdownMode enabled + unknown(2) -- LockdownMode unknown } -- @@ -396,9 +425,17 @@ RacTypeEnum ::= TEXTUAL-CONVENTION 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 + idrac7modular(17), -- iDRAC7 Modular + idrac7DCS(21), -- iDRAC7 DCS idrac8monolithic(32), -- iDRAC8 Monolithic - idrac8modular(33) -- iDRAC8 Modular + idrac8modular(33), -- iDRAC8 Modular + idrac8DCS(34), -- iDRAC8 DCS + idrac9Monolithic(48), -- iDRAC9 Monolothic + idrac9Modular(49), -- iDRAC9 Modular + idrac9DCS(50), -- iDRAC9 DCS + idrac915GMonolithic(64), -- iDRAC9 Monolothic + idrac915GModular(65), -- iDRAC9 Modular + idrac915GDCS(66) -- iDRAC9 DCS } SystemFormFactorEnum ::= TEXTUAL-CONVENTION @@ -464,6 +501,13 @@ PowerStateStatusEnum ::= TEXTUAL-CONVENTION -- -- OID Format: 1.3.6.1.4.1.674.10892.5.1.1..0 ------------------------------------------------------------------------------ +racInfoObjGroup OBJECT-GROUP + OBJECTS { racName, racShortName, racDescription, racManufacturer, racVersion, + racURL, racType, racFirmwareVersion } + STATUS current + DESCRIPTION + "A collection of objects providing information about the remote access card." + ::= { conformanceMIBGroups 1 } racName OBJECT-TYPE SYNTAX StringType @@ -518,7 +562,7 @@ racURL OBJECT-TYPE ::= { racInfoGroup 6 } racType OBJECT-TYPE - SYNTAX RacTypeEnum + SYNTAX RacTypeEnum MAX-ACCESS read-only STATUS current DESCRIPTION @@ -540,6 +584,13 @@ racFirmwareVersion OBJECT-TYPE -- OID Format: 1.3.6.1.4.1.674.10892.5.1.2..0 ------------------------------------------------------------------------------ +chassisInfoObjGroup OBJECT-GROUP + OBJECTS { chassisServiceTag, chassisNameModular, chassisModelModular} + STATUS current + DESCRIPTION + "A collection of objects providing information about the Chassis group." + ::= { conformanceMIBGroups 2 } + chassisServiceTag OBJECT-TYPE SYNTAX StringType MAX-ACCESS read-only @@ -572,7 +623,15 @@ chassisModelModular OBJECT-TYPE -- -- OID Format: 1.3.6.1.4.1.674.10892.5.1.3..0 ------------------------------------------------------------------------------ - +systemInfoObjGroup OBJECT-GROUP + OBJECTS { systemFQDN, systemServiceTag, systemExpressServiceCode, systemAssetTag, systemBladeSlotNumber, + systemOSName, systemFormFactor, systemDataCenterName, systemAisleName, systemRackName, + systemRackSlot, systemModelName, systemSystemID, systemOSVersion, systemRoomName, + systemChassisSystemHeight, systemBladeGeometry, systemNodeID,systemOEMOSVersion} + STATUS current + DESCRIPTION + "A collection of objects providing information about the System group." + ::= { conformanceMIBGroups 3 } systemFQDN OBJECT-TYPE SYNTAX StringType MAX-ACCESS read-only @@ -625,7 +684,7 @@ systemOSName OBJECT-TYPE ::= { systemInfoGroup 6 } systemFormFactor OBJECT-TYPE - SYNTAX SystemFormFactorEnum + SYNTAX SystemFormFactorEnum MAX-ACCESS read-only STATUS current DESCRIPTION @@ -633,7 +692,7 @@ systemFormFactor OBJECT-TYPE ::= { systemInfoGroup 7 } systemDataCenterName OBJECT-TYPE - SYNTAX StringType + SYNTAX StringType MAX-ACCESS read-only STATUS current DESCRIPTION @@ -641,7 +700,7 @@ systemDataCenterName OBJECT-TYPE ::= { systemInfoGroup 8 } systemAisleName OBJECT-TYPE - SYNTAX StringType + SYNTAX StringType MAX-ACCESS read-only STATUS current DESCRIPTION @@ -649,7 +708,7 @@ systemAisleName OBJECT-TYPE ::= { systemInfoGroup 9 } systemRackName OBJECT-TYPE - SYNTAX StringType + SYNTAX StringType MAX-ACCESS read-only STATUS current DESCRIPTION @@ -657,7 +716,7 @@ systemRackName OBJECT-TYPE ::= { systemInfoGroup 10 } systemRackSlot OBJECT-TYPE - SYNTAX StringType + SYNTAX StringType MAX-ACCESS read-only STATUS current DESCRIPTION @@ -709,7 +768,7 @@ systemChassisSystemHeight OBJECT-TYPE ::= { systemInfoGroup 16 } systemBladeGeometry OBJECT-TYPE - SYNTAX BladeGeometryEnum + SYNTAX BladeGeometryEnum MAX-ACCESS read-only STATUS current DESCRIPTION @@ -726,12 +785,31 @@ systemNodeID OBJECT-TYPE provides a unique identifier for the system." ::= { systemInfoGroup 18 } - +systemOEMOSVersion OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the OEM version of the operating system ." + ::= { systemInfoGroup 19 } +systemLockdownMode OBJECT-TYPE + SYNTAX SystemLockdownModeEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the system Lockdown mode is enabled or disabled." + ::= { systemInfoGroup 20 } ------------------------------------------------------------------------------ -- Status Group -- -- OID Format: 1.3.6.1.4.1.674.10892.5.2..0 ------------------------------------------------------------------------------ +statusInfoObjGroup OBJECT-GROUP + OBJECTS { globalSystemStatus, systemLCDStatus, globalStorageStatus, systemPowerState, systemPowerUpTime} + STATUS current + DESCRIPTION + "A collection of objects providing information about the status group." + ::= { conformanceMIBGroups 4 } globalSystemStatus OBJECT-TYPE SYNTAX ObjectStatusEnum @@ -791,7 +869,13 @@ systemPowerUpTime OBJECT-TYPE -- -- OID Format: 1.3.6.1.4.1.674.10892.5.3.1..0 ------------------------------------------------------------------------------ - +alertInfoObjGroup OBJECT-GROUP + OBJECTS { alertMessageID, alertMessage, alertCurrentStatus, alertSystemServiceTag, alertSystemFQDN, alertFQDD, alertDeviceDisplayName, + alertMessageArguments, alertChassisServiceTag, alertChassisName, alertRacFQDN} + STATUS current + DESCRIPTION + "A collection of objects providing information about the alert group." + ::= { conformanceMIBGroups 5 } alertMessageID OBJECT-TYPE SYNTAX OCTET STRING (SIZE (0..8)) MAX-ACCESS read-only @@ -902,6 +986,12 @@ alertRacFQDN OBJECT-TYPE -- -- OID Format: 1.3.6.1.4.1.674.10892.5.4.1..0 ------------------------------------------------------------------------------- +mibVersionInfoObjGroup OBJECT-GROUP + OBJECTS { mIBMajorVersionNumber, mIBMinorVersionNumber, mIBMaintenanceVersionNumber} + STATUS current + DESCRIPTION + "A collection of objects providing information about the mib version group." + ::= { conformanceMIBGroups 6 } mIBMajorVersionNumber OBJECT-TYPE SYNTAX Unsigned8BitRange @@ -943,6 +1033,28 @@ mIBMaintenanceVersionNumber OBJECT-TYPE -- -- OID Format: 1.3.6.1.4.1.674.10892.5.4.200.10.1.. ------------------------------------------------------------------------------- +systemStateTableInfoObjGroup OBJECT-GROUP + OBJECTS { systemStatechassisIndex, systemStateGlobalSystemStatus, systemStateChassisState, systemStateChassisStatus, + systemStatePowerUnitStateDetails, systemStatePowerUnitStatusRedundancy, systemStatePowerUnitStatusDetails, + systemStatePowerSupplyStateDetails, systemStatePowerSupplyStatusCombined, systemStatePowerSupplyStatusDetails, + systemStateVoltageStateDetails, systemStateVoltageStatusCombined, systemStateVoltageStatusDetails, + systemStateAmperageStateDetails, systemStateAmperageStatusCombined, systemStateAmperageStatusDetails, + systemStateCoolingUnitStateDetails, systemStateCoolingUnitStatusRedundancy, systemStateCoolingUnitStatusDetails, + systemStateCoolingDeviceStateDetails, systemStateCoolingDeviceStatusCombined, systemStateCoolingDeviceStatusDetails, + systemStateTemperatureStateDetails, systemStateTemperatureStatusCombined, systemStateTemperatureStatusDetails, + systemStateMemoryDeviceStateDetails, systemStateMemoryDeviceStatusCombined, systemStateMemoryDeviceStatusDetails, + systemStateChassisIntrusionStateDetails, systemStateChassisIntrusionStatusCombined, systemStateChassisIntrusionStatusDetails, + systemStatePowerUnitStatusCombined, systemStatePowerUnitStatusList, systemStateCoolingUnitStatusCombined, + systemStateCoolingUnitStatusList, systemStateProcessorDeviceStatusCombined, systemStateProcessorDeviceStatusList, + systemStateBatteryStatusCombined, systemStateBatteryStatusList, systemStateSDCardUnitStatusCombined, systemStateSDCardUnitStatusList, + systemStateSDCardDeviceStatusCombined, systemStateSDCardDeviceStatusList, systemStateIDSDMCardUnitStatusCombined, + systemStateIDSDMCardUnitStatusList, systemStateIDSDMCardDeviceStatusCombined, systemStateIDSDMCardDeviceStatusList, + systemStateTemperatureStatisticsStateDetails, systemStateTemperatureStatisticsStatusCombined, systemStateTemperatureStatisticsStatusDetails,systemStateCMCStatus + } + STATUS current + DESCRIPTION + "A collection of objects providing information about the System State Table group." + ::= { conformanceMIBGroups 7 } SystemStateTableEntry ::= SEQUENCE { systemStatechassisIndex ObjectRange, @@ -994,7 +1106,8 @@ SystemStateTableEntry ::= SEQUENCE { systemStateIDSDMCardDeviceStatusList OCTET STRING, systemStateTemperatureStatisticsStateDetails OCTET STRING, systemStateTemperatureStatisticsStatusCombined ObjectStatusEnum, - systemStateTemperatureStatisticsStatusDetails OCTET STRING + systemStateTemperatureStatisticsStatusDetails OCTET STRING, + systemStateCMCStatus ObjectStatusEnum } systemStateTable OBJECT-TYPE @@ -1567,7 +1680,13 @@ systemStateTemperatureStatisticsStatusDetails OBJECT-TYPE The bytes have the same definition type as ObjectStatusEnum." ::= { systemStateTableEntry 64 } - +systemStateCMCStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0065 This attribute defines the status of CMC." + ::= { systemStateTableEntry 65 } ------------------------------------------------------------------------------- -- Chassis Information Group -- @@ -1614,7 +1733,12 @@ LogFormatType ::= TEXTUAL-CONVENTION -- -- OID Format: 1.3.6.1.4.1.674.10892.5.4.300..0 ------------------------------------------------------------------------------- - +chassisInformationObjGroup OBJECT-GROUP + OBJECTS { numEventLogEntries, numLCLogEntries} + STATUS current + DESCRIPTION + "A collection of objects providing information about the System chassis information group." + ::= { conformanceMIBGroups 8 } numEventLogEntries OBJECT-TYPE SYNTAX Unsigned32BitRange MAX-ACCESS read-only @@ -1864,6 +1988,48 @@ SystemPropertiesFlags ::= TEXTUAL-CONVENTION energySmart(1) -- Energy Smart system } +chassisInformationTableObjGroup OBJECT-GROUP + OBJECTS { + chassisIndexChassisInformation, + chassisStateCapabilities, + chassisStateSettings, + chassisStatus, + chassisparentIndexReference, + chassisType, + chassisName, + chassisManufacturerName, + chassisModelTypeName, + chassisAssetTagName, + chassisServiceTagName, + chassisID, + chassisIDExtension, + chassisSystemClass, + chassisSystemName, + chassisLEDControlCapabilitiesUnique, + chassisLEDControlSettingsUnique, + chassisIdentifyFlashControlCapabilities, + chassisIdentifyFlashControlSettings, + chassisLockPresent, + chassishostControlCapabilitiesUnique, + chassishostControlSettingsUnique, + chassiswatchDogControlCapabilitiesUnique, + chassiswatchDogControlSettingsUnique, + chassiswatchDogControlExpiryTimeCapabilitiesUnique, + chassiswatchDogControlExpiryTime, + chassisPowerButtonControlCapabilitiesUnique, + chassisPowerButtonControlSettingsUnique, + chassisNMIButtonControlCapabilitiesUnique, + chassisNMIButtonControlSettingsUnique, + chassisSystemProperties, + chassisSystemRevisionNumber, + chassisSystemRevisionName, + chassisExpressServiceCodeName + } + STATUS current + DESCRIPTION + "A collection of objects providing information about the System chassis information table group." + ::= { conformanceMIBGroups 9 } + ChassisInformationTableEntry ::= SEQUENCE { chassisIndexChassisInformation ObjectRange, chassisStateCapabilities StateCapabilitiesFlags, @@ -2217,7 +2383,21 @@ chassisExpressServiceCodeName OBJECT-TYPE -- -- OID Format: 1.3.6.1.4.1.674.10892.5.4.300.40.1... ------------------------------------------------------------------------------- - +eventLogTableObjGroup OBJECT-GROUP + OBJECTS { + eventLogchassisIndex, + eventLogRecordIndex, + eventLogStateCapabilitiesUnique, + eventLogStateSettingsUnique, + eventLogRecord, + eventLogFormat, + eventLogSeverityStatus, + eventLogDateName + } + STATUS current + DESCRIPTION + "A collection of objects providing information about the event log table group." + ::= { conformanceMIBGroups 11 } EventLogTableEntry ::= SEQUENCE { eventLogchassisIndex ObjectRange, eventLogRecordIndex Unsigned32BitRange, @@ -2323,6 +2503,21 @@ eventLogDateName OBJECT-TYPE -- -- OID Format: 1.3.6.1.4.1.674.10892.5.4.300.50.1... ------------------------------------------------------------------------------- +systemBiosTableObjGroup OBJECT-GROUP + OBJECTS { + systemBIOSchassisIndex, + systemBIOSIndex, + systemBIOSStateCapabilities, + systemBIOSStateSettings, + systemBIOSStatus, + systemBIOSReleaseDateName, + systemBIOSVersionName, + systemBIOSManufacturerName + } + STATUS current + DESCRIPTION + "A collection of objects providing information about the system Bios table group." + ::= { conformanceMIBGroups 12 } SystemBIOSTableEntry ::= SEQUENCE { systemBIOSchassisIndex ObjectRange, @@ -2440,9 +2635,28 @@ FirmwareType ::= TEXTUAL-CONVENTION unknown(2), -- type is unknown lifecycleController(20), -- type is Lifecycle Controller iDRAC7(21), -- type is Integrated Dell Remote Access Controller 7 - iDRAC8(22) -- type is Integrated Dell Remote Access Controller 8 + iDRAC8(22), -- type is Integrated Dell Remote Access Controller 8 + iDRAC9(23) -- type is Integrated Dell Remote Access Controller 9 } +firmwareTableObjGroup OBJECT-GROUP + OBJECTS { + firmwarechassisIndex, + firmwareIndex, + firmwareStateCapabilities, + firmwareStateSettings, + firmwareStatus, + firmwareSize, + firmwareType, + firmwareTypeName, + firmwareUpdateCapabilities, + firmwareVersionName + } + STATUS current + DESCRIPTION + "A collection of objects providing information about the firmware table group." + ::= { conformanceMIBGroups 13 } + FirmwareTableEntry ::= SEQUENCE { firmwarechassisIndex ObjectRange, firmwareIndex ObjectRange, @@ -2587,6 +2801,22 @@ IntrusionTypeEnum ::= TEXTUAL-CONVENTION chassisBreachDetectionWhenPowerOFF(2) -- type is detect intrusion while power off } +intrusionTableObjGroup OBJECT-GROUP + OBJECTS { + intrusionchassisIndex, + intrusionIndex, + intrusionStateCapabilities, + intrusionStateSettings, + intrusionStatus, + intrusionReading, + intrusionType, + intrusionLocationName + } + STATUS current + DESCRIPTION + "A collection of objects providing information about the intrusion table group." + ::= { conformanceMIBGroups 14 } + IntrusionTableEntry ::= SEQUENCE { intrusionchassisIndex ObjectRange, intrusionIndex ObjectRange, @@ -2708,6 +2938,26 @@ LcLogCategoryEnum ::= TEXTUAL-CONVENTION workNotes(6) -- Work Notes category } +lcLogTableObjGroup OBJECT-GROUP + OBJECTS { + lcLogChassisIndex, + lcLogRecordIndex, + lcLogSequenceNumber, + lcLogCategory, + lcLogSeverityStatus, + lcLogDateName, + lcLogFQDD, + lcLogMessageID, + lcLogMessage, + lcLogDetailedDescription, + lcLogRecommededAction, + lcLogComment + } + STATUS current + DESCRIPTION + "A collection of objects providing information about the lc log table group." + ::= { conformanceMIBGroups 15 } + LcLogTableEntry ::= SEQUENCE { lcLogChassisIndex ObjectRange, lcLogRecordIndex Unsigned32BitRange, @@ -2868,6 +3118,22 @@ lcLogComment OBJECT-TYPE -- OID Format: 1.3.6.1.4.1.674.10892.5.4.600.10.1... ------------------------------------------------------------------------------- +powerUnitTableObjGroup OBJECT-GROUP + OBJECTS { + powerUnitchassisIndex, + powerUnitIndex, + powerUnitStateCapabilities, + powerUnitStateSettings, + powerUnitRedundancyStatus, + powerSupplyCountForRedundancy, + powerUnitName, + powerUnitStatus + } + STATUS current + DESCRIPTION + "A collection of objects providing information about the power unit table group." + ::= { conformanceMIBGroups 16 } + PowerUnitTableEntry ::= SEQUENCE { powerUnitchassisIndex ObjectRange, powerUnitIndex ObjectRange, @@ -3051,6 +3317,30 @@ PowerSupplyConfigurationErrorTypeEnum ::= TEXTUAL-CONVENTION processorMissing(3) -- error type is Processor missing } +powerSupplyTableObjGroup OBJECT-GROUP + OBJECTS { + powerSupplychassisIndex, + powerSupplyIndex, + powerSupplyStateCapabilitiesUnique, + powerSupplyStateSettingsUnique, + powerSupplyStatus, + powerSupplyOutputWatts, + powerSupplyType, + powerSupplyLocationName, + powerSupplyMaximumInputVoltage, + powerSupplypowerUnitIndexReference, + powerSupplySensorState, + powerSupplyConfigurationErrorType, + powerSupplyPowerMonitorCapable, + powerSupplyRatedInputWattage, + powerSupplyFQDD, + powerSupplyCurrentInputVoltage + } + STATUS current + DESCRIPTION + "A collection of objects providing information about the power supply table group." + ::= { conformanceMIBGroups 17 } + PowerSupplyTableEntry ::= SEQUENCE { powerSupplychassisIndex ObjectRange, powerSupplyIndex ObjectRange, @@ -3274,6 +3564,30 @@ VoltageDiscreteReadingEnum ::= TEXTUAL-CONVENTION voltageIsBad(2) -- voltage reading is Bad } +voltageProbeTableTableObjGroup OBJECT-GROUP + OBJECTS { + voltageProbechassisIndex, + voltageProbeIndex, + voltageProbeStateCapabilities, + voltageProbeStateSettings, + voltageProbeStatus, + voltageProbeReading, + voltageProbeType, + voltageProbeLocationName, + voltageProbeUpperNonRecoverableThreshold, + voltageProbeUpperCriticalThreshold, + voltageProbeUpperNonCriticalThreshold, + voltageProbeLowerNonCriticalThreshold, + voltageProbeLowerCriticalThreshold, + voltageProbeLowerNonRecoverableThreshold, + voltageProbeProbeCapabilities, + voltageProbeDiscreteReading + } + STATUS current + DESCRIPTION + "A collection of objects providing information about the Voltage Probe Table group." + ::= { conformanceMIBGroups 18 } + VoltageProbeTableEntry ::= SEQUENCE { voltageProbechassisIndex ObjectRange, voltageProbeIndex ObjectRange, @@ -3510,6 +3824,30 @@ AmperageDiscreteReadingEnum ::= TEXTUAL-CONVENTION amperageIsBad(2) -- amperage reading is Bad } +amperageProbeTableObjGroup OBJECT-GROUP + OBJECTS { + amperageProbechassisIndex, + amperageProbeIndex, + amperageProbeStateCapabilities, + amperageProbeStateSettings, + amperageProbeStatus, + amperageProbeReading, + amperageProbeType, + amperageProbeLocationName, + amperageProbeUpperNonRecoverableThreshold, + amperageProbeUpperCriticalThreshold, + amperageProbeUpperNonCriticalThreshold, + amperageProbeLowerNonCriticalThreshold, + amperageProbeLowerCriticalThreshold, + amperageProbeLowerNonRecoverableThreshold, + amperageProbeProbeCapabilities, + amperageProbeDiscreteReading + } + STATUS current + DESCRIPTION + "A collection of objects providing information about the Amperage Probe Table group." + ::= { conformanceMIBGroups 19 } + AmperageProbeTableEntry ::= SEQUENCE { amperageProbechassisIndex ObjectRange, amperageProbeIndex ObjectRange, @@ -3733,6 +4071,21 @@ SystemBatteryReadingFlags ::= TEXTUAL-CONVENTION presenceDetected(4) -- battery presence detected } +systemBatteryTableObjGroup OBJECT-GROUP + OBJECTS { + systemBatteryChassisIndex, + systemBatteryIndex, + systemBatteryStateCapabilities, + systemBatteryStateSettings, + systemBatteryStatus, + systemBatteryReading, + systemBatteryLocationName + } + STATUS current + DESCRIPTION + "A collection of objects providing information about the System Battery Table group." + ::= { conformanceMIBGroups 20 } + SystemBatteryTableEntry ::= SEQUENCE { systemBatteryChassisIndex ObjectRange, systemBatteryIndex ObjectRange, @@ -3845,6 +4198,35 @@ PowerCapSettingEnum ::= TEXTUAL-CONVENTION enabled(1) -- power cap enabled } +powerUsageTableObjGroup OBJECT-GROUP + OBJECTS { + powerUsageChassisIndex, + powerUsageIndex, + powerUsageStateCapabilities, + powerUsageStateSettings, + powerUsageStatus, + powerUsageEntityName, + powerUsageCumulativeWattage, + powerUsageCumulativeWattageStartDateName, + powerUsagePeakWatts, + powerUsagePeakWattsStartDateName, + powerUsagePeakWattsReadingDateName, + powerUsagePeakAmps, + powerUsagePeakAmpsStartDateName, + powerUsagePeakAmpsReadingDateName, + powerUsageIdlePower, + powerUsageMaxPotentialPower, + powerUsagePowerCapCapabilities, + powerUsagePowerCapSetting, + powerUsagePowerCapValue, + powerUsageInstantaneousHeadroom, + powerUsagePeakHeadroom + } + STATUS current + DESCRIPTION + "A collection of objects providing information about the Power Usage Table group." + ::= { conformanceMIBGroups 21 } + PowerUsageTableEntry ::= SEQUENCE { powerUsageChassisIndex ObjectRange, powerUsageIndex ObjectRange, @@ -3957,7 +4339,7 @@ powerUsageCumulativeWattageStartDateName OBJECT-TYPE 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 + which the data collection started for the value reported by the powerUsageCumulativeWattage attribute." ::= { powerUsageTableEntry 8 } @@ -3977,7 +4359,7 @@ powerUsagePeakWattsStartDateName OBJECT-TYPE 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 + which the data collection started for the value reported by the powerUsagePeakWatts attribute." ::= { powerUsageTableEntry 10 } @@ -4007,7 +4389,7 @@ powerUsagePeakAmpsStartDateName OBJECT-TYPE 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 + which the data collection started for the value reported by the powerUsagePeakAmps attribute." ::= { powerUsageTableEntry 13 } @@ -4100,6 +4482,22 @@ powerUsagePeakHeadroom OBJECT-TYPE -- OID Format: 1.3.6.1.4.1.674.10892.5.4.700.10.1... ------------------------------------------------------------------------------- +coolingUnitTableObjGroup OBJECT-GROUP + OBJECTS { + coolingUnitchassisIndex, + coolingUnitIndex, + coolingUnitStateCapabilties, + coolingUnitStateSettings, + coolingUnitRedundancyStatus, + coolingDeviceCountForRedundancy, + coolingUnitName, + coolingUnitStatus + } + STATUS current + DESCRIPTION + "A collection of objects providing information about the Cooling Unit Table group." + ::= { conformanceMIBGroups 22 } + CoolingUnitTableEntry ::= SEQUENCE { coolingUnitchassisIndex ObjectRange, coolingUnitIndex ObjectRange, @@ -4247,6 +4645,33 @@ CoolingDeviceDiscreteReadingEnum ::= TEXTUAL-CONVENTION coolingDeviceIsBad(2) -- cooling device is Bad } +coolingDeviceTableObjGroup OBJECT-GROUP + OBJECTS { + coolingDevicechassisIndex, + coolingDeviceIndex, + coolingDeviceStateCapabilities, + coolingDeviceStateSettings, + coolingDeviceStatus, + coolingDeviceReading, + coolingDeviceType, + coolingDeviceLocationName, + coolingDeviceUpperNonRecoverableThreshold, + coolingDeviceUpperCriticalThreshold, + coolingDeviceUpperNonCriticalThreshold, + coolingDeviceLowerNonCriticalThreshold, + coolingDeviceLowerCriticalThreshold, + coolingDeviceLowerNonRecoverableThreshold, + coolingDevicecoolingUnitIndexReference, + coolingDeviceSubType, + coolingDeviceProbeCapabilities, + coolingDeviceDiscreteReading, + coolingDeviceFQDD + } + STATUS current + DESCRIPTION + "A collection of objects providing information about the Cooling Device Table group." + ::= { conformanceMIBGroups 23 } + CoolingDeviceTableEntry ::= SEQUENCE { coolingDevicechassisIndex ObjectRange, coolingDeviceIndex ObjectRange, @@ -4503,6 +4928,30 @@ TemperatureDiscreteReadingEnum ::= TEXTUAL-CONVENTION temperatureIsBad(2) -- temperature reading is Bad } +temperatureProbeTableObjGroup OBJECT-GROUP + OBJECTS { + temperatureProbechassisIndex, + temperatureProbeIndex, + temperatureProbeStateCapabilities, + temperatureProbeStateSettings, + temperatureProbeStatus, + temperatureProbeReading, + temperatureProbeType, + temperatureProbeLocationName, + temperatureProbeUpperNonRecoverableThreshold, + temperatureProbeUpperCriticalThreshold, + temperatureProbeUpperNonCriticalThreshold, + temperatureProbeLowerNonCriticalThreshold, + temperatureProbeLowerCriticalThreshold, + temperatureProbeLowerNonRecoverableThreshold, + temperatureProbeProbeCapabilities, + temperatureProbeDiscreteReading + } + STATUS current + DESCRIPTION + "A collection of objects providing information about the Temperature Probe Table group." + ::= { conformanceMIBGroups 24 } + TemperatureProbeTableEntry ::= SEQUENCE { temperatureProbechassisIndex ObjectRange, temperatureProbeIndex ObjectRange, @@ -4809,6 +5258,7 @@ ProcessorDeviceFamily ::= TEXTUAL-CONVENTION deviceFamilyIs68010(99), -- family is 68010 deviceFamilyIs68020(100), -- family is 68020 deviceFamilyIs68030(101), -- family is 68030 + deviceFamilyIsAMDZen(107), -- family is AMD Zen Processor Family deviceFamilyIsHobbit(112), -- family is Hobbit Family deviceFamilyIsCrusoeTM5000(120), -- family is Crusoe TM5000 Family deviceFamilyIsCrusoeTM3000(121), -- family is Crusoe TM3000 Family @@ -4893,7 +5343,7 @@ ProcessorDeviceFamily ::= TEXTUAL-CONVENTION 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 + 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 @@ -4921,6 +5371,36 @@ ProcessorDeviceStatusState ::= TEXTUAL-CONVENTION idle(6) -- state is idle } +processorDeviceTableObjGroup OBJECT-GROUP + OBJECTS { + processorDevicechassisIndex, + processorDeviceIndex, + processorDeviceStateCapabilities, + processorDeviceStateSettings, + processorDeviceStatus, + processorDeviceType, + processorDeviceManufacturerName, + processorDeviceStatusState, + processorDeviceFamily, + processorDeviceMaximumSpeed, + processorDeviceCurrentSpeed, + processorDeviceExternalClockSpeed, + processorDeviceVoltage, + processorDeviceVersionName, + processorDeviceCoreCount, + processorDeviceCoreEnabledCount, + processorDeviceThreadCount, + processorDeviceCharacteristics, + processorDeviceExtendedCapabilities, + processorDeviceExtendedSettings, + processorDeviceBrandName, + processorDeviceFQDD + } + STATUS current + DESCRIPTION + "A collection of objects providing information about the Processor Device Table group." + ::= { conformanceMIBGroups 25 } + ProcessorDeviceTableEntry ::= SEQUENCE { processorDevicechassisIndex ObjectRange, processorDeviceIndex ObjectRange, @@ -5217,6 +5697,21 @@ ProcessorDeviceStatusReadingFlags ::= TEXTUAL-CONVENTION processorThrottled(1024) -- Processor Throttled } +processorDeviceStatusTableObjGroup OBJECT-GROUP + OBJECTS { + processorDeviceStatusChassisIndex, + processorDeviceStatusIndex, + processorDeviceStatusStateCapabilities, + processorDeviceStatusStateSettings, + processorDeviceStatusStatus, + processorDeviceStatusReading, + processorDeviceStatusLocationName + } + STATUS current + DESCRIPTION + "A collection of objects providing information about the Processor Device Status Table group." + ::= { conformanceMIBGroups 26 } + ProcessorDeviceStatusTableEntry ::= SEQUENCE { processorDeviceStatusChassisIndex ObjectRange, processorDeviceStatusIndex ObjectRange, @@ -5315,6 +5810,27 @@ processorDeviceStatusLocationName OBJECT-TYPE -- -- OID Format: 1.3.6.1.4.1.674.10892.5.4.1100.50.1... ------------------------------------------------------------------------------- +MemoryTechnologyEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Memory Technology Enum." + SYNTAX INTEGER { + other(1), -- the memory technology is other than following values + unknown(2), -- the memory technology is not one of the following: + dram(3), -- the memory technology is DRAM + nvdimmn(4), -- the memory technology is NVDIMM-N + nvdimmf(5), -- the memory technology is NVDIMM-F + nvdimmp(6), -- the memory technology is NVDIMM-P + intelpersistentmemory(7) -- the memory technology is intelpersistentmemory +} + +MemoryPropertyEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Memory Property Enum." + SYNTAX INTEGER { + notApplicable(255) -- the memory property is NotApplicable for the device. +} MemoryDeviceTypeEnum ::= TEXTUAL-CONVENTION STATUS current @@ -5346,6 +5862,35 @@ MemoryDeviceTypeEnum ::= TEXTUAL-CONVENTION deviceTypeIsDDR4(26) -- type is DDR4 } + +memoryDeviceTableObjGroup OBJECT-GROUP + OBJECTS { + memoryDevicechassisIndex, + memoryDeviceIndex, + memoryDeviceStateCapabilities, + memoryDeviceStateSettings, + memoryDeviceStatus, + memoryDeviceType, + memoryDeviceLocationName, + memoryDeviceBankLocationName, + memoryDeviceSize, + memoryDeviceSpeed, + memoryDeviceManufacturerName, + memoryDevicePartNumberName, + memoryDeviceSerialNumberName, + memoryDeviceFQDD, + memoryDeviceCurrentOperatingSpeed, + memoryDeviceTechnology, + memoryDeviceVolatileSize, + memoryDeviceNonVolatilesSize, + memoryDeviceCacheSize, + memoryDeviceRemainingRatedWriteEndurance + } + STATUS current + DESCRIPTION + "A collection of objects providing information about the Memory Device Table group." + ::= { conformanceMIBGroups 27 } + MemoryDeviceTableEntry ::= SEQUENCE { memoryDevicechassisIndex ObjectRange, memoryDeviceIndex ObjectRange, @@ -5361,7 +5906,12 @@ MemoryDeviceTableEntry ::= SEQUENCE { memoryDevicePartNumberName String64, memoryDeviceSerialNumberName String64, memoryDeviceFQDD FQDDString, - memoryDeviceCurrentOperatingSpeed Unsigned32BitRange + memoryDeviceCurrentOperatingSpeed Unsigned32BitRange, + memoryDeviceTechnology MemoryTechnologyEnum, + memoryDeviceVolatileSize Unsigned32BitRange, + memoryDeviceNonVolatilesSize Unsigned32BitRange, + memoryDeviceCacheSize Unsigned32BitRange, + memoryDeviceRemainingRatedWriteEndurance MemoryPropertyEnum } memoryDeviceTable OBJECT-TYPE @@ -5515,6 +6065,45 @@ memoryDeviceCurrentOperatingSpeed OBJECT-TYPE in megahertz (MHz) of the memory device. Zero indicates an unknown speed." ::= { memoryDeviceTableEntry 27 } +memoryDeviceTechnology OBJECT-TYPE + SYNTAX MemoryTechnologyEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0050.0001.0028 This attribute defines the type or technology of the memory device." + ::= { memoryDeviceTableEntry 28 } + +memoryDeviceVolatileSize OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0050.0001.0029 This attribute defines the volatile size of the memory device in MBs." + ::= { memoryDeviceTableEntry 29 } + +memoryDeviceNonVolatilesSize OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0050.0001.0030 This attribute defines the Non Volatile size of the memory device in MBs." + ::= { memoryDeviceTableEntry 30 } + +memoryDeviceCacheSize OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0050.0001.0031 This attribute defines the Cache size of the memory device in MBs." + ::= { memoryDeviceTableEntry 31 } + +memoryDeviceRemainingRatedWriteEndurance OBJECT-TYPE + SYNTAX MemoryPropertyEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0050.0001.0032 This attribute defines the percent of remaining life for the memory device" + ::= { memoryDeviceTableEntry 32 } ------------------------------------------------------------------------------- -- PCI Device Table @@ -5522,6 +6111,23 @@ memoryDeviceCurrentOperatingSpeed OBJECT-TYPE -- OID Format: 1.3.6.1.4.1.674.10892.5.4.1100.80.1... ------------------------------------------------------------------------------- +pCIDeviceTableObjGroup OBJECT-GROUP + OBJECTS { + pCIDevicechassisIndex, + pCIDeviceIndex, + pCIDeviceStateCapabilities, + pCIDeviceStateSettings, + pCIDeviceStatus, + pCIDeviceDataBusWidth, + pCIDeviceManufacturerName, + pCIDeviceDescriptionName, + pCIDeviceFQDD + } + STATUS current + DESCRIPTION + "A collection of objects providing information about the PCI Device Table group." + ::= { conformanceMIBGroups 28 } + PCIDeviceTableEntry ::= SEQUENCE { pCIDevicechassisIndex ObjectRange, pCIDeviceIndex ObjectRange, @@ -5713,6 +6319,30 @@ NetworkDeviceCapabilitiesFlags ::= TEXTUAL-CONVENTION fcoeOffload(8) -- device has FCoE Offload capability } +networkDeviceTableObjGroup OBJECT-GROUP + OBJECTS { + networkDeviceChassisIndex, + networkDeviceIndex, + networkDeviceStatus, + networkDeviceConnectionStatus, + networkDeviceProductName, + networkDeviceVendorName, + networkDeviceCurrentMACAddress, + networkDevicePermanentMACAddress, + networkDevicePCIBusNumber, + networkDevicePCIDeviceNumber, + networkDevicePCIFunctionNumber, + networkDeviceTOECapabilityFlags, + networkDeviceiSCSICapabilityFlags, + networkDeviceiSCSIEnabled, + networkDeviceCapabilities, + networkDeviceFQDD + } + STATUS current + DESCRIPTION + "A collection of objects providing information about the Network Device Table group." + ::= { conformanceMIBGroups 29 } + NetworkDeviceTableEntry ::= SEQUENCE { networkDeviceChassisIndex ObjectRange, networkDeviceIndex ObjectRange, @@ -6031,6 +6661,23 @@ SystemSlotCategoryEnum ::= TEXTUAL-CONVENTION systemSlotCategoryIsMotherboard(5) -- category is Motherboard } +systemSlotTableObjGroup OBJECT-GROUP + OBJECTS { + systemSlotchassisIndex, + systemSlotIndex, + systemSlotStateCapabilitiesUnique, + systemSlotStateSettingsUnique, + systemSlotStatus, + systemSlotCurrentUsage, + systemSlotType, + systemSlotSlotExternalSlotName, + systemSlotCategory + } + STATUS current + DESCRIPTION + "A collection of objects providing information about the System Slot Table group." + ::= { conformanceMIBGroups 30 } + SystemSlotTableEntry ::= SEQUENCE { systemSlotchassisIndex ObjectRange, systemSlotIndex ObjectRange, @@ -6153,6 +6800,22 @@ systemSlotCategory OBJECT-TYPE -- OID Format: 1.3.6.1.4.1.674.10892.5.4.2000.10.1... ------------------------------------------------------------------------------- +fruTableObjGroup OBJECT-GROUP + OBJECTS { + fruChassisIndex, + fruIndex, + fruInformationStatus, + fruManufacturerName, + fruSerialNumberName, + fruPartNumberName, + fruRevisionName, + fruFQDD + } + STATUS current + DESCRIPTION + "A collection of objects providing information about the Fru Table group." + ::= { conformanceMIBGroups 31 } + FruTableEntry ::= SEQUENCE { fruChassisIndex ObjectRange, fruIndex ObjectRange, @@ -6268,7 +6931,21 @@ fruFQDD OBJECT-TYPE -- OID Format: 1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.. ------------------------------------------------------------------------------- -BatteryTableEntry ::=SEQUENCE { +batteryTableObjGroup OBJECT-GROUP + OBJECTS { + batteryNumber, + batteryState, + batteryComponentStatus, + batteryPredictedCapacity, + batteryFQDD, + batteryDisplayName + } + STATUS current + DESCRIPTION + "A collection of objects providing information about the Battery Table group." + ::= { conformanceMIBGroups 32 } + +BatteryTableEntry ::=SEQUENCE { batteryNumber INTEGER, batteryState INTEGER, batteryComponentStatus ObjectStatusEnum, @@ -6282,11 +6959,11 @@ batteryTable OBJECT-TYPE MAX-ACCESS not-accessible STATUS current DESCRIPTION - "A table of managed batteries. The number of + "A table of managed batteries. The number of entries is related to number of Batteries - discovered in the system. The maximum number of entries + discovered in the system. The maximum number of entries is implementation dependent. - Note: The properties in this table may not be applicable to all + Note: The properties in this table may not be applicable to all entries. " ::= { physicalDevices 15 } @@ -6331,7 +7008,7 @@ batteryState OBJECT-TYPE 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. + 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. " @@ -6342,13 +7019,13 @@ batteryComponentStatus OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "The status of the battery itself without the + "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 + 3: OK + 4: Non-critical 5: Critical 6: Non-recoverable" ::= { batteryTableEntry 6 } @@ -6363,7 +7040,7 @@ batteryPredictedCapacity OBJECT-TYPE MAX-ACCESS read-only STATUS obsolete DESCRIPTION - "This entry is obsolete. Use the batteryComponentStatus or + "This entry is obsolete. Use the batteryComponentStatus or batteryState instead. " ::= { batteryTableEntry 10 } @@ -6373,7 +7050,7 @@ batteryFQDD OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "The battery's Fully Qualified Device Descriptor (FQDD) as + "The battery's Fully Qualified Device Descriptor (FQDD) as represented in Storage Management. " ::= { batteryTableEntry 20 } @@ -6393,7 +7070,50 @@ batteryDisplayName OBJECT-TYPE -- OID Format: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.. ------------------------------------------------------------------------------- -ControllerTableEntry ::=SEQUENCE { +controllerTableObjGroup OBJECT-GROUP + OBJECTS { + controllerNumber, + controllerName, + controllerRebuildRate, + controllerFWVersion, + controllerCacheSizeInMB, + controllerRollUpStatus, + controllerComponentStatus, + controllerDriverVersion, + controllerPCISlot, + controllerReconstructRate, + controllerPatrolReadRate, + controllerBGIRate, + controllerCheckConsistencyRate, + controllerPatrolReadMode, + controllerPatrolReadState, + controllerPersistentHotSpare, + controllerSpinDownUnconfiguredDrives, + controllerSpinDownHotSpareDrives, + controllerSpinDownTimeInterval, + controllerPreservedCache, + controllerCheckConsistencyMode, + controllerCopyBackMode, + controllerSecurityStatus, + controllerEncryptionKeyPresent, + controllerEncryptionCapability, + controllerLoadBalanceSetting, + controllerMaxCapSpeed, + controllerSASAddress, + controllerFQDD, + controllerDisplayName, + controllerT10PICapability, + controllerRAID10UnevenSpansSupported, + controllerEnhancedAutoImportForeignConfigMode, + controllerBootModeSupported, + controllerBootMode + } + STATUS current + DESCRIPTION + "A collection of objects providing information about the Controller Table group." + ::= { conformanceMIBGroups 33 } + +ControllerTableEntry ::=SEQUENCE { controllerNumber INTEGER, controllerName DisplayString, controllerRebuildRate INTEGER, @@ -6419,14 +7139,14 @@ ControllerTableEntry ::=SEQUENCE { controllerSecurityStatus INTEGER, controllerEncryptionKeyPresent BooleanType, controllerEncryptionCapability INTEGER, - controllerLoadBalanceSetting INTEGER, + controllerLoadBalanceSetting INTEGER, controllerMaxCapSpeed INTEGER, controllerSASAddress DisplayString, controllerFQDD FQDDString, controllerDisplayName DisplayString, controllerT10PICapability INTEGER, controllerRAID10UnevenSpansSupported BooleanType, - controllerEnhancedAutoImportForeignConfigMode INTEGER, + controllerEnhancedAutoImportForeignConfigMode INTEGER, controllerBootModeSupported BooleanType, controllerBootMode INTEGER } @@ -6439,7 +7159,7 @@ controllerTable OBJECT-TYPE "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 + Note: The properties in this table may not be applicable to all entries. " ::= { physicalDevices 1 } @@ -6449,8 +7169,8 @@ controllerTableEntry OBJECT-TYPE 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 + "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 } @@ -6478,8 +7198,8 @@ controllerRebuildRate OBJECT-TYPE 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 + "The rebuild rate is the percentage of the controller's + resources dedicated to rebuilding a failed disk when a rebuild is necessary. " ::= { controllerTableEntry 7 } @@ -6494,11 +7214,11 @@ controllerFWVersion OBJECT-TYPE ::= { controllerTableEntry 8 } controllerCacheSizeInMB OBJECT-TYPE - SYNTAX INTEGER + SYNTAX INTEGER (1..2147483647) MAX-ACCESS read-only STATUS current DESCRIPTION - "The controller's current amount of cache memory in megabytes. + "The controller's current amount of cache memory in megabytes. " ::= { controllerTableEntry 9 } @@ -6507,13 +7227,13 @@ controllerRollUpStatus OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "Severity of the controller state. + "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 + 3: OK + 4: Non-critical 5: Critical. 6: Non-recoverable. " @@ -6524,13 +7244,13 @@ controllerComponentStatus OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "The status of the controller itself without the + "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 + 3: OK + 4: Non-critical 5: Critical 6: Non-recoverable" ::= { controllerTableEntry 38 } @@ -6549,8 +7269,8 @@ controllerPCISlot OBJECT-TYPE 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, + "The PCI slot on the server where the controller is seated. This + data is not reported for embedded or integrated controllers, " ::= { controllerTableEntry 42 } @@ -6559,9 +7279,9 @@ controllerReconstructRate OBJECT-TYPE 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 + "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 } @@ -6571,7 +7291,7 @@ controllerPatrolReadRate OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "The patrol read rate is the percentage of the controller's + "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. " @@ -6582,8 +7302,8 @@ controllerBGIRate OBJECT-TYPE 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 + "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 } @@ -6593,8 +7313,8 @@ controllerCheckConsistencyRate OBJECT-TYPE 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 + "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 } @@ -6614,13 +7334,13 @@ controllerPatrolReadMode OBJECT-TYPE "Identifies the patrol read mode setting for the controller. Possible values: 1: Not one of the following or could not be determined. - 2: Not Supported on this controller. + 2: Not Supported on this controller. 3: Disabled. 4: Automatic. 5: Manual. " ::= { controllerTableEntry 52 } - + controllerPatrolReadState OBJECT-TYPE SYNTAX INTEGER { @@ -6644,7 +7364,7 @@ controllerPersistentHotSpare OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "Indicates whether hot spare drives would be restored on insertion + "Indicates whether hot spare drives would be restored on insertion into the same slot. " ::= { controllerTableEntry 59 } @@ -6674,7 +7394,7 @@ controllerSpinDownTimeInterval OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "The duration in minutes after which, the unconfigured or hot + "The duration in minutes after which, the unconfigured or hot spare drives will be spun down to power save mode. " ::= { controllerTableEntry 62 } @@ -6684,7 +7404,7 @@ controllerPreservedCache OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "Indicates whether preserved cache or pinned cache is + "Indicates whether preserved cache or pinned cache is present on the controller. " ::= { controllerTableEntry 69 } @@ -6700,13 +7420,13 @@ controllerCheckConsistencyMode OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "The current check consistency mode setting + "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 + 4: Check consistency operation will stop on encountering an error. " ::= { controllerTableEntry 70 } @@ -6723,16 +7443,16 @@ controllerCopyBackMode OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "The current copy back mode setting + "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. + 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 } @@ -6777,7 +7497,7 @@ controllerEncryptionCapability OBJECT-TYPE "The type of encryption supported by the controller. Possible values: 1: Not one of the following. - 2: No encryption supported, + 2: No encryption supported, 3: Local Key Management, " ::= { controllerTableEntry 74 } @@ -6793,8 +7513,8 @@ controllerLoadBalanceSetting OBJECT-TYPE 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 + "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. @@ -6816,7 +7536,7 @@ controllerMaxCapSpeed OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "The maximum speed of the controller.in + "The maximum speed of the controller.in Gigbits per second (Gbps). Possible values: 1: The speed could not be determined. @@ -6841,7 +7561,7 @@ controllerFQDD OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "The controller's Fully Qualified Device Descriptor (FQDD) as + "The controller's Fully Qualified Device Descriptor (FQDD) as represented in Storage Management. " ::= { controllerTableEntry 78 } @@ -6851,7 +7571,7 @@ controllerDisplayName OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "The controller's friendly FQDD as represented in Storage + "The controller's friendly FQDD as represented in Storage Management." ::= { controllerTableEntry 79 } @@ -6865,7 +7585,7 @@ controllerT10PICapability OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "Indicates whether the controller supports the T10 PI (Protection + "Indicates whether the controller supports the T10 PI (Protection Information). These protection fields are known as DIF (Data Integrity Fields). Possible values: @@ -6880,7 +7600,7 @@ controllerRAID10UnevenSpansSupported OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "Indicates whether uneven spans for RAID 10 virtual disk + "Indicates whether uneven spans for RAID 10 virtual disk is supported on the controller. " ::= { controllerTableEntry 81 } @@ -6896,7 +7616,7 @@ controllerEnhancedAutoImportForeignConfigMode OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "Indicates the status of enhanced auto-import of foreign + "Indicates the status of enhanced auto-import of foreign configuration property of the controller. 1: Not one of the following. 2: Not Supported. @@ -6910,7 +7630,7 @@ controllerBootModeSupported OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "Indicates whether headless boot mode settings are supported + "Indicates whether headless boot mode settings are supported on the controller. " ::= { controllerTableEntry 83 } @@ -6930,9 +7650,9 @@ controllerBootMode OBJECT-TYPE "Indicates the boot mode of the controller. Possible values: 1: Not applicable for this controller. - 2: User mode: User interaction required for all boot messages (not + 2: User mode: User interaction required for all boot messages (not applicable for uEFI environments). - 3: Continue Boot On Error. User interaction only required for + 3: Continue Boot On Error. User interaction only required for critical messages. 4: Headless Mode Continue On Error. User interaction is not required. Controller boot may halt on Error. @@ -6948,10 +7668,53 @@ controllerBootMode OBJECT-TYPE -- OID Format: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.. ------------------------------------------------------------------------------- -PhysicalDiskTableEntry ::=SEQUENCE { +physicalDiskTableObjGroup OBJECT-GROUP + OBJECTS { + physicalDiskNumber, + physicalDiskName, + physicalDiskManufacturer, + physicalDiskState, + physicalDiskProductID, + physicalDiskSerialNo, + physicalDiskRevision, + physicalDiskCapacityInMB, + physicalDiskUsedSpaceInMB, + physicalDiskFreeSpaceInMB, + physicalDiskBusType, + physicalDiskSpareState, + physicalDiskComponentStatus, + physicalDiskPartNumber, + physicalDiskSASAddress, + physicalDiskNegotiatedSpeed, + physicalDiskCapableSpeed, + physicalDiskSmartAlertIndication, + physicalDiskManufactureDay, + physicalDiskManufactureWeek, + physicalDiskManufactureYear, + physicalDiskMediaType, + physicalDiskPowerState, + physicalDiskRemainingRatedWriteEndurance, + physicalDiskOperationalState, + physicalDiskProgress, + physicalDiskSecurityStatus, + physicalDiskFormFactor, + physicalDiskFQDD, + physicalDiskDisplayName, + physicalDiskT10PICapability, + physicalDiskBlockSizeInBytes, + physicalDiskProtocolVersion, + physicalDiskPCIeNegotiatedLinkWidth, + physicalDiskPCIeCapableLinkWidth + } + STATUS current + DESCRIPTION + "A collection of objects providing information about the Physical Disk Table group." + ::= { conformanceMIBGroups 34 } + +PhysicalDiskTableEntry ::=SEQUENCE { physicalDiskNumber INTEGER, physicalDiskName DisplayString, - physicalDiskManufacturer DisplayString, + physicalDiskManufacturer DisplayString, physicalDiskState INTEGER, physicalDiskProductID DisplayString, physicalDiskSerialNo DisplayString, @@ -6961,7 +7724,7 @@ PhysicalDiskTableEntry ::=SEQUENCE { physicalDiskFreeSpaceInMB INTEGER, physicalDiskBusType INTEGER, physicalDiskSpareState INTEGER, - physicalDiskComponentStatus ObjectStatusEnum, + physicalDiskComponentStatus ObjectStatusEnum, physicalDiskPartNumber DisplayString, physicalDiskSASAddress DisplayString, physicalDiskNegotiatedSpeed INTEGER, @@ -6991,10 +7754,10 @@ physicalDiskTable OBJECT-TYPE MAX-ACCESS not-accessible STATUS current DESCRIPTION - "A table of managed physical disks. The number of entries is + "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 + Note: The properties in this table may not be applicable to all entries. " ::= { physicalDevices 4 } @@ -7028,7 +7791,7 @@ physicalDiskName OBJECT-TYPE " ::= { physicalDiskTableEntry 2 } -physicalDiskManufacturer OBJECT-TYPE +physicalDiskManufacturer OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current @@ -7057,17 +7820,17 @@ physicalDiskState OBJECT-TYPE "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. + 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. + 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 + 8: The physical disk is not a RAID capable disk 9: The physical disk has been removed. 10:The physical disk media has been placed in read only mode. " @@ -7087,7 +7850,7 @@ physicalDiskSerialNo OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "The physical disk's unique identification number + "The physical disk's unique identification number from the manufacturer. " ::= { physicalDiskTableEntry 7 } @@ -7102,16 +7865,16 @@ physicalDiskRevision OBJECT-TYPE ::= { physicalDiskTableEntry 8 } physicalDiskCapacityInMB OBJECT-TYPE - SYNTAX INTEGER + SYNTAX INTEGER (1..2147483647) MAX-ACCESS read-only STATUS current DESCRIPTION "The size of the physical disk in megabytes. - " + " ::= { physicalDiskTableEntry 11 } physicalDiskUsedSpaceInMB OBJECT-TYPE - SYNTAX INTEGER + SYNTAX INTEGER (1..2147483647) MAX-ACCESS read-only STATUS current DESCRIPTION @@ -7121,14 +7884,14 @@ physicalDiskUsedSpaceInMB OBJECT-TYPE ::= { physicalDiskTableEntry 17 } physicalDiskFreeSpaceInMB OBJECT-TYPE - SYNTAX INTEGER + SYNTAX INTEGER (1..2147483647) MAX-ACCESS read-only STATUS current DESCRIPTION "The amount of free space in megabytes on the physical disk. This is not applicable for NVMe devices. " - ::= { physicalDiskTableEntry 19 } + ::= { physicalDiskTableEntry 19 } physicalDiskBusType OBJECT-TYPE SYNTAX INTEGER @@ -7138,7 +7901,8 @@ physicalDiskBusType OBJECT-TYPE sas(3), sata(4), fibre(5), - pcie(6) + pcie(6), + nvme(7) } MAX-ACCESS read-only STATUS current @@ -7151,8 +7915,9 @@ physicalDiskBusType OBJECT-TYPE 4: Serial Advanced Technology Attachment (SATA). 5: Fibre channel. 6: PCIe. + 7: NVMe. " - ::= { physicalDiskTableEntry 21 } + ::= { physicalDiskTableEntry 21 } physicalDiskSpareState OBJECT-TYPE SYNTAX INTEGER @@ -7177,13 +7942,13 @@ physicalDiskComponentStatus OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "The status of the physical disk itself without the + "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 + 3: OK + 4: Non-critical 5: Critical 6: Non-recoverable" ::= { physicalDiskTableEntry 24 } @@ -7215,12 +7980,14 @@ physicalDiskNegotiatedSpeed OBJECT-TYPE sixGbps(4), twelveGbps(5), fiveGTps(6), - eightGTps(7) + eightGTps(7), + sixteenGTps(8), + thirtytwoGTps(9) } MAX-ACCESS read-only STATUS current DESCRIPTION - "The data transfer speed that the disk negotiated while spinning up + "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. @@ -7230,6 +7997,8 @@ physicalDiskNegotiatedSpeed OBJECT-TYPE 5: 12.0 Gbps 6: 5 GT/s (applicable for NVMe devices). 7: 8 GT/s (applicable for NVMe devices). + 8: 16 GT/s (applicable for NVMe devices). + 9: 32 GT/s (applicable for NVMe devices). " ::= { physicalDiskTableEntry 29 } @@ -7242,12 +8011,14 @@ physicalDiskCapableSpeed OBJECT-TYPE sixGbps(4), twelveGbps(5), fiveGTps(6), - eightGTps(7) + eightGTps(7), + sixteenGTps(8), + thirtytwoGTps(9) } MAX-ACCESS read-only STATUS current DESCRIPTION - "The maximum data transfer speed supported by the disk + "The maximum data transfer speed supported by the disk in Gigbits per second (Gbps). Possible values: 1: The speed could not be determined. @@ -7257,6 +8028,8 @@ physicalDiskCapableSpeed OBJECT-TYPE 5: 12.0 Gbps 6: 5 GT/s (applicable for NVMe devices). 7: 8 GT/s (applicable for NVMe devices). + 8: 16 GT/s (applicable for NVMe devices). + 9: 32 GT/s (applicable for NVMe devices). " ::= { physicalDiskTableEntry 30 } @@ -7265,7 +8038,7 @@ physicalDiskSmartAlertIndication OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "Indicates whether the physical disk has received a predictive + "Indicates whether the physical disk has received a predictive failure alert. " ::= { physicalDiskTableEntry 31 } @@ -7275,7 +8048,7 @@ physicalDiskManufactureDay OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "The day of the week (1=Sunday thru 7=Saturday) + "The day of the week (1=Sunday thru 7=Saturday) on which the physical disk was manufactured. " ::= { physicalDiskTableEntry 32 } @@ -7285,12 +8058,12 @@ physicalDiskManufactureWeek OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "The week (1 thru 53) in which the physical disk + "The week (1 thru 53) in which the physical disk was manufactured. " ::= { physicalDiskTableEntry 33 } -physicalDiskManufactureYear OBJECT-TYPE +physicalDiskManufactureYear OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current @@ -7345,12 +8118,12 @@ physicalDiskRemainingRatedWriteEndurance OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "This property is applicable to SSD media type only. This indicates - the wear-out percentage of the SSD. Typically it is a value between - 0 to 100. However, if the value is not available or not applicable + "This property is applicable to SSD media type only. This indicates + the wear-out percentage of the SSD. Typically it is a value between + 0 to 100. However, if the value is not available or not applicable (in the case of HDD media type) the value will be 255. " - ::= { physicalDiskTableEntry 49 } + ::= { physicalDiskTableEntry 49 } physicalDiskOperationalState OBJECT-TYPE SYNTAX INTEGER @@ -7367,10 +8140,10 @@ physicalDiskOperationalState OBJECT-TYPE operations ongoing. Possible values: 1: There is no active operation running. - 2: Data from a redundant virtual disk is + 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 + 4: Data is being copied from a hot spare disk to the physical disk or vice versa. " ::= { physicalDiskTableEntry 50 } @@ -7380,8 +8153,8 @@ physicalDiskProgress OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "The progress percentage of the operation that is being - performed on the physical disk. This is applicable + "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 } @@ -7414,7 +8187,8 @@ physicalDiskFormFactor OBJECT-TYPE unknown(1), oneDotEight(2), twoDotFive(3), - threeDotFive(4) + threeDotFive(4), + edsffe1DotL(5) } MAX-ACCESS read-only STATUS current @@ -7425,6 +8199,7 @@ physicalDiskFormFactor OBJECT-TYPE 2: 1.8 inch. 3: 2.5 inch. 4: 3.5 inch. + 5: EDSFFE1.L. " ::= { physicalDiskTableEntry 53 } @@ -7433,7 +8208,7 @@ physicalDiskFQDD OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "The physical disk's Fully Qualified Device Descriptor (FQDD) + "The physical disk's Fully Qualified Device Descriptor (FQDD) as represented in Storage Management. " ::= { physicalDiskTableEntry 54 } @@ -7443,7 +8218,7 @@ physicalDiskDisplayName OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "The physical disk's friendly FQDD as represented in Storage + "The physical disk's friendly FQDD as represented in Storage Management. " ::= { physicalDiskTableEntry 55 } @@ -7458,8 +8233,8 @@ physicalDiskT10PICapability OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "Indicates whether the physical disk supports the T10 PI (Protection - Information). These protection fields are known as DIF + "Indicates whether the physical disk supports the T10 PI (Protection + Information). These protection fields are known as DIF (Data Integrity Fields). Possible values: 1: Not one of the following. @@ -7469,11 +8244,11 @@ physicalDiskT10PICapability OBJECT-TYPE ::= { physicalDiskTableEntry 57 } physicalDiskBlockSizeInBytes OBJECT-TYPE - SYNTAX INTEGER + SYNTAX INTEGER (1..2147483647) MAX-ACCESS read-only STATUS current DESCRIPTION - "The block size (in bytes) of the physical disk. This is not + "The block size (in bytes) of the physical disk. This is not applicable for NVMe devices. 1: 512. 2: 4096 @@ -7485,7 +8260,7 @@ physicalDiskProtocolVersion OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "Applicable for NVMe devices only. The NVMe protocol version supported + "Applicable for NVMe devices only. The NVMe protocol version supported by the device. " ::= { physicalDiskTableEntry 59 } @@ -7525,7 +8300,7 @@ physicalDiskPCIeCapableLinkWidth OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "Applicable for NVMe devices only. The PCIe link widths the device is capable of + "Applicable for NVMe devices only. The PCIe link widths the device is capable of supporting. " ::= { physicalDiskTableEntry 61 } @@ -7536,7 +8311,37 @@ physicalDiskPCIeCapableLinkWidth OBJECT-TYPE -- OID Format: 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.. ------------------------------------------------------------------------------- -VirtualDiskTableEntry ::=SEQUENCE { +virtualDiskTableObjGroup OBJECT-GROUP + OBJECTS { + virtualDiskNumber, + virtualDiskName, + virtualDiskState, + virtualDiskSizeInMB, + virtualDiskWritePolicy, + virtualDiskReadPolicy, + virtualDiskLayout, + virtualDiskStripeSize, + virtualDiskComponentStatus, + virtualDiskBadBlocksDetected, + virtualDiskSecured, + virtualDiskIsCacheCade, + virtualDiskDiskCachePolicy, + virtualDiskOperationalState, + virtualDiskProgress, + virtualDiskAvailableProtocols, + virtualDiskMediaType, + virtualDiskRemainingRedundancy, + virtualDiskFQDD, + virtualDiskDisplayName, + virtualDiskT10PIStatus, + virtualDiskBlockSizeInBytes + } + STATUS current + DESCRIPTION + "A collection of objects providing information about the Virtual Disk Table group." + ::= { conformanceMIBGroups 35 } + +VirtualDiskTableEntry ::=SEQUENCE { virtualDiskNumber INTEGER, virtualDiskName DisplayString, virtualDiskState INTEGER, @@ -7545,7 +8350,7 @@ VirtualDiskTableEntry ::=SEQUENCE { virtualDiskReadPolicy INTEGER, virtualDiskLayout INTEGER, virtualDiskStripeSize INTEGER, - virtualDiskComponentStatus ObjectStatusEnum, + virtualDiskComponentStatus ObjectStatusEnum, virtualDiskBadBlocksDetected BooleanType, virtualDiskSecured BooleanType, virtualDiskIsCacheCade BooleanType, @@ -7567,7 +8372,7 @@ virtualDiskTable OBJECT-TYPE STATUS current DESCRIPTION "A table of managed virtual disks. The number of entries is related - to number of virtual disks discovered in the system. + 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. @@ -7584,7 +8389,7 @@ virtualDiskTableEntry OBJECT-TYPE " INDEX { virtualDiskNumber } ::= { virtualDiskTable 1 } - + virtualDiskNumber OBJECT-TYPE SYNTAX INTEGER (1..100000000) MAX-ACCESS read-only @@ -7594,7 +8399,7 @@ virtualDiskNumber OBJECT-TYPE " ::= { virtualDiskTableEntry 1 } -virtualDiskName OBJECT-TYPE +virtualDiskName OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current @@ -7619,16 +8424,16 @@ virtualDiskState OBJECT-TYPE 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 + 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 + 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 + SYNTAX INTEGER (1..2147483647) MAX-ACCESS read-only STATUS current DESCRIPTION @@ -7636,7 +8441,7 @@ virtualDiskSizeInMB OBJECT-TYPE " ::= { virtualDiskTableEntry 6 } -virtualDiskWritePolicy OBJECT-TYPE +virtualDiskWritePolicy OBJECT-TYPE SYNTAX INTEGER { writeThrough(1), @@ -7646,7 +8451,7 @@ virtualDiskWritePolicy OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "The write policy used by the controller for write operations on + "The write policy used by the controller for write operations on this virtual disk. Possible values: 1: Write Through. @@ -7655,7 +8460,7 @@ virtualDiskWritePolicy OBJECT-TYPE " ::= { virtualDiskTableEntry 10 } -virtualDiskReadPolicy OBJECT-TYPE +virtualDiskReadPolicy OBJECT-TYPE SYNTAX INTEGER { noReadAhead(1), @@ -7665,7 +8470,7 @@ virtualDiskReadPolicy OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "The read policy used by the controller for read operations on + "The read policy used by the controller for read operations on this virtual disk. Possible values: 1: No Read Ahead. @@ -7674,7 +8479,7 @@ virtualDiskReadPolicy OBJECT-TYPE " ::= { virtualDiskTableEntry 11 } -virtualDiskLayout OBJECT-TYPE +virtualDiskLayout OBJECT-TYPE SYNTAX INTEGER { other(1), @@ -7706,7 +8511,7 @@ virtualDiskLayout OBJECT-TYPE " ::= { virtualDiskTableEntry 13 } -virtualDiskStripeSize OBJECT-TYPE +virtualDiskStripeSize OBJECT-TYPE SYNTAX INTEGER { other(1), @@ -7759,7 +8564,7 @@ virtualDiskComponentStatus OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "The status of the virtual disk itself without the + "The status of the virtual disk itself without the propagation of any contained component status. Possible values: 1: Other. @@ -7771,7 +8576,7 @@ virtualDiskComponentStatus OBJECT-TYPE " ::= { virtualDiskTableEntry 20 } -virtualDiskBadBlocksDetected OBJECT-TYPE +virtualDiskBadBlocksDetected OBJECT-TYPE SYNTAX BooleanType MAX-ACCESS read-only STATUS current @@ -7780,7 +8585,7 @@ virtualDiskBadBlocksDetected OBJECT-TYPE " ::= { virtualDiskTableEntry 23 } -virtualDiskSecured OBJECT-TYPE +virtualDiskSecured OBJECT-TYPE SYNTAX BooleanType MAX-ACCESS read-only STATUS current @@ -7789,17 +8594,17 @@ virtualDiskSecured OBJECT-TYPE " ::= { virtualDiskTableEntry 24 } -virtualDiskIsCacheCade OBJECT-TYPE +virtualDiskIsCacheCade OBJECT-TYPE SYNTAX BooleanType MAX-ACCESS read-only STATUS current DESCRIPTION - "Indicates whether the virtual disk is being used as a secondary + "Indicates whether the virtual disk is being used as a secondary cache by the controller. " ::= { virtualDiskTableEntry 25 } -virtualDiskDiskCachePolicy OBJECT-TYPE +virtualDiskDiskCachePolicy OBJECT-TYPE SYNTAX INTEGER { enabled(1), @@ -7809,8 +8614,8 @@ virtualDiskDiskCachePolicy OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "The cache policy of the physical disks that are - part of this virtual disk + "The cache policy of the physical disks that are + part of this virtual disk Possible values: 1: Enabled. 2: Disabled. @@ -7835,12 +8640,12 @@ virtualDiskOperationalState OBJECT-TYPE 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 + The physical disks included in the virtual disk are being modified to support the new configuration. - 3: A Consistency Check (CC) is being performed + 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 + 5: BackGround Initialization (BGI) is being performed on the virtual disk. " ::= { virtualDiskTableEntry 30 } @@ -7850,24 +8655,24 @@ virtualDiskProgress OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "The progress percentage of the operation that is being - performed on the virtual disk. This is applicable + "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 +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 + disk. For e.g. SAS for Serial Attached SCSI or SATA for Serial Advanced Technology Attachment. " ::= { virtualDiskTableEntry 32 } -virtualDiskMediaType OBJECT-TYPE +virtualDiskMediaType OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current @@ -7877,7 +8682,7 @@ virtualDiskMediaType OBJECT-TYPE " ::= { virtualDiskTableEntry 33 } -virtualDiskRemainingRedundancy OBJECT-TYPE +virtualDiskRemainingRedundancy OBJECT-TYPE SYNTAX INTEGER (0..2) MAX-ACCESS read-only STATUS current @@ -7887,12 +8692,12 @@ virtualDiskRemainingRedundancy OBJECT-TYPE " ::= { virtualDiskTableEntry 34 } -virtualDiskFQDD OBJECT-TYPE +virtualDiskFQDD OBJECT-TYPE SYNTAX FQDDString MAX-ACCESS read-only STATUS current DESCRIPTION - "The virtual disk's Fully Qualified Device Descriptor (FQDD) as + "The virtual disk's Fully Qualified Device Descriptor (FQDD) as represented in Storage Management. " ::= { virtualDiskTableEntry 35 } @@ -7902,11 +8707,11 @@ virtualDiskDisplayName OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "The virtual disk's friendly FQDD as represented in Storage + "The virtual disk's friendly FQDD as represented in Storage Management. " ::= { virtualDiskTableEntry 36 } - + virtualDiskT10PIStatus OBJECT-TYPE SYNTAX INTEGER @@ -7918,8 +8723,8 @@ virtualDiskT10PIStatus OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "Indicates whether the virtual disk supports the T10 PI (Protection - Information). These protection fields are known as DIF + "Indicates whether the virtual disk supports the T10 PI (Protection + Information). These protection fields are known as DIF (Data Integrity Fields). Possible values: 1: Not one of the following. @@ -7929,7 +8734,7 @@ virtualDiskT10PIStatus OBJECT-TYPE ::= { virtualDiskTableEntry 37 } virtualDiskBlockSizeInBytes OBJECT-TYPE - SYNTAX INTEGER + SYNTAX INTEGER (1..2147483647) MAX-ACCESS read-only STATUS current DESCRIPTION @@ -7947,15 +8752,45 @@ virtualDiskBlockSizeInBytes OBJECT-TYPE -- OID Format: 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.. ------------------------------------------------------------------------------- -EnclosureTableEntry ::=SEQUENCE { +enclosureTableObjGroup OBJECT-GROUP + OBJECTS { + enclosureNumber, + enclosureName, + enclosureState, + enclosureServiceTag, + enclosureAssetTag, + enclosureConnectedPort, + enclosureRollUpStatus, + enclosureComponentStatus, + enclosureFirmwareVersion, + enclosureSASAddress, + enclosureDriveCount, + enclosureTotalSlots, + enclosureFanCount, + enclosurePSUCount, + enclosureEMMCount, + enclosureTempProbeCount, + enclosureRedundantPath, + enclosurePosition, + enclosureBackplaneBayID, + enclosureFQDD, + enclosureDisplayName, + enclosureType + } + STATUS current + DESCRIPTION + "A collection of objects providing information about the Enclosure Table group." + ::= { conformanceMIBGroups 36 } + +EnclosureTableEntry ::=SEQUENCE { enclosureNumber INTEGER, enclosureName DisplayString, enclosureState INTEGER, enclosureServiceTag DisplayString, enclosureAssetTag DisplayString, enclosureConnectedPort DisplayString, - enclosureRollUpStatus ObjectStatusEnum, - enclosureComponentStatus ObjectStatusEnum, + enclosureRollUpStatus ObjectStatusEnum, + enclosureComponentStatus ObjectStatusEnum, enclosureFirmwareVersion DisplayString, enclosureSASAddress DisplayString, enclosureDriveCount INTEGER, @@ -7977,11 +8812,11 @@ enclosureTable OBJECT-TYPE 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 + "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 + Note: The properties in this table may not be applicable to all entries. " ::= { physicalDevices 3 } @@ -7997,7 +8832,7 @@ enclosureTableEntry OBJECT-TYPE INDEX { enclosureNumber } ::= { enclosureTable 1 } -enclosureNumber OBJECT-TYPE +enclosureNumber OBJECT-TYPE SYNTAX INTEGER (1..255) MAX-ACCESS read-only STATUS current @@ -8006,7 +8841,7 @@ enclosureNumber OBJECT-TYPE " ::= { enclosureTableEntry 1 } -enclosureName OBJECT-TYPE +enclosureName OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current @@ -8015,7 +8850,7 @@ enclosureName OBJECT-TYPE " ::= { enclosureTableEntry 2 } -enclosureState OBJECT-TYPE +enclosureState OBJECT-TYPE SYNTAX INTEGER { unknown(1), @@ -8031,15 +8866,15 @@ enclosureState OBJECT-TYPE 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 + 3: The enclosure has encountered a hardware problem or is not responding. - 4: The enclosure is no longer connected to the controller or + 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 +enclosureServiceTag OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current @@ -8048,7 +8883,7 @@ enclosureServiceTag OBJECT-TYPE " ::= { enclosureTableEntry 8 } -enclosureAssetTag OBJECT-TYPE +enclosureAssetTag OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current @@ -8056,17 +8891,17 @@ enclosureAssetTag OBJECT-TYPE "The asset tag information for the enclosure." ::= { enclosureTableEntry 9 } -enclosureConnectedPort OBJECT-TYPE +enclosureConnectedPort OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current DESCRIPTION - "The port on the controller to which the + "The port on the controller to which the storage enclosure is connected. " ::= { enclosureTableEntry 19 } -enclosureRollUpStatus OBJECT-TYPE +enclosureRollUpStatus OBJECT-TYPE SYNTAX ObjectStatusEnum MAX-ACCESS read-only STATUS current @@ -8083,12 +8918,12 @@ enclosureRollUpStatus OBJECT-TYPE " ::= { enclosureTableEntry 23 } -enclosureComponentStatus OBJECT-TYPE +enclosureComponentStatus OBJECT-TYPE SYNTAX ObjectStatusEnum MAX-ACCESS read-only STATUS current DESCRIPTION - "The status of the enclosure/backplane.itself without the + "The status of the enclosure/backplane.itself without the propagation of any contained component status. Possible values: 1: Other. @@ -8100,7 +8935,7 @@ enclosureComponentStatus OBJECT-TYPE " ::= { enclosureTableEntry 24 } -enclosureFirmwareVersion OBJECT-TYPE +enclosureFirmwareVersion OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current @@ -8118,52 +8953,52 @@ enclosureSASAddress OBJECT-TYPE " ::= { enclosureTableEntry 30 } -enclosureDriveCount OBJECT-TYPE - SYNTAX INTEGER +enclosureDriveCount OBJECT-TYPE + SYNTAX INTEGER (1..255) MAX-ACCESS read-only STATUS current DESCRIPTION "The number of disks present in the enclosure/backplane. - " + " ::= { enclosureTableEntry 31 } -enclosureTotalSlots OBJECT-TYPE - SYNTAX INTEGER +enclosureTotalSlots OBJECT-TYPE + SYNTAX INTEGER (1..255) MAX-ACCESS read-only STATUS current DESCRIPTION - "The total physical drive slots in a storage enclosure + "The total physical drive slots in a storage enclosure or server backplane. " ::= { enclosureTableEntry 32 } -enclosureFanCount OBJECT-TYPE +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 +enclosurePSUCount OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current DESCRIPTION - "The number of Power Supply Units (PSU) present + "The number of Power Supply Units (PSU) present in the storage enclosure. - " + " ::= { enclosureTableEntry 41 } -enclosureEMMCount OBJECT-TYPE +enclosureEMMCount OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current DESCRIPTION - "The number of Enclosure Management Modules (EMM) + "The number of Enclosure Management Modules (EMM) present in the storage enclosure. - " + " ::= { enclosureTableEntry 42 } enclosureTempProbeCount OBJECT-TYPE @@ -8171,22 +9006,22 @@ enclosureTempProbeCount OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "The number of temperature sensing devices + "The number of temperature sensing devices present in the storage enclosure. " ::= { enclosureTableEntry 43 } -enclosureRedundantPath OBJECT-TYPE +enclosureRedundantPath OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current DESCRIPTION - "Indicates whether the controller has multiply paths to + "Indicates whether the controller has multiply paths to reach the storage enclosure. " ::= { enclosureTableEntry 44 } -enclosurePosition OBJECT-TYPE +enclosurePosition OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current @@ -8195,7 +9030,7 @@ enclosurePosition OBJECT-TYPE " ::= { enclosureTableEntry 45 } -enclosureBackplaneBayID OBJECT-TYPE +enclosureBackplaneBayID OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current @@ -8204,27 +9039,27 @@ enclosureBackplaneBayID OBJECT-TYPE " ::= { enclosureTableEntry 46 } -enclosureFQDD OBJECT-TYPE +enclosureFQDD OBJECT-TYPE SYNTAX FQDDString MAX-ACCESS read-only STATUS current DESCRIPTION - "The enclosure/backplane's Fully Qualified Device Descriptor (FQDD) + "The enclosure/backplane's Fully Qualified Device Descriptor (FQDD) as represented in Storage Management. " ::= { enclosureTableEntry 47 } - -enclosureDisplayName OBJECT-TYPE + +enclosureDisplayName OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current DESCRIPTION - "The enclosure/backplane's friendly FQDD as represented in + "The enclosure/backplane's friendly FQDD as represented in Storage Management. " ::= { enclosureTableEntry 48 } -enclosureType OBJECT-TYPE +enclosureType OBJECT-TYPE SYNTAX INTEGER { other(1), @@ -8253,13 +9088,29 @@ enclosureType OBJECT-TYPE -- OID Format: 1.3.6.1.4.1.674.10892.5.5.1.20.130.13.1.. ------------------------------------------------------------------------------- -EnclosureManagementModuleTableEntry ::=SEQUENCE { +enclosureManagementModuleTableObjGroup OBJECT-GROUP + OBJECTS { + enclosureManagementModuleNumber, + enclosureManagementModuleName, + enclosureManagementModuleState, + enclosureManagementModulePartNumber, + enclosureManagementModuleFWVersion, + enclosureManagementModuleComponentStatus, + enclosureManagementModuleFQDD, + enclosureManagementModuleDisplayName + } + STATUS current + DESCRIPTION + "A collection of objects providing information about the Enclosure Management Module Table group." + ::= { conformanceMIBGroups 37 } + +EnclosureManagementModuleTableEntry ::=SEQUENCE { enclosureManagementModuleNumber INTEGER, enclosureManagementModuleName DisplayString, enclosureManagementModuleState INTEGER, enclosureManagementModulePartNumber DisplayString, enclosureManagementModuleFWVersion DisplayString, - enclosureManagementModuleComponentStatus ObjectStatusEnum, + enclosureManagementModuleComponentStatus ObjectStatusEnum, enclosureManagementModuleFQDD FQDDString, enclosureManagementModuleDisplayName DisplayString } @@ -8269,12 +9120,12 @@ enclosureManagementModuleTable OBJECT-TYPE MAX-ACCESS not-accessible STATUS current DESCRIPTION - "A table of managed Enclosure Management Modules (EMM) - in the external storage enclosure(s). The number of + "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 + 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 + Note: The properties in this table may not be applicable to all entries. " ::= { physicalDevices 13 } @@ -8284,8 +9135,8 @@ enclosureManagementModuleTableEntry OBJECT-TYPE 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 + "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 } @@ -8300,17 +9151,17 @@ enclosureManagementModuleNumber OBJECT-TYPE " ::= { enclosureManagementModuleTableEntry 1 } -enclosureManagementModuleName OBJECT-TYPE +enclosureManagementModuleName OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current DESCRIPTION - "The enclosure management module's name as + "The enclosure management module's name as represented in Storage Management. " ::= { enclosureManagementModuleTableEntry 2 } - -enclosureManagementModuleState OBJECT-TYPE + +enclosureManagementModuleState OBJECT-TYPE SYNTAX INTEGER { unknown(1), @@ -8326,7 +9177,7 @@ enclosureManagementModuleState OBJECT-TYPE 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 + 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. @@ -8334,7 +9185,7 @@ enclosureManagementModuleState OBJECT-TYPE " ::= { enclosureManagementModuleTableEntry 4 } -enclosureManagementModulePartNumber OBJECT-TYPE +enclosureManagementModulePartNumber OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current @@ -8342,14 +9193,14 @@ enclosureManagementModulePartNumber OBJECT-TYPE "The part number of the enclosure management module. " ::= { enclosureManagementModuleTableEntry 6 } - -enclosureManagementModuleFWVersion OBJECT-TYPE + +enclosureManagementModuleFWVersion OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current DESCRIPTION "Firmware version of the enclosure management module. - " + " ::= { enclosureManagementModuleTableEntry 8 } enclosureManagementModuleComponentStatus OBJECT-TYPE @@ -8357,7 +9208,7 @@ enclosureManagementModuleComponentStatus OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "The status of the enclosure management module.itself without the + "The status of the enclosure management module.itself without the propagation of any contained component status. Possible values: 1: Other. @@ -8369,22 +9220,22 @@ enclosureManagementModuleComponentStatus OBJECT-TYPE " ::= { enclosureManagementModuleTableEntry 11 } -enclosureManagementModuleFQDD OBJECT-TYPE +enclosureManagementModuleFQDD OBJECT-TYPE SYNTAX FQDDString MAX-ACCESS read-only STATUS current DESCRIPTION - "The enclosure management module's Fully Qualified Device + "The enclosure management module's Fully Qualified Device Descriptor (FQDD) as represented in Storage Management. " ::= { enclosureManagementModuleTableEntry 15 } -enclosureManagementModuleDisplayName OBJECT-TYPE +enclosureManagementModuleDisplayName OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current DESCRIPTION - "The enclosure management module's friendly FQDD as represented in + "The enclosure management module's friendly FQDD as represented in Storage Management. " ::= { enclosureManagementModuleTableEntry 16 } @@ -8395,12 +9246,27 @@ enclosureManagementModuleDisplayName OBJECT-TYPE -- OID Format: 1.3.6.1.4.1.674.10892.5.5.1.20.130.7.1.. ------------------------------------------------------------------------------- -EnclosureFanTableEntry ::=SEQUENCE { +enclosureFanTableObjGroup OBJECT-GROUP + OBJECTS { + enclosureFanNumber, + enclosureFanName, + enclosureFanState, + enclosureFanSpeed, + enclosureFanComponentStatus, + enclosureFanFQDD, + enclosureFanDisplayName + } + STATUS current + DESCRIPTION + "A collection of objects providing information about the Enclosure Fan Table group." + ::= { conformanceMIBGroups 38 } + +EnclosureFanTableEntry ::=SEQUENCE { enclosureFanNumber INTEGER, enclosureFanName DisplayString, enclosureFanState INTEGER, enclosureFanSpeed INTEGER, - enclosureFanComponentStatus ObjectStatusEnum, + enclosureFanComponentStatus ObjectStatusEnum, enclosureFanFQDD FQDDString, enclosureFanDisplayName DisplayString } @@ -8410,15 +9276,15 @@ enclosureFanTable OBJECT-TYPE 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 + "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 + Note: The properties in this table may not be applicable to all entries. " ::= { physicalDevices 7 } - + enclosureFanTableEntry OBJECT-TYPE SYNTAX EnclosureFanTableEntry MAX-ACCESS not-accessible @@ -8439,7 +9305,7 @@ enclosureFanNumber OBJECT-TYPE " ::= { enclosureFanTableEntry 1 } -enclosureFanName OBJECT-TYPE +enclosureFanName OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current @@ -8464,23 +9330,16 @@ enclosureFanState OBJECT-TYPE 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 + 3: The fan has encountered a hardware problem or is not responding. - 4: The fan is no longer connected to the enclosure or + 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) - } +enclosureFanSpeed OBJECT-TYPE + SYNTAX INTEGER (1..2147483647) MAX-ACCESS read-only STATUS current DESCRIPTION @@ -8488,12 +9347,12 @@ enclosureFanSpeed OBJECT-TYPE " ::= { enclosureFanTableEntry 11 } -enclosureFanComponentStatus OBJECT-TYPE +enclosureFanComponentStatus OBJECT-TYPE SYNTAX ObjectStatusEnum MAX-ACCESS read-only STATUS current DESCRIPTION - "The status of the fan itself without the + "The status of the fan itself without the propagation of any contained component status. Possible values: 1: Other. @@ -8510,7 +9369,7 @@ enclosureFanFQDD OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "The fan's Fully Qualified Device Descriptor (FQDD) + "The fan's Fully Qualified Device Descriptor (FQDD) as represented in Storage Management. " ::= { enclosureFanTableEntry 20 } @@ -8520,7 +9379,7 @@ enclosureFanDisplayName OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "The fan's friendly FQDD as represented in + "The fan's friendly FQDD as represented in Storage Management. " ::= { enclosureFanTableEntry 21 } @@ -8532,12 +9391,27 @@ enclosureFanDisplayName OBJECT-TYPE -- OID Format: 1.3.6.1.4.1.674.10892.5.5.1.20.130.9.1.. ------------------------------------------------------------------------------- -EnclosurePowerSupplyTableEntry ::=SEQUENCE { +enclosurePowerSupplyTableObjGroup OBJECT-GROUP + OBJECTS { + enclosurePowerSupplyNumber, + enclosurePowerSupplyName, + enclosurePowerSupplyState, + enclosurePowerSupplyPartNumber, + enclosurePowerSupplyComponentStatus, + enclosurePowerSupplyFQDD, + enclosurePowerSupplyDisplayName + } + STATUS current + DESCRIPTION + "A collection of objects providing information about the Enclosure Power Supply Table group." + ::= { conformanceMIBGroups 39 } + +EnclosurePowerSupplyTableEntry ::=SEQUENCE { enclosurePowerSupplyNumber INTEGER, enclosurePowerSupplyName DisplayString, enclosurePowerSupplyState INTEGER, enclosurePowerSupplyPartNumber DisplayString, - enclosurePowerSupplyComponentStatus ObjectStatusEnum, + enclosurePowerSupplyComponentStatus ObjectStatusEnum, enclosurePowerSupplyFQDD FQDDString, enclosurePowerSupplyDisplayName DisplayString } @@ -8547,22 +9421,22 @@ enclosurePowerSupplyTable OBJECT-TYPE 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 + "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 + 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 + "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 } @@ -8577,17 +9451,17 @@ enclosurePowerSupplyNumber OBJECT-TYPE " ::= { enclosurePowerSupplyTableEntry 1 } -enclosurePowerSupplyName OBJECT-TYPE +enclosurePowerSupplyName OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current DESCRIPTION - "The power supply unit's name as represented in + "The power supply unit's name as represented in Storage Management. " ::= { enclosurePowerSupplyTableEntry 2 } -enclosurePowerSupplyState OBJECT-TYPE +enclosurePowerSupplyState OBJECT-TYPE SYNTAX INTEGER { unknown(1), @@ -8603,29 +9477,29 @@ enclosurePowerSupplyState OBJECT-TYPE 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 + 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 + 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 +enclosurePowerSupplyPartNumber OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current DESCRIPTION - "The part number of the power supply unit. + "The part number of the power supply unit. " ::= { enclosurePowerSupplyTableEntry 7 } -enclosurePowerSupplyComponentStatus OBJECT-TYPE +enclosurePowerSupplyComponentStatus OBJECT-TYPE SYNTAX ObjectStatusEnum MAX-ACCESS read-only STATUS current DESCRIPTION - "The status of the power supply unit itself without the + "The status of the power supply unit itself without the propagation of any contained component status. Possible values: 1: Other. @@ -8637,7 +9511,7 @@ enclosurePowerSupplyComponentStatus OBJECT-TYPE " ::= { enclosurePowerSupplyTableEntry 9 } -enclosurePowerSupplyFQDD OBJECT-TYPE +enclosurePowerSupplyFQDD OBJECT-TYPE SYNTAX FQDDString MAX-ACCESS read-only STATUS current @@ -8647,12 +9521,12 @@ enclosurePowerSupplyFQDD OBJECT-TYPE " ::= { enclosurePowerSupplyTableEntry 15 } -enclosurePowerSupplyDisplayName OBJECT-TYPE +enclosurePowerSupplyDisplayName OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current DESCRIPTION - "The power supply unit's friendly FQDD as represented in + "The power supply unit's friendly FQDD as represented in Storage Management. " ::= { enclosurePowerSupplyTableEntry 16 } @@ -8664,7 +9538,26 @@ enclosurePowerSupplyDisplayName OBJECT-TYPE -- OID Format: 1.3.6.1.4.1.674.10892.5.5.1.20.130.11.1.. ------------------------------------------------------------------------------- -EnclosureTemperatureProbeTableEntry ::=SEQUENCE { +enclosureTemperatureProbeTableObjGroup OBJECT-GROUP + OBJECTS { + enclosureTemperatureProbeNumber, + enclosureTemperatureProbeName, + enclosureTemperatureProbeState, + enclosureTemperatureProbeMinWarningValue, + enclosureTemperatureProbeMinCriticalValue, + enclosureTemperatureProbeMaxWarningValue, + enclosureTemperatureProbeMaxCriticalValue, + enclosureTemperatureProbeCurValue, + enclosureTemperatureProbeComponentStatus, + enclosureTemperatureProbeFQDD, + enclosureTemperatureProbeDisplayName + } + STATUS current + DESCRIPTION + "A collection of objects providing information about the Enclosure Temperature Probe Table group." + ::= { conformanceMIBGroups 40 } + +EnclosureTemperatureProbeTableEntry ::=SEQUENCE { enclosureTemperatureProbeNumber INTEGER, enclosureTemperatureProbeName DisplayString, enclosureTemperatureProbeState INTEGER, @@ -8673,7 +9566,7 @@ EnclosureTemperatureProbeTableEntry ::=SEQUENCE { enclosureTemperatureProbeMaxWarningValue INTEGER, enclosureTemperatureProbeMaxCriticalValue INTEGER, enclosureTemperatureProbeCurValue INTEGER, - enclosureTemperatureProbeComponentStatus ObjectStatusEnum, + enclosureTemperatureProbeComponentStatus ObjectStatusEnum, enclosureTemperatureProbeFQDD FQDDString, enclosureTemperatureProbeDisplayName DisplayString } @@ -8684,14 +9577,14 @@ enclosureTemperatureProbeTable OBJECT-TYPE 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 + 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 + Note: The properties in this table may not be applicable to all entries. " ::= { physicalDevices 11 } - + enclosureTemperatureProbeTableEntry OBJECT-TYPE SYNTAX EnclosureTemperatureProbeTableEntry MAX-ACCESS not-accessible @@ -8712,17 +9605,17 @@ enclosureTemperatureProbeNumber OBJECT-TYPE " ::= { enclosureTemperatureProbeTableEntry 1 } -enclosureTemperatureProbeName OBJECT-TYPE +enclosureTemperatureProbeName OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current DESCRIPTION - "The temperature probe's name as represented in + "The temperature probe's name as represented in Storage Management. " ::= { enclosureTemperatureProbeTableEntry 2 } -enclosureTemperatureProbeState OBJECT-TYPE +enclosureTemperatureProbeState OBJECT-TYPE SYNTAX INTEGER { unknown(1), @@ -8738,16 +9631,16 @@ enclosureTemperatureProbeState OBJECT-TYPE 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 + 3: The temperature probe has encountered a hardware problem or is not responding. - 4: The temperature probe is no longer connected to the enclosure + 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 +enclosureTemperatureProbeMinWarningValue OBJECT-TYPE + SYNTAX INTEGER (-127..128) MAX-ACCESS read-only STATUS current DESCRIPTION @@ -8756,8 +9649,8 @@ enclosureTemperatureProbeMinWarningValue OBJECT-TYPE " ::= { enclosureTemperatureProbeTableEntry 7 } -enclosureTemperatureProbeMinCriticalValue OBJECT-TYPE - SYNTAX INTEGER +enclosureTemperatureProbeMinCriticalValue OBJECT-TYPE + SYNTAX INTEGER (-128..127) MAX-ACCESS read-only STATUS current DESCRIPTION @@ -8766,8 +9659,8 @@ enclosureTemperatureProbeMinCriticalValue OBJECT-TYPE " ::= { enclosureTemperatureProbeTableEntry 8 } -enclosureTemperatureProbeMaxWarningValue OBJECT-TYPE - SYNTAX INTEGER +enclosureTemperatureProbeMaxWarningValue OBJECT-TYPE + SYNTAX INTEGER (-128..127) MAX-ACCESS read-only STATUS current DESCRIPTION @@ -8776,8 +9669,8 @@ enclosureTemperatureProbeMaxWarningValue OBJECT-TYPE " ::= { enclosureTemperatureProbeTableEntry 9 } -enclosureTemperatureProbeMaxCriticalValue OBJECT-TYPE - SYNTAX INTEGER +enclosureTemperatureProbeMaxCriticalValue OBJECT-TYPE + SYNTAX INTEGER (-128..127) MAX-ACCESS read-only STATUS current DESCRIPTION @@ -8785,9 +9678,9 @@ enclosureTemperatureProbeMaxCriticalValue OBJECT-TYPE a warning state. " ::= { enclosureTemperatureProbeTableEntry 10 } - -enclosureTemperatureProbeCurValue OBJECT-TYPE - SYNTAX INTEGER + +enclosureTemperatureProbeCurValue OBJECT-TYPE + SYNTAX INTEGER (-128..127) MAX-ACCESS read-only STATUS current DESCRIPTION @@ -8801,7 +9694,7 @@ enclosureTemperatureProbeComponentStatus OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "The status of the enclosure management module.itself without the + "The status of the enclosure management module.itself without the propagation of any contained component status. Possible values: 1: Other. @@ -8811,8 +9704,8 @@ enclosureTemperatureProbeComponentStatus OBJECT-TYPE 5: Critical. 6: Non-recoverable. " - ::= { enclosureTemperatureProbeTableEntry 13 } - + ::= { enclosureTemperatureProbeTableEntry 13 } + enclosureTemperatureProbeFQDD OBJECT-TYPE SYNTAX FQDDString MAX-ACCESS read-only @@ -8822,13 +9715,13 @@ enclosureTemperatureProbeFQDD OBJECT-TYPE as represented in Storage Management. " ::= { enclosureTemperatureProbeTableEntry 15 } - -enclosureTemperatureProbeDisplayName OBJECT-TYPE + +enclosureTemperatureProbeDisplayName OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current DESCRIPTION - "The temperature probe's friendly FQDD as represented + "The temperature probe's friendly FQDD as represented in Storage Management. " ::= { enclosureTemperatureProbeTableEntry 16 } @@ -8855,6 +9748,13 @@ enclosureTemperatureProbeDisplayName OBJECT-TYPE -- Category: System/1 -- Subcategory: AMP/16 ------------------------------------------------------------------------------ +alertnotification NOTIFICATION-GROUP + NOTIFICATIONS { alertAmperageProbeNormal, alertAmperageProbeWarning ,alertAmperageProbeFailure } + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 1 } alertAmperageProbeNormal NOTIFICATION-TYPE OBJECTS { alertMessageID, @@ -8947,6 +9847,14 @@ alertAmperageProbeFailure NOTIFICATION-TYPE -- Subcategory: ASR/23 ------------------------------------------------------------------------------ +alertAutomaticSystemRecoveryTrapNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertAutomaticSystemRecovery } + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 2 } + alertAutomaticSystemRecovery NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -8974,7 +9882,7 @@ alertAutomaticSystemRecovery NOTIFICATION-TYPE --#STATE OPERATIONAL --#STATUS current ::= { systemAlertTrapGroup 0 2233 } - + ------------------------------------------------------------------------------ -- Battery Traps -- @@ -8982,6 +9890,14 @@ alertAutomaticSystemRecovery NOTIFICATION-TYPE -- Subcategory: BAT/22 ------------------------------------------------------------------------------ +alertBatteryTrapsNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertBatteryNormal, alertBatteryWarning, alertBatteryFailure} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 3 } + alertBatteryNormal NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -9074,6 +9990,14 @@ alertBatteryFailure NOTIFICATION-TYPE -- Subcategory: CBL/43 ------------------------------------------------------------------------------ +cableTrapsNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertCableFailure } + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 4 } + alertCableFailure NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -9109,6 +10033,14 @@ alertCableFailure NOTIFICATION-TYPE -- Subcategory: CMC/62 ------------------------------------------------------------------------------ +cmcTrapsNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertCMCWarning, alertCMCFailure } + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 5 } + alertCMCWarning NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -9172,6 +10104,14 @@ alertCMCFailure NOTIFICATION-TYPE -- Subcategory: CPU/24 ------------------------------------------------------------------------------ +processorDeviceStatusTrapsNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertProcessorDeviceStatusNormal, alertProcessorDeviceStatusWarning, alertProcessorDeviceStatusFailure } + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 6 } + alertProcessorDeviceStatusNormal NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -9263,6 +10203,14 @@ alertProcessorDeviceStatusFailure NOTIFICATION-TYPE -- Subcategory: CPUA/51 ------------------------------------------------------------------------------ +processorDeviceAbsentTrapNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertProcessorDeviceAbsent} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 7 } + alertProcessorDeviceAbsent NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -9298,6 +10246,14 @@ alertProcessorDeviceAbsent NOTIFICATION-TYPE -- Subcategory: FAN/13 ------------------------------------------------------------------------------ +fanTrapsNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertFanInformation, alertFanWarning, alertFanFailure } + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 8 } + alertFanInformation NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -9389,6 +10345,14 @@ alertFanFailure NOTIFICATION-TYPE -- Subcategory: FC/61 ------------------------------------------------------------------------------ +fiberChannelTrapsNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertFiberChannelInformation, alertFiberChannelWarning, alertFiberChannelFailure } + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 9 } + alertFiberChannelInformation NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -9480,6 +10444,14 @@ alertFiberChannelFailure NOTIFICATION-TYPE -- Subcategory: HWC/35 ------------------------------------------------------------------------------ +hardwareConfigurationTrapsNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertHardwareConfigurationInformation, alertHardwareConfigurationWarning, alertHardwareConfigurationFailure } + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 10 } + alertHardwareConfigurationInformation NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -9571,6 +10543,14 @@ alertHardwareConfigurationFailure NOTIFICATION-TYPE -- Subcategory: IOV/63 ------------------------------------------------------------------------------ +ioVirtualizationTrapsNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertIOVirtualizationFailure} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 11 } + alertIOVirtualizationFailure NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -9606,6 +10586,14 @@ alertIOVirtualizationFailure NOTIFICATION-TYPE -- Subcategory: LNK/25 ------------------------------------------------------------------------------ +linkStatusTrapsNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertLinkStatusInformation, alertLinkStatusWarning, alertLinkStatusFailure} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 12 } + alertLinkStatusInformation NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -9697,6 +10685,14 @@ alertLinkStatusFailure NOTIFICATION-TYPE -- Subcategory: MEM/27 ------------------------------------------------------------------------------ +memoryDeviceTrapsNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertMemoryDeviceInformation, alertMemoryDeviceWarning, alertMemoryDeviceFailure} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 13 } + alertMemoryDeviceInformation NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -9788,6 +10784,14 @@ alertMemoryDeviceFailure NOTIFICATION-TYPE -- Subcategory: NIC/5 ------------------------------------------------------------------------------ +nicTrapsNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertNetworkInformation, alertNetworkWarning, alertNetworkFailure} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 14 } + alertNetworkInformation NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -9879,6 +10883,14 @@ alertNetworkFailure NOTIFICATION-TYPE -- Subcategory: OSE/45 ------------------------------------------------------------------------------ +osTrapsNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertOSInformation, alertOSFailure} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 15 } + alertOSInformation NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -9944,6 +10956,14 @@ alertOSFailure NOTIFICATION-TYPE -- Subcategory: PCI/46 ------------------------------------------------------------------------------ +pciDeviceTrapsNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertPCIDeviceInformation, alertPCIDeviceWarning, alertPCIDeviceFailure} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 16 } + alertPCIDeviceInformation NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -10035,6 +11055,14 @@ alertPCIDeviceFailure NOTIFICATION-TYPE -- Subcategory: PDR/31 ------------------------------------------------------------------------------ +physicaldiskTrapsNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertPhysicalDiskInformation, alertPhysicalDiskWarning, alertPhysicalDiskFailure} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 17 } + alertPhysicalDiskInformation NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -10119,6 +11147,49 @@ alertPhysicalDiskFailure NOTIFICATION-TYPE --#STATUS current ::= { systemAlertTrapGroup 0 2297 } +------------------------------------------------------------------------------ +-- System Performance Traps +-- +-- Category: System/1 +-- Subcategory: PFM/75 +------------------------------------------------------------------------------ + +systemPerformanceTrapsNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertSystemPerformanceWarning} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 35 } + +alertSystemPerformanceWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "System Performance warning." + --#TYPE "System: Performance 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, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2650 } + ------------------------------------------------------------------------------ -- BIOS POST Trap -- @@ -10126,6 +11197,14 @@ alertPhysicalDiskFailure NOTIFICATION-TYPE -- Subcategory: PST/47 ------------------------------------------------------------------------------ +biosPOSTTrapNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertBiosPostFailure} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 18 } + alertBiosPostFailure NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -10161,6 +11240,14 @@ alertBiosPostFailure NOTIFICATION-TYPE -- Subcategory: PSU/17 ------------------------------------------------------------------------------ +powerSupplyTrapsNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertPowerSupplyNormal, alertPowerSupplyWarning, alertPowerSupplyFailure} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 19 } + alertPowerSupplyNormal NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -10252,6 +11339,14 @@ alertPowerSupplyFailure NOTIFICATION-TYPE -- Subcategory: PSUA/52 ------------------------------------------------------------------------------ +powerSupplyAbsentTrapNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertPowerSupplyAbsent} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 20 } + alertPowerSupplyAbsent NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -10287,6 +11382,14 @@ alertPowerSupplyAbsent NOTIFICATION-TYPE -- Subcategory: PWR/28 ------------------------------------------------------------------------------ +powerUsageTrapsNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertPowerUsageInformation, alertPowerUsageWarning, alertPowerUsageFailure} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 21 } + alertPowerUsageInformation NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -10373,6 +11476,49 @@ alertPowerUsageFailure NOTIFICATION-TYPE --#STATUS current ::= { systemAlertTrapGroup 0 2273 } +------------------------------------------------------------------------------ +-- RAC Traps +-- +-- Category: System/1 +-- Subcategory: RAC/60 +------------------------------------------------------------------------------ + +racTrapsNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertRACInformation} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 34 } + +alertRACInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "RAC information." + --#TYPE "System: RAC 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, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2531 } + ------------------------------------------------------------------------------ -- Redundancy Traps -- @@ -10380,6 +11526,14 @@ alertPowerUsageFailure NOTIFICATION-TYPE -- Subcategory: RDU/53 ------------------------------------------------------------------------------ +redundancyTrapsNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertRedundancyInformation, alertRedundancyDegraded, alertRedundancyLost} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 22 } + alertRedundancyInformation NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -10471,6 +11625,14 @@ alertRedundancyLost NOTIFICATION-TYPE -- Subcategory: RFL/20 ------------------------------------------------------------------------------ +integratedDualSDModuleTrapsNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertIntegratedDualSDModuleInformation, alertIntegratedDualSDModuleWarning, alertIntegratedDualSDModuleFailure} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 23 } + alertIntegratedDualSDModuleInformation NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -10562,6 +11724,14 @@ alertIntegratedDualSDModuleFailure NOTIFICATION-TYPE -- Subcategory: RFLA/54 ------------------------------------------------------------------------------ +integratedDualSDModuleAbsentTrapNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertIntegratedDualSDModuleAbsent} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 24 } + alertIntegratedDualSDModuleAbsent NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -10597,6 +11767,14 @@ alertIntegratedDualSDModuleAbsent NOTIFICATION-TYPE -- Subcategory: RRDU/55 ------------------------------------------------------------------------------ +integratedDualSDModuleRedundancyTrapsNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertIntegratedDualSDModuleRedundancyInformation, alertIntegratedDualSDModuleRedundancyDegraded, alertIntegratedDualSDModuleRedundancyLost} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 25 } + alertIntegratedDualSDModuleRedundancyInformation NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -10688,6 +11866,14 @@ alertIntegratedDualSDModuleRedundancyLost NOTIFICATION-TYPE -- Subcategory: SEC/42 ------------------------------------------------------------------------------ +securityEventTrapsNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertSecurityInformation, alertSecurityWarning, alertSecurityFailure} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 26 } + alertSecurityInformation NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -10779,6 +11965,14 @@ alertSecurityFailure NOTIFICATION-TYPE -- Subcategory: SEL/41 ------------------------------------------------------------------------------ +systemEventLogTrapsNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertSystemEventLogInformation, alertSystemEventLogWarning, alertSystemEventLogFailure} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 27 } + alertSystemEventLogInformation NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -10870,6 +12064,14 @@ alertSystemEventLogFailure NOTIFICATION-TYPE -- Subcategory: SWC/36 ------------------------------------------------------------------------------ +softwareConfigurationTrapsNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertSoftwareConfigurationInformation, alertSoftwareConfigurationWarning, alertSoftwareConfigurationFailure } + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 28 } + alertSoftwareConfigurationInformation NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -10954,6 +12156,92 @@ alertSoftwareConfigurationFailure NOTIFICATION-TYPE --#STATUS current ::= { systemAlertTrapGroup 0 2337 } +------------------------------------------------------------------------------ +-- iDRAC Memory Unresponsive Trap +-- +-- Category: System/1 +-- Subcategory: SYS/48 +------------------------------------------------------------------------------ + +alertInternaliDRACMemoryUnresponsiveTrapNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertInternaliDRACMemoryUnresponsive } + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 65 } + + +alertInternaliDRACMemoryUnresponsive NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Unable to communicate with internal iDRAC memory" + --#TYPE "System: Internal iDRAC Memory Unresponsive" + --#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, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2433 } + +------------------------------------------------------------------------------ +-- Server Idle Time Trap +-- +-- Category: System/1 +-- Subcategory: SYS/48 +------------------------------------------------------------------------------ +alertServerIdleTimeNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertServerIdleTime} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 68 } + +alertServerIdleTime NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Server is either idle or underutilized" + --#TYPE "System: Server is either idle or underutilized" + --#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, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2435 } + ------------------------------------------------------------------------------ -- Temperature Probe Traps -- @@ -10961,6 +12249,14 @@ alertSoftwareConfigurationFailure NOTIFICATION-TYPE -- Subcategory: TMP/14 ------------------------------------------------------------------------------ +temperatureProbeTrapsNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertTemperatureProbeNormal, alertTemperatureProbeWarning, alertTemperatureProbeFailure } + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 29 } + alertTemperatureProbeNormal NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -11052,6 +12348,14 @@ alertTemperatureProbeFailure NOTIFICATION-TYPE -- Subcategory: TMPS/59 ------------------------------------------------------------------------------ +temperatureStatisticsTrapsNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertTemperatureStatisticsWarning, alertTemperatureStatisticsFailure } + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 30 } + alertTemperatureStatisticsWarning NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -11117,6 +12421,14 @@ alertTemperatureStatisticsFailure NOTIFICATION-TYPE -- Subcategory: VFL/57 ------------------------------------------------------------------------------ +vFlashMediaDeviceTrapsNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertvFlashMediaDeviceInformation, alertvFlashMediaDeviceWarning, alertvFlashMediaDeviceFailure} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 31 } + alertvFlashMediaDeviceInformation NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -11208,6 +12520,14 @@ alertvFlashMediaDeviceFailure NOTIFICATION-TYPE -- Subcategory: VFLA/58 ------------------------------------------------------------------------------ +vFlashMediaDeviceAbsentTrapNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertvFlashMediaDeviceAbsent} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 32 } + alertvFlashMediaDeviceAbsent NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -11243,6 +12563,14 @@ alertvFlashMediaDeviceAbsent NOTIFICATION-TYPE -- Subcategory: VLT/15 ------------------------------------------------------------------------------ +voltageProbeTrapsNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertVoltageProbeNormal, alertVoltageProbeWarning, alertVoltageProbeFailure} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 33 } + alertVoltageProbeNormal NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -11328,29 +12656,37 @@ alertVoltageProbeFailure NOTIFICATION-TYPE ::= { systemAlertTrapGroup 0 2169 } ------------------------------------------------------------------------------ --- RAC Traps +-- Liquid Cooling Traps -- -- Category: System/1 --- Subcategory: RAC/60 +-- Subcategory: LCS/15 ------------------------------------------------------------------------------ -alertRACInformation NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag, - alertChassisName, - alertRacFQDN } +liquidCoolingTrapsNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertLiquidCoolingLeakInformational, alertLiquidCoolingLeakWarning, alertLiquidCoolingLeakFailure} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 70 } + +alertLiquidCoolingLeakInformational NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } STATUS current DESCRIPTION - "RAC information." - --#TYPE "System: RAC Information" - --#SEVERITY INFORMATIONAL + "A small leak that was earlier detected on the device is now resolved." + --#TYPE "System: Liquid Cooling" + --#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," @@ -11358,18 +12694,79 @@ alertRACInformation NOTIFICATION-TYPE --#SUMMARY "RAC FQDN: %s" --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS current - ::= { systemAlertTrapGroup 0 2531 } + --#STATE DEGRADED + --#STATUS MANDATORY + ::= { systemAlertTrapGroup 0 3051 } + +alertLiquidCoolingLeakWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION "A small leak is detected on the device" + --#TYPE "System: Liquid Cooling 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, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= { systemAlertTrapGroup 0 3050 } + +alertLiquidCoolingLeakFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION "A large leak is detected on the device" + --#TYPE "System: Liquid Cooling" + --#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, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= { systemAlertTrapGroup 0 3049 } ------------------------------------------------------------------------------ --- System Performance Traps +-- iDRAC SDK Traps -- --- Category: System/1 --- Subcategory: PFM/75 +-- Category: Configuration/5 +-- Subcategory: SDK/129 ------------------------------------------------------------------------------ +alertSDKSystemNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertSDKSystemWarning, alertSDKSystemInformational } + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 77 } -alertSystemPerformanceWarning NOTIFICATION-TYPE +alertSDKSystemWarning NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, alertCurrentStatus, @@ -11382,9 +12779,8 @@ alertSystemPerformanceWarning NOTIFICATION-TYPE alertChassisName, alertRacFQDN } STATUS current - DESCRIPTION - "System Performance warning." - --#TYPE "System: Performance Warning" + DESCRIPTION "The iDRAC generated a trap event due to a warning from SDK plugin." + --#TYPE "iDRAC Extensibility SDK event" --#SEVERITY MINOR --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," --#SUMMARY "Device Status: %d, Device FQDD: %s," @@ -11395,8 +12791,131 @@ alertSystemPerformanceWarning NOTIFICATION-TYPE --#CATEGORY "Status Events" --#STATE DEGRADED --#STATUS current - ::= { systemAlertTrapGroup 0 2650 } + ::= { systemAlertTrapGroup 0 3082 } +alertSDKSystemInformational NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "The iDRAC generated a trap as iDRAC SDK plugin started working as expected." + --#TYPE "iDRAC Extensibility SDK 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, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 3083 } + +------------------------------------------------------------------------------ +-- iDRAC SDPM Traps +-- +-- Category: System Health/1 +-- Subcategory: SDPM/155 +------------------------------------------------------------------------------ +alertSDPMSystemNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertSDPMSystemInformational, alertSDPMSystemWarning, alertSDPMSystemCritical} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 79 } + +alertSDPMSystemInformational NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "The iDRAC generated a trap as iDRAC Software Defined Persistent Memory(SDPM) started working as expected." + --#TYPE "iDRAC Extensibility SDPM 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, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 3291 } + +alertSDPMSystemWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION "The iDRAC generated a trap event due to a warning from Software Defined Persistent Memory(SDPM)." + --#TYPE "iDRAC Extensibility SDPM event" + --#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, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 3290 } + +alertSDPMSystemCritical NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION "A System Defined Persistent Memory(SDPM) error is detected on the device" + --#TYPE "iDRAC Extensibility SDPM event" + --#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, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= { systemAlertTrapGroup 0 3289 } ------------------------------------------------------------------------------ -- Storage Alert Trap Group @@ -11405,6 +12924,83 @@ alertSystemPerformanceWarning NOTIFICATION-TYPE -- -- OID Format: 1.3.6.1.4.1.674.10892.5.3.2.2 ------------------------------------------------------------------------------ +------------------------------------------------------------------------------ +-- Certificate Alert Trap +-- +-- Category: Audit/4 +-- Subcategory: CERT/14 +------------------------------------------------------------------------------ +alertCertificateValidityNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertCertificateValidityWarning, alertCertificateValidityError } + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 78 } + +alertCertificateValidityWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Certificate Validity State Change Warning" + --#TYPE "Audit: Configuration or state Change Information" + --#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, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= { systemAlertTrapGroup 0 9442 } + +alertCertificateValidityError NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Certificate Validity Failure or Critical event" + --#TYPE "Audit: state Change Information" + --#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, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= { systemAlertTrapGroup 0 9441 } + +------------------------------------------------------------------------------ +-- Configuration Alert Trap Group +-- Configuration Traps +-- Category: Configuration/5 +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.3.2.5 +------------------------------------------------------------------------------ ------------------------------------------------------------------------------ -- Battery Traps @@ -11413,6 +13009,14 @@ alertSystemPerformanceWarning NOTIFICATION-TYPE -- Subcategory: BAT/22 ------------------------------------------------------------------------------ +batteryTrapsNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertStorageBatteryInformation, alertStorageBatteryWarning, alertStorageBatteryFailure} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 36 } + alertStorageBatteryInformation NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -11504,6 +13108,14 @@ alertStorageBatteryFailure NOTIFICATION-TYPE -- Subcategory: CTL/29 ------------------------------------------------------------------------------ +storageControllerTrapsNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertStorageControllerInformation, alertStorageControllerWarning, alertStorageControllerFailure} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 37 } + alertStorageControllerInformation NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -11595,6 +13207,14 @@ alertStorageControllerFailure NOTIFICATION-TYPE -- Subcategory: ENC/30 ------------------------------------------------------------------------------ +enclosureTrapsNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertStorageEnclosureInformation, alertStorageEnclosureWarning, alertStorageEnclosureFailure} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 38 } + alertStorageEnclosureInformation NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -11686,6 +13306,14 @@ alertStorageEnclosureFailure NOTIFICATION-TYPE -- Subcategory: FAN/13 ------------------------------------------------------------------------------ +fanStorageTrapsNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertStorageFanInformation, alertStorageFanWarning, alertStorageFanFailure} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 39 } + alertStorageFanInformation NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -11777,6 +13405,14 @@ alertStorageFanFailure NOTIFICATION-TYPE -- Subcategory: PDR/31 ------------------------------------------------------------------------------ +physicalDiskTrapsNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertStoragePhysicalDiskInformation, alertStoragePhysicalDiskWarning, alertStoragePhysicalDiskFailure} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 40 } + alertStoragePhysicalDiskInformation NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -11868,6 +13504,14 @@ alertStoragePhysicalDiskFailure NOTIFICATION-TYPE -- Subcategory: PSU/17 ------------------------------------------------------------------------------ +storagePowerSupplyTrapsNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertStoragePowerSupplyInformation, alertStoragePowerSupplyWarning, alertStoragePowerSupplyFailure} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 41 } + alertStoragePowerSupplyInformation NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -11959,6 +13603,14 @@ alertStoragePowerSupplyFailure NOTIFICATION-TYPE -- Subcategory: SEC/42 ------------------------------------------------------------------------------ +alertStorageSecurityTrapsNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertStorageSecurityInformation, alertStorageSecurityWarning, alertStorageSecurityFailure} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 42 } + alertStorageSecurityInformation NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -12043,6 +13695,49 @@ alertStorageSecurityFailure NOTIFICATION-TYPE --#STATUS current ::= { storageAlertTrapGroup 0 4433 } +------------------------------------------------------------------------------ +-- Solid State Drive +-- +-- Category: storage/2 +-- Subcategory: SSD/34 +------------------------------------------------------------------------------ + +storageSolidstateDriveTrapsNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertStorageBatteryInformation } + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 66 } + +alertStorageSolidstateDrive NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "SSD is less than the threshold value." + --#TYPE "Storage: SSD 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, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { storageAlertTrapGroup 0 4370 } + ------------------------------------------------------------------------------ -- Storage Management Status Traps -- @@ -12050,6 +13745,14 @@ alertStorageSecurityFailure NOTIFICATION-TYPE -- Subcategory: STOR/10 ------------------------------------------------------------------------------ +alertStorageManagementTrapsNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertStorageManagementInformation, alertStorageManagementWarning, alertStorageManagementFailure} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 43 } + alertStorageManagementInformation NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -12145,6 +13848,14 @@ alertStorageManagementFailure NOTIFICATION-TYPE -- Subcategory: TMP/14 ------------------------------------------------------------------------------ +alertStorageTemperatureProbeTrapsNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertStorageTemperatureProbeInformation, alertStorageTemperatureProbeWarning, alertStorageTemperatureProbeFailure} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 44 } + alertStorageTemperatureProbeInformation NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -12236,6 +13947,14 @@ alertStorageTemperatureProbeFailure NOTIFICATION-TYPE -- Subcategory: VDR/32 ------------------------------------------------------------------------------ +alertStorageVirtualDiskTrapsNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertStorageVirtualDiskInformation, alertStorageVirtualDiskWarning, alertStorageVirtualDiskFailure} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 45 } + alertStorageVirtualDiskInformation NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -12320,6 +14039,75 @@ alertStorageVirtualDiskFailure NOTIFICATION-TYPE --#STATUS current ::= { storageAlertTrapGroup 0 4353 } +------------------------------------------------------------------------------ +-- Software defined subsystem Trap +-- +-- Category: Storage/2 +-- Subcategory: SDS/14 +------------------------------------------------------------------------------ +alertStorageSoftwareDefinedSubSystemTrapsNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertStorageSoftwareDefinedSubSystemFailure, alertStorageSoftwareDefinedSubSystemWarning} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 71 } + +alertStorageSoftwareDefinedSubSystemFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Software defined storage subsystem failure." + --#TYPE "Storage: software defined subsystem 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, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE FAILED + --#STATUS current + ::= { storageAlertTrapGroup 0 4761 } + +alertStorageSoftwareDefinedSubSystemWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Software defined storage subsystem warning." + --#TYPE "Storage: Software defined subsystem 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, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { storageAlertTrapGroup 0 4762 } ------------------------------------------------------------------------------ -- Updates Alert Trap Group @@ -12336,6 +14124,14 @@ alertStorageVirtualDiskFailure NOTIFICATION-TYPE -- Subcategory: RED/8 ------------------------------------------------------------------------------ +alertUpdateJobTrapNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertUpdateJobInformation} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 46 } + alertUpdateJobInformation NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -12371,6 +14167,14 @@ alertUpdateJobInformation NOTIFICATION-TYPE -- Subcategory: SWU/21 ------------------------------------------------------------------------------ +alertSoftwareChangeUpdateNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertSoftwareChangeUpdateWarning} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 47 } + alertSoftwareChangeUpdateWarning NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -12415,6 +14219,14 @@ alertSoftwareChangeUpdateWarning NOTIFICATION-TYPE -- Subcategory: CMC/62 ------------------------------------------------------------------------------ +alertCMCAuditNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertCMCAuditInformation, alertCMCAuditWarning, alertCMCAuditFailure} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 48 } + alertCMCAuditInformation NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -12506,6 +14318,14 @@ alertCMCAuditFailure NOTIFICATION-TYPE -- Subcategory: FSD/50 ------------------------------------------------------------------------------ +alertDebugNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertDebugInformation, alertDebugWarning} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 49 } + alertDebugInformation NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -12569,6 +14389,14 @@ alertDebugWarning NOTIFICATION-TYPE -- Subcategory: IPA/38 ------------------------------------------------------------------------------ +alertiDRACIPAddressChangeNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertiDRACIPAddressChange} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 50 } + alertiDRACIPAddressChange NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -12605,6 +14433,14 @@ alertiDRACIPAddressChange NOTIFICATION-TYPE -- Subcategory: LIC/40 ------------------------------------------------------------------------------ +alertLicenseNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertLicenseInformation, alertLicenseWarning, alertLicenseFailure} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 51 } + alertLicenseInformation NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -12696,6 +14532,14 @@ alertLicenseFailure NOTIFICATION-TYPE -- Subcategory: PCI/46 ------------------------------------------------------------------------------ +alertPCIDeviceAuditNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertPCIDeviceAuditWarning} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 52 } + alertPCIDeviceAuditWarning NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -12731,6 +14575,14 @@ alertPCIDeviceAuditWarning NOTIFICATION-TYPE -- Subcategory: PSU/17 ------------------------------------------------------------------------------ +alertPowerSupplyAuditNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertPowerSupplyAuditWarning, alertPowerSupplyAuditFailure} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 53 } + alertPowerSupplyAuditWarning NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -12794,6 +14646,14 @@ alertPowerSupplyAuditFailure NOTIFICATION-TYPE -- Subcategory: PWR/28 ------------------------------------------------------------------------------ +alertPowerUsageAuditNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertPowerUsageAuditInformation, alertPowerUsageAuditWarning, alertPowerUsageAuditFailure} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 54 } + alertPowerUsageAuditInformation NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -12885,6 +14745,14 @@ alertPowerUsageAuditFailure NOTIFICATION-TYPE -- Subcategory: SYS/48 ------------------------------------------------------------------------------ +alertSystemPowerStateChangeNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertSystemPowerStateChangeInformation} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 55 } + alertSystemPowerStateChangeInformation NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -12921,6 +14789,14 @@ alertSystemPowerStateChangeInformation NOTIFICATION-TYPE -- Subcategory: USR/37 ------------------------------------------------------------------------------ +alertUserTrackingNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertUserTrackingWarning} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 56 } + alertUserTrackingWarning NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -12948,7 +14824,149 @@ alertUserTrackingWarning NOTIFICATION-TYPE --#STATE DEGRADED --#STATUS current ::= { auditAlertTrapGroup 0 8490 } - + +------------------------------------------------------------------------------ +-- Configuration Change Tracking Trap +-- +-- Category: Audit/4 +-- Subcategory: RAC/60 +------------------------------------------------------------------------------ +alertConfigurationChangeAuditNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertRacConfigurationChangeInformation, alertRacConfigurationChangeWarning} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 67 } + +alertRacConfigurationChangeInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Configuration or state Change Information." + --#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, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { auditAlertTrapGroup 0 8675 } + +alertRacConfigurationChangeWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Configuration or state Change warning." + --#TYPE "Audit: Configuration or state Change 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, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { auditAlertTrapGroup 0 8674 } + +------------------------------------------------------------------------------ +-- Temparature Probe Tracking Trap +-- +-- Category: Audit/4 +-- Subcategory: TMP/14 +------------------------------------------------------------------------------ + +alertTemparatureProbeAuditNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertTemperatureProbeReadWarning,alertTemperatureProbeChangeFailure} + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 72 } + +alertTemperatureProbeReadWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Unable to read Temperature Sensors" + --#TYPE "Audit: Configuration or state Change Information" + --#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, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { auditAlertTrapGroup 0 8306 } + +alertTemperatureProbeChangeFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Temperature increase Error." + --#TYPE "Audit: state Change Information" + --#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, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { auditAlertTrapGroup 0 8305 } + + ------------------------------------------------------------------------------ -- Configuration Alert Trap Group @@ -12965,6 +14983,14 @@ alertUserTrackingWarning NOTIFICATION-TYPE -- Subcategory: DIS/49 ------------------------------------------------------------------------------ +alertAutoDiscoveryNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertAutoDiscoveryInformation } + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 57 } + alertAutoDiscoveryInformation NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -13000,6 +15026,13 @@ alertAutoDiscoveryInformation NOTIFICATION-TYPE -- Subcategory: IOID/66 ------------------------------------------------------------------------------ +alertNetworkConfigurationNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertNetworkConfigurationInformation, alertNetworkConfigurationWarning } + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 58 } alertNetworkConfigurationInformation NOTIFICATION-TYPE OBJECTS { alertMessageID, @@ -13064,6 +15097,14 @@ alertNetworkConfigurationWarning NOTIFICATION-TYPE -- Subcategory: IPA/38 ------------------------------------------------------------------------------ +alertIPAddressConfigurationNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertIPAddressConfigurationInformation } + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 59 } + alertIPAddressConfigurationInformation NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -13099,6 +15140,14 @@ alertIPAddressConfigurationInformation NOTIFICATION-TYPE -- Subcategory: JCP/3 ------------------------------------------------------------------------------ +alertJobControlConfigurationNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertJobControlConfigurationInformation } + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 60 } + alertJobControlConfigurationInformation NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -13134,6 +15183,14 @@ alertJobControlConfigurationInformation NOTIFICATION-TYPE -- Subcategory: PCI/46 ------------------------------------------------------------------------------ +alertPCIDeviceConfigurationNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertPCIDeviceConfigurationInformation } + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 61} + alertPCIDeviceConfigurationInformation NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -13169,6 +15226,14 @@ alertPCIDeviceConfigurationInformation NOTIFICATION-TYPE -- Subcategory: SEC/42 ------------------------------------------------------------------------------ +alertSecurityConfigurationNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertSecurityConfigurationWarning } + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 62 } + alertSecurityConfigurationWarning NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -13204,6 +15269,14 @@ alertSecurityConfigurationWarning NOTIFICATION-TYPE -- Subcategory: SWC/36 ------------------------------------------------------------------------------ +alertSWCConfigurationNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertSWCConfigurationWarning, alertSWCConfigurationFailure, alertSWCConfigurationInformation } + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 63 } + alertSWCConfigurationWarning NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -13260,6 +15333,33 @@ alertSWCConfigurationFailure NOTIFICATION-TYPE --#STATUS current ::= { configurationAlertTrapGroup 0 10529 } +alertSWCConfigurationInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Software configuration Information." + --#TYPE "Configuration: Software 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, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { configurationAlertTrapGroup 0 10531 } ------------------------------------------------------------------------------ -- Test Trap -- @@ -13267,6 +15367,14 @@ alertSWCConfigurationFailure NOTIFICATION-TYPE -- Subcategory: TST/19 ------------------------------------------------------------------------------ +alertTestTrapNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertTestTrapEvent } + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 64 } + alertTestTrapEvent NOTIFICATION-TYPE OBJECTS { alertMessageID, alertMessage, @@ -13295,8 +15403,232 @@ alertTestTrapEvent NOTIFICATION-TYPE --#STATUS current ::= { configurationAlertTrapGroup 0 10395 } -END +------------------------------------------------------------------------------ +-- PR Device Trap +-- +-- Category: Configuration/5 +-- Subcategory: PR/19 +------------------------------------------------------------------------------ +alertPRDeviceDetectionNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertPRDeviceDetectionWarning } + STATUS current + DESCRIPTION + "The one notification which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 74 } + +alertPRDeviceDetectionWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "The indicated device is not detected." + --#TYPE "Configuration: iDRAC Test Trap Event" + --#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, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { configurationAlertTrapGroup 0 10298 } + +------------------------------------------------------------------------------ +-- Hardware Configuration Traps +-- +-- Category: Audit/4 +-- Subcategory: HWC/35 +------------------------------------------------------------------------------ + +alertHWCAuditNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertHWCAuditWarning, alertHWCAuditInformation } + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 69 } + +alertHWCAuditWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Hardware Configuration warning." + --#TYPE "Audit: 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, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { auditAlertTrapGroup 0 8474 } + +alertHWCAuditInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Hardware Configuration Information." + --#TYPE "Audit: Hardware Configuration Audit 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, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { auditAlertTrapGroup 0 8475 } + +------------------------------------------------------------------------------ +-- System Configuration Trap +-- +-- Category: Configuration/5 +-- Subcategory: SYS/48 +------------------------------------------------------------------------------ +alertSystemConfigurationNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertSystemConfigurationChangeInformation } + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 75 } + +alertSystemConfigurationChangeInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "A/Many System Configuration Item/Items are changed." + --#TYPE "Configuration: System Configuration 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, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { configurationAlertTrapGroup 0 10627 } + +------------------------------------------------------------------------------ +-- iDRAC SDK Traps +-- +-- Category: Configuration/5 +-- Subcategory: SDK/129 +------------------------------------------------------------------------------ +alertSDKConfigurationNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { alertSDKConfigurationWarning, alertSDKConfigurationInformation } + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { conformanceMIBnotificationGroup 76 } + +alertSDKConfigurationWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "The iDRAC generated a trap event with SDK plugin configuration change warning." + --#TYPE "iDRAC Extensibility SDK event" + --#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, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { configurationAlertTrapGroup 0 11274 } + +alertSDKConfigurationInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION "The iDRAC generated a trap event with SDK plugin Configuration change information." + --#TYPE "iDRAC Extensibility SDK 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, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { configurationAlertTrapGroup 0 11275 } + +END ------------------------------------------------------------------------------ -- End MIB ------------------------------------------------------------------------------