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…
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…
print does not do that. print stats - does
.
/intrerface wireless registration-table print stats
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";}