Updated SNMP fields for making a cacti graph of frame utilization for PMP450 access points

After seeing the post
https://community.cambiumnetworks.com/t5/PMP-450/The-importance-of-contention-slots/td-p/84290
I wanted to duplicate the graphs so I looked up all the non-obsolete SNMP fields listed in
http://support.cambiumnetworks.com/framed/onlinetools/content.WHISP-APS-MIB.html#numDAckSlots
that seemed relevant:

1.3.6.1.4.1.161.19.3.1.10.1.1.4   radioControlSlots
1.3.6.1.4.1.161.19.3.1.10.1.1.2   radioDownlinkPercent
1.3.6.1.4.1.161.19.3.1.7.5   dataSlotDwn
1.3.6.1.4.1.161.19.3.1.7.6   dataSlotUp
1.3.6.1.4.1.161.19.3.1.7.12   numCtrSlot

Unfortunately, none of these fields are active ("No Such Instance currently exists at this OID") in our PMP450 access points (all either "PMP 450m" or "PMP450" with software 16.2).

Does anyone have an SNMP list that is current or have a copy of this type of graph?

Thanks!

Dustin Soodak

I tried to reply to your PM this morning, but for some reason the forum software won't let me reply... so this is what I was going to tell you...

Our network admin grabbed the OID's that we use for the graphs you said you liked... here's what he said...

 I've just sat down and spent a minute parsing through the code to translate these back into standard MIB and OID forms:

$FUulTotal =
 WHISP-APS-MIB::frUtlMedMaxUplinkSlots.0 = .1.3.6.1.4.1.161.19.3.1.12.2.14.0
 CAMBIUM-PMP80211-MIB::ulWLanTotalAvailableFrameTimePerSecond = 1.3.6.1.4.1.17713.21.2.1.51
 WHISP-APS-MIB::frUtlMedMaxUplinkSlots = 1.3.6.1.4.1.161.19.3.1.12.2.14


$FUdlTotal =
 WHISP-APS-MIB::frUtlMedMaxDownlinkSlots.0 = .1.3.6.1.4.1.161.19.3.1.12.2.13.0
 CAMBIUM-PMP80211-MIB::dlWLanTotalAvailableFrameTimePerSecond = 1.3.6.1.4.1.17713.21.2.1.52
 WHISP-APS-MIB::frUtlMedMaxDownlinkSlots = .1.3.6.1.4.1.161.19.3.1.12.2.13


$FUulUsed =
 WHISP-APS-MIB::frUtlMedTotalUplinkSlots.0 = .1.3.6.1.4.1.161.19.3.1.12.2.9.0
 CAMBIUM-PMP80211-MIB::ulWLanTotalUsedFrameTimePerSecond = 1.3.6.1.4.1.17713.21.2.1.53
 WHISP-APS-MIB::frUtlMedTotalUplinkSlots = .1.3.6.1.4.1.161.19.3.1.12.2.9


$FUdlUsed =
 WHISP-APS-MIB::frUtlMedTotalDownlinkSlots.0 = .1.3.6.1.4.1.161.19.3.1.12.2.3.0
 CAMBIUM-PMP80211-MIB::dlWLanTotalUsedFrameTimePerSecond = 1.3.6.1.4.1.17713.21.2.1.54
 WHISP-APS-MIB::frUtlMedTotalDownlinkSlots = .1.3.6.1.4.1.161.19.3.1.12.2.3
 
There are three different MIB/OID per value here, because you have to query different OIDs on different devices to get the same semantic value. Also we're presently sampling the Medium or 5 minute averages.
 
we get Total and Used (for both up and down) and then divide used into total to get the percentage.
1 Like