Aruba & ProVision-based
1748289 Members
3280 Online
108761 Solutions
New Discussion

Re: Aruba 5406R zl2 Switch SNMP Values

 
SOLVED
Go to solution
HighCoder
Collector

Aruba 5406R zl2 Switch SNMP Values

Hello,

has anyone out there the OIDs for the SNMP GET Command for

- Power Supplies

- Fans

- Temperatures

- OverHeat

specially for the Aruba 5406R zl2 switch

I've tested almost all OIDs I can find in google but none of them worked for the 5406R zl2

I would be very happy about an answer

 

7 REPLIES 7
HighCoder
Collector

Re: Aruba 5406R zl2 Switch SNMP Values

If anyone needs the OID for the fans: I found it:

.1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.4

0 = Failed

1 = Removed

2 = Off

3 = Underspeed

4 = Overspeed

5 = OK

6 = Maxstate

 

epytir
New Member

Re: Aruba 5406R zl2 Switch SNMP Values

For anyone who is searching for the temperature table

.1.3.6.1.4.1.11.2.14.11.1.2.8.1

or with the mib

HP-ICF-CHASSIS::hpSystemAirTempTable

Thats the result with mib installed:

HP-ICF-CHASSIS::hpSystemAirName.0 = STRING: "Chassis"
HP-ICF-CHASSIS::hpSystemAirCurrentTemp.0 = STRING: "XC"
HP-ICF-CHASSIS::hpSystemAirMaxTemp.0 = STRING: "XC"
HP-ICF-CHASSIS::hpSystemAirMinTemp.0 = STRING: "XC"
HP-ICF-CHASSIS::hpSystemAirOverTemp.0 = INTEGER: no(2)
HP-ICF-CHASSIS::hpSystemAirThresholdTemp.0 = STRING: "XC"
HP-ICF-CHASSIS::hpSystemAirEntPhysicalIndex.0 = INTEGER: X

Greetings

Epytir

kkrumm1
New Member

Re: Aruba 5406R zl2 Switch SNMP Values

Anybody have OID for Power supply.

HighCoder
Collector

Re: Aruba 5406R zl2 Switch SNMP Values

The OID for the power supplies is: .1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.2

If you do a snmpwalk on it it returns something like this:

iso.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.2.1 = INTEGER: 3
iso.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.2.2 = INTEGER: 3

These are the states of a power supply:

1: NotPresent
2: NotPlugged
3: Powered
4: Failed
5: PermFailure
6: Max
7: AuxFailure
8: NotPowered
9: AuxNotPowered

So what this means in this example is:

Power Supply 1 and 2 are powered.

 

I hope I could help you

HighCoder
Collector
Solution

Re: Aruba 5406R zl2 Switch SNMP Values

For anyone who wants to get the status of the management modules it's the OID: .1.3.6.1.4.1.11.2.14.11.1.11.2.5.1.1

A snmpwalk on this returns something like this:

iso.3.6.1.4.1.11.2.14.11.1.11.2.5.1.1.69 = INTEGER: 3
iso.3.6.1.4.1.11.2.14.11.1.11.2.5.1.1.70 = INTEGER: 4

The states are:

1: unknown
2: hotStandby
3: coldStandby
4: providingService

So it means that the second management module is providingservice (active) and the first one is in cold standby

monitorjunkie
Occasional Contributor

Re: Aruba 5406R zl2 Switch SNMP Values

Hello

 does anyone know the correct meaning of the possible states, that returns a snmpwalk for the power supplies OID: .1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.2:

 1: psNotPresent

2: psNotPlugged

3: psPowered

4: psFailed

5: psPermFailure

6: psMax

7: psAuxFailure

8: psNotPowered

9: psAuxNotPowered

 Every one of the 9 states needs to be referred as one of 4 monitoring check states (0: OK, 1: WARNING, 2: CRITICAL, 3: UNKNOWN)

So far, only the reference to number "3: psPowered" is known exactly as "0: OK"

 

Thank You

HighCoder
Collector

Re: Aruba 5406R zl2 Switch SNMP Values

Hello,

we treat it like this:

NotPresent -> Warning

NotPlugged -> Warning

Failed -> Critical

PermFailure -> Critical

Max -> Warning

AuxFailure -> Warning

NotPowered -> Warning

AuxNotPowered -> Warning

I hope I could help you.