Logging SNR and thruput values

From MikroTik Wiki
Revision as of 20:02, 19 January 2008 by Wpeople (talk | contribs) (New page: This script logs the snr, signal, noise and current thruput to loglevel info. It could be useful for debugging wireless problems, like periodical noises or decreased thruput (what shows no...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

This script logs the snr, signal, noise and current thruput to loglevel info. It could be useful for debugging wireless problems, like periodical noises or decreased thruput (what shows noise, interference or other problems)

:local interface "wlan1";
/interface wireless monitor $interface once do={
:local signal $"signal-strength";
:local snr $"signal-to-noise";
:local noise $"noise-floor";
:local thruput $"p-throughput";
:local freq $"frequency";
:log info "SNR: $snr Signal $signal Noise: $noise , thruput: $thruput , freq: $freq MHz";
};