I'm testing the template on Netgear AV Line m4250 switches, and using 202106020000Z revision of the FastPath BoxServices MIB as reference.
The ValueMapping for FAN and PSU status are missing some values and some numbers are off.
I'm not sure what version of the MIB that introduced the change but the template seems to use 2 as the value for fault on both statuses, while it should be 3.
You have to both change the value-mapping and the macros for failure to make the template work with the m4250
The ValueMapping for FAN and PSU status are missing some values and some numbers are off.
I'm not sure what version of the MIB that introduced the change but the template seems to use 2 as the value for fault on both statuses, while it should be 3.
You have to both change the value-mapping and the macros for failure to make the template work with the m4250
Code:
boxServicesFanItemState OBJECT-TYPE
SYNTAX INTEGER {
notpresent(1),
operational(2),
failed(3),
powering(4),
nopower(5),
notpowering(6),
incompatible(7)
}
boxServicesPowSupplyItemState OBJECT-TYPE
SYNTAX INTEGER {
notpresent(1),
operational(2),
failed(3),
powering(4),
nopower(5),
notpowering(6),
incompatible(7)
}
Comment