The netgear fastpath template seems to have incorrect value mapping for the fan state FASTPATH-BOXSERVICES-PRIVATE-MIB::boxServicesFanItemState
A value of 2 is detected as 'failure' in the current template version
However a current MIB download from the netgear m4300 downloads page shows
What would be the best way to fix this? Just adjusting the value mappings manually? I find it odd that a current template contains the wrong value mappings, could it be a misconfiguration instead?
A value of 2 is detected as 'failure' in the current template version
Code:
uuid: 3046d246b1064c749c1c9144442c0fac
name: 'FASTPATH-BOXSERVICES-PRIVATE-MIB::boxServicesFanItemState'
mappings:
-
value: '1'
newvalue: operational
-
value: '2'
newvalue: failed
-
value: '3'
newvalue: powering
-
value: '4'
newvalue: notpowering
-
value: '5'
newvalue: notpresent
-
However a current MIB download from the netgear m4300 downloads page shows
Code:
boxServicesFanItemState OBJECT-TYPE
SYNTAX INTEGER {
notpresent(1),
operational(2),
failed(3),
powering(4),
nopower(5),
notpowering(6),
incompatible(7)
}
What would be the best way to fix this? Just adjusting the value mappings manually? I find it odd that a current template contains the wrong value mappings, could it be a misconfiguration instead?
Comment