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

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