Help finding OID for device Licence Type

I'm trying to find the correct OID to return the Device Licence Type.

We have both ePMP Full and Lite on our network.

I can visualy see this information on "Monitor" -> "System" -> "Hardware Version", the lite device show me "(Lite)" after the Hardware Version.

I tried getting this information by using the following OID = 1.3.6.1.4.1.17713.21.1.1.2.0, with returns to me the hardware type of the device, but both devices, the lite and the full, return me "0" (5 GHz Connectorized Radio with Sync) without any other information.

I tried searching the MIB and found this two OIDs:

 

cambLicenseVersion = 1.3.6.1.4.1.17713.21.1.8.1 (Device Operational Lincense Version)

cambLicenseSMcntUnlock = 1.3.6.1.4.1.17713.21.1.8.2 (Full Capacity AP feature unlock, based on information from
Operational Lincense)

But both of them return "No Such Instance currently exists at this OID" (using snmpwalk)

Can someone help me with this?

Thank You!

Obs: We are using the Software Versions 3.2.1 and 3.2.2.

Hi Gustavo,

If you want to separate Lite and Full APs you can use OID

systemConfigSMLockBit
 .1.3.6.1.4.1.17713.21.3.6.1.12

OID returns:

1 - for Lite APs;

0 - for Full Capacity APs.

Thank you.

1 Like

It worked, thank you!