SNMP read firmware version?

It seems the Pepwave (firmware version 8.0.2) does not support reading firmware versions via SNMP?

$ snmpwalk -c public -v 2c 10.1.0.1 1.3.6.1.2.1.47.1.1.1.1.9
iso.3.6.1.2.1.47.1.1.1.1.9 = No Such Object available on this agent at this OID

I see that there’s a way to read it via the API (api/firmware.info), but I’d prefer not to have to enter web login credentials just to read this one value.

Any thoughts and or other options?

Works for me and you may want to check your OID. Of course, I am running 8.2.0b01 at this moment.

$ snmpget -v 2c -c public 10.10.11.157 .1.3.6.1.4.1.27662.200.1.1.1.1.3.0
SNMPv2-SMI::enterprises.27662.200.1.1.1.1.3.0 = STRING: “8.2.0b01 build 5290”

That works. Thanks!!!