Hello Mikrotik Wifi Fans
Mikrotik is always said to have slower WiFi speeds than other manufacturers - That is often correct.
But a parameter can help - at a point where you wouldn't expect it - with the Ethernet parameters
Yes, correct Ethernet (not WIFI)
Normally, WLAN is connected to several ethernet ports via a bridge.
For example, one of the LAN ports has a computer with an IPERF server. If you now measure the WIFI speed with this server, you often get relatively low speeds.
Here's an example: Laptop Lenovo(Wifi 5Ghz) <> Wifi Side> (MT RB4011)> Ether 4<> Raspberry PI 3 Plus Measurement with IPERF3
[ ID] Interval Transfer Bitrate Retr
[ 5] 0.00-10.00 sec 117 MBytes 98.5 Mbits/sec 207 sender
[ 5] 0.00-10.00 sec 117 MBytes 98.2 Mbits/sec receiver
Now set follow parameters(default is always off):
set [ find default-name=ether4 ] rx-flow-control=on tx-flow-control=on
Then measure again - no other parameters have been changed - the laptop has not been moved
[ ID] Interval Transfer Bitrate Retr
[ 5] 0.00-10.00 sec 360 MBytes 302 Mbits/sec 91 sender
[ 5] 0.00-10.00 sec 358 MBytes 300 Mbits/sec receiver
Another measurement against a Fritzbox on Ether1 with Iperf (not Iperf3)
before
[ ID] Interval Transfer Bandwidth
[ 3] 0.0000-10.0132 sec 152 MBytes 128 Mbits/sec
set [ find default-name=ether1 ] rx-flow-control=on tx-flow-control=on
thereafter
[ ID] Interval Transfer Bandwidth
[ 3] 0.0000-10.0222 sec 439 MBytes 368 Mbits/sec
Same thing with ping:
before
64 bytes from 192.168.100.5: icmp_seq=1 ttl=64 time=2.43 ms
64 bytes from 192.168.100.5: icmp_seq=2 ttl=64 time=2.53 ms
64 bytes from 192.168.100.5: icmp_seq=3 ttl=64 time=2.53 ms
64 bytes from 192.168.100.5: icmp_seq=4 ttl=64 time=2.63 ms
64 bytes from 192.168.100.5: icmp_seq=5 ttl=64 time=2.24 ms
thereafter
64 bytes from 192.168.100.5: icmp_seq=20 ttl=64 time=0.847 ms
64 bytes from 192.168.100.5: icmp_seq=21 ttl=64 time=0.894 ms
64 bytes from 192.168.100.5: icmp_seq=22 ttl=64 time=0.893 ms
64 bytes from 192.168.100.5: icmp_seq=23 ttl=64 time=0.949 ms
64 bytes from 192.168.100.5: icmp_seq=24 ttl=64 time=0.879 ms
Don't forget - there's still a WIFI line in between
So when looking for the bottleneck, don't just look at the Wifi parameters only....
BTW - no WifiWave2 driver was used(ROS 7.10) only the good old wifi drivers
Greetings