Oracle Solaris 11.2용 Oracle® Server Management Agent 사용 설명서

인쇄 보기 종료

업데이트 날짜: 2015년 6월
 
 

센서 그룹 정보를 검색하는 방법

  • 명령 프롬프트에서 다음과 같이 입력합니다.

    # snmpwalk -v2c -c public -mALL localhost\ SUN-HW-MONITORING-MIB::sunHwMonSensorGroup | grep '\.9 = '

    여기서 grep '\.9 = '는 관심 있는 FRU의 등록 정보를 필터링하는 것입니다.

    다음과 유사한 출력이 표시됩니다.

    SUN-HW-MONITORING-MIB::sunHwMonNumericVoltageSensorType.9 = INTEGER: voltage(133)

    SUN-HW-MONITORING-MIB::sunHwMonNumericVoltageSensorName.9 = STRING: /SYS/MB/V_+12V

    SUN-HW-MONITORING-MIB::sunHwMonNumericVoltageSensorParentFruIndex.9 = INTEGER: 146

    SUN-HW-MONITORING-MIB::sunHwMonNumericVoltageSensorParentFruName.9 = STRING: /SYS/MB

    SUN-HW-MONITORING-MIB::sunHwMonNumericVoltageSensorAlarmStatus.9 = INTEGER: cleared(1)

    SUN-HW-MONITORING-MIB::sunHwMonNumericVoltageSensorStateDescr.9 = STRING: Normal

    SUN-HW-MONITORING-MIB::sunHwMonNumericVoltageSensorCurrentValue.9 = INTEGER: 12160

    SUN-HW-MONITORING-MIB::sunHwMonNumericVoltageSensorBaseUnit.9 = INTEGER: volts(4)

    SUN-HW-MONITORING-MIB::sunHwMonNumericVoltageSensorExponent.9 = INTEGER: -3

    SUN-HW-MONITORING-MIB::sunHwMonNumericVoltageSensorUpperNonRecoverableThreshold.9 = INTEGER: 14994

    SUN-HW-MONITORING-MIB::sunHwMonNumericVoltageSensorUpperCriticalThreshold.9 = INTEGER: 13986

    SUN-HW-MONITORING-MIB::sunHwMonNumericVoltageSensorUpperNonCriticalThreshold.9 = INTEGER: 12978

    SUN-HW-MONITORING-MIB::sunHwMonNumericVoltageSensorLowerNonRecoverableThreshold.9 = INTEGER: 8946

    SUN-HW-MONITORING-MIB::sunHwMonNumericVoltageSensorLowerCriticalThreshold.9 = INTEGER: 9954

    SUN-HW-MONITORING-MIB::sunHwMonNumericVoltageSensorLowerNonCriticalThreshold.9 = INTEGER: 10962

    SUN-HW-MONITORING-MIB::sunHwMonNumericVoltageSensorEnabledThresholds.9 = BITS: FC lowerThresholdNonCritical(0) upperThresholdNonCritical(1) lowerThresholdCritical(2) upperThresholdCritical(3) lowerThresholdFatal(4) upperThresholdFatal(5)


    주 -  서버에서 Oracle ILOM 2.0을 사용하는 경우 다음 행이 반환됩니다.

    SUN-HW-MONITORING-MIB::sunHwMonNumericVoltageSensorType.9 = INTEGER: unknown(1)

    SUN-HW-MONITORING-MIB::sunHwMonNumericVoltageSensorParentFruIndex.9 = INTEGER: -1

    SUN-HW-MONITORING-MIB::sunHwMonNumericVoltageSensorParentFruName.9 = STRING:

    이 정보는 Oracle ILOM 3.0에만 관련된 것이기 때문에 이는 예상된 동작입니다.



    팁  - 다음 행 분석 시 sunHwMonNumericVoltageSensorCurrentValue가 sunHwMonNumericVoltageSensorExponent의 지수 세트를 사용하여 반환됨을 잊지 마십시오.SUN-HW-MONITORING-MIB::sunHwMonNumericVoltageSensorCurrentValue.9 = INTEGER: 12290SUN-HW-MONITORING-MIB::sunHwMonNumericVoltageSensorBaseUnit.9 = INTEGER: volts(4)SUN-HW-MONITORING-MIB::sunHwMonNumericVoltageSensorExponent.9 = INTEGER: -3이 예에서 지수는 -3이고, 이는 sunHwMonNumericVoltageSensorCurrentValue의 전압 값이 10-3으로 곱해져서 12.290볼트가 됨을 의미합니다.