I'm trying to translate the integer returned values by the OID .1.3.6.1.2.1.2.2.1.8 to the string values defined on it. A custom poller on NPM get the values in the integer form but not translate it to string form but if I consult UnDP, it shows the translation when I consult the OID.
Isn't there any relation among UnDP and NPM? How does a poller can get the translated value and put it on NPM Orion?
Example of the OID definition below:
.1.3.6.1.2.1.2.2.1.8
ifOperStatus OBJECT-TYPE
-- FROM IF-MIB
SYNTAX Integer { up(1), down(2), testing(3), unknown(4), dormant(5), notPresent(6), lowerLayerDown(7) }
MAX-ACCESS read-only
STATUS Current
DESCRIPTION "The current operational state of the interface. The testing(3) state indicates that no operational packets can be passed. If ifAdminStatus is down(2) then ifOperStatus should be down(2). If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic; it should change to dormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection); it should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state; it should remain in the notPresent(6) state if the interface has missing (typically, hardware) components."