bmw525 Posted May 2, 2016 · Report post Добрый день. Нужна помощь с мониторингом удаленных серверов при помощи ICINGA на HP ProLiant, а частности HP ProLiant DL180 Gen6 c iLO100. На HP ProLiant стоит Win Server 2008. Нужна проверка по состояни дисков. При помощи OID не ясно или не показыват параметры состояния. На сервере стои HP Smart Storage Administrator и HPE Insight Management Agent. HP Smart Storage Administrator видет неисправный диск. Запрос идёть через SNMP. Не знаю как правильно настроить Icinga (Icingag на Ubuntu). В области Unix я ещё новичок, так-что пожалуста сильно не пинать. Вставить ник Quote Ответить с цитированием Share this post Link to post Share on other sites More sharing options...
Stak Posted May 18, 2016 · Report post http://www.claudiokuenzler.com/blog/374/hp-proliant-snmp-oid-query-hardware-disk-drive-information-status#.VzyB2JGLTIU Here are some examples for disk/drive related lookups. Show the current HP SmartArray Firmware version: snmpwalk -v 2c -c public localhost 1.3.6.1.4.1.232.3.2.2.1.1.3 SNMPv2-SMI::enterprises.232.3.2.2.1.1.3.1 = STRING: "5.70" Check the current status for logical drives: snmpwalk -v 2c -c public localhost 1.3.6.1.4.1.232.3.2.3.1.1.4 SNMPv2-SMI::enterprises.232.3.2.3.1.1.4.1.1 = INTEGER: 2 SNMPv2-SMI::enterprises.232.3.2.3.1.1.4.1.2 = INTEGER: 2 SNMPv2-SMI::enterprises.232.3.2.3.1.1.4.1.3 = INTEGER: 2 SNMPv2-SMI::enterprises.232.3.2.3.1.1.4.1.4 = INTEGER: 2 For each logical drive a status code is returned. Refer to the following table to translate: 1: other 8: wrongDrive2: ok9: badConnect 3: failed 10: overheating 4: unconfigured 11: shutdown 5: recovering 12: expanding 6: readyForRebuild13: notAvailable 7: rebuilding14: queuedForExpansion Check the current status for physical drives: snmpwalk -v 2c -c public localhost 1.3.6.1.4.1.232.3.2.5.1.1.6 SNMPv2-SMI::enterprises.232.3.2.5.1.1.6.1.8 = INTEGER: 2 SNMPv2-SMI::enterprises.232.3.2.5.1.1.6.1.9 = INTEGER: 2 SNMPv2-SMI::enterprises.232.3.2.5.1.1.6.1.10 = INTEGER: 2 SNMPv2-SMI::enterprises.232.3.2.5.1.1.6.1.11 = INTEGER: 2 Note that these are the physical drives. Use the following table to translate the returned number: 1: other 3: failed 2: ok 4: predictiveFailure Note: A predictiveFailure will be shown as "Smart Error" in ILO. Вставить ник Quote Ответить с цитированием Share this post Link to post Share on other sites More sharing options...