Read SNR on Wireless Interface

Hi,

I know of this command: /interface wireless registration-table print to get some info about the wireless interface.
What is does not show is the SNR value, is there a sort of same way to read the SNR value on the wireless
interface?

Thanks…

  1. print does not do that. print stats - does :slight_smile:.
    /intrerface wireless registration-table print stats

  2. You can use GET if you want to script it. Like: /interface wireless registration-table get … signal-to-noise.
    Example:

:foreach x in=[/interface wireless registration-table find] do={:put "Station with MAC: $[/interface wireless registration-table get $x mac-address] has SNR: $[/interface wireless registration-table get $x signal-to-noise] dB";}