Community discussions

MikroTik App
 
Naetebus
just joined
Topic Author
Posts: 2
Joined: Tue Apr 22, 2025 9:24 pm

Querying CCQ values ​​via SNMP is not possible with nv2 connections

Tue Apr 22, 2025 9:29 pm

Hello everyone,
We operate several Mikrotik links here and have switched from nstream to nv2 to improve quality.
Since then, querying the CCQ values ​​via SNMP is no longer possible.
For an nstream link, the following entry appears when querying:
iso.3.6.1.4.1.14988.1.1.1.3.1.10.3 = Counter32: 99
For nv2, it says
iso.3.6.1.4.1.14988.1.1.1.3.1.10.3 = Counter32: 0

Is this a bug and can it be fixed?
Best regards,
Dan
 
pexxie
just joined
Posts: 3
Joined: Mon May 08, 2023 2:34 pm

Re: Querying CCQ values ​​via SNMP is not possible with nv2 connections

Fri Apr 25, 2025 9:39 pm

On the Station device:

Rx CCQ: 1.3.6.1.4.1.14988.1.1.1.1.1.10.(link_index)
Tx CCQ: 1.3.6.1.4.1.14988.1.1.1.1.1.9.(link_index)

I can't recall how to get the link index number though. Although I added the below function to Dude and added it to the label for link appearance in the main settings. Dude has a built-in function for link index retrieval, but it doesn't expose the code used. #BlackMagic.

Function Name: snmp_wireless_link_ccq
if (
string_size(
oid(
concatenate(
"iso.org.dod.internet.private.enterprises.mikrotik.mikrotikExperimentalModule.mtXRouterOs.mtxrWireless.mtxrWlStatTable.mtxrWlStatEntry.mtxrWlStatSsid.",
link_index()
), 300, 600)),

concatenate("Rx CCQ: ",
oid(concatenate("1.3.6.1.4.1.14988.1.1.1.1.1.10.",link_index())),
"% "," ","Tx CCQ: ",
oid(concatenate("1.3.6.1.4.1.14988.1.1.1.1.1.9.",link_index())),
"% ",

"
"
)
,
""
)
You do not have the required permissions to view the files attached to this post.