Probe for Signal Strength on MikroTik devices

Hello together,

I try to check the Signal-Strength with a probe but I’m faling at it. It would be great if someone could help me building a probe for it.

Because there was alredy the function “snmp_wireless_link_info()” I’ve tryed to use parts of it in an function probe and check it aginst a fixed value in an if question. But the returns seems to be empty all the time. The OIDs changes from device to device - so use one single OID would be a Pain to configure for every single device.

edit:
Exists a Wildcard, or is it possible to collect all informations deeper then
iso.org.dod.internet.private.enterprises.mikrotik.mikrotikExperimentalModule.mtXRouterOs.mtxrWireless.mtxrWlStatTable.mtxrWlStatEntry.mtxrWlStatStrength.
in an array?

RouterOS provides you with the specific information over SNMP.

Access Point outputs,

interface wireless registration-table print oid 
 0 strength=.1.3.6.1.4.1.14988.1.1.1.2.1.3.0.12.66.58.235.82.4 
   tx-bytes=.1.3.6.1.4.1.14988.1.1.1.2.1.4.0.12.66.58.235.82.4 
   rx-bytes=.1.3.6.1.4.1.14988.1.1.1.2.1.5.0.12.66.58.235.82.4 
   tx-packets=.1.3.6.1.4.1.14988.1.1.1.2.1.6.0.12.66.58.235.82.4 
   rx-packets=.1.3.6.1.4.1.14988.1.1.1.2.1.7.0.12.66.58.235.82.4 
   tx-rate=.1.3.6.1.4.1.14988.1.1.1.2.1.8.0.12.66.58.235.82.4 
   rx-rate=.1.3.6.1.4.1.14988.1.1.1.2.1.9.0.12.66.58.235.82.4

Station,

interface wireless print oid 
 0 tx-rate=.1.3.6.1.4.1.14988.1.1.1.1.1.2.4 rx-rate=.1.3.6.1.4.1.14988.1.1.1.1.1.3.4 
   strength=.1.3.6.1.4.1.14988.1.1.1.1.1.4.4 ssid=.1.3.6.1.4.1.14988.1.1.1.1.1.5.4 
   bssid=.1.3.6.1.4.1.14988.1.1.1.1.1.6.4 frequency=.1.3.6.1.4.1.14988.1.1.1.1.1.7.4



Because there was alredy the function “snmp_wireless_link_info()”

Make sure you have tried to monitor the option on station router.

Exactly this is what i mean - This OIDs changes on every device :frowning:

Please, specify what do you want to monitor.

  • signal strength on the station router. Is it right?

I like to make a Probe to check the Signal-Strength is under -75dBm, suitable for all Mikrotik-Based devices. Just for Station devices would be sufficient. But on every Station the OID for the Signal-Strength is different, so i can’t make just one probe - I won’t make for every device it’s own probe.