Hello,
do you monitor the “quality” of your customer connection?
I’m looking for an (automated) way to do that.
I’m thiking to something like a script that 1 time a week do a bandwith test, and send me (maybe via email) if the speed are not good.
Do you do that, and want to share your way?
I have used the Dude to graph the signal to customer and looking afterwards for any large signal variations like 10dB which would effect the link performance, also I use logging with Mikrotik it has great logging options , I set system logging to “disk” and increased lines to 1000 this is very useful for analysing issues afterwards.
you can refer to my page …
http://forum.mikrotik.com/t/auto-bandwidth-test/67258/1
put the script in the scheduler…
then, you can change the ping 8.8.8.8 to send you the email…
like this ?
:do {
:local a 54
:foreach i in=[/interface wireless registration-table find] do={
:local tx [/interface wireless registration-table get $i tx-rate]
:local rx [/interface wireless registration-table get $i rx-rate]
:set tx [:pick $tx 0 [:find $tx "."]];:set rx [:pick $rx 0 [:find $rx "."]];
:put $tx;:put $rx;
:if ($tx < $a || $rx < $a ) do={
/interface wireless registration-table remove $i
}}
}