Hi, if somone can help. I have strange issu with bendwidth test and tool speedtest, everithing is working normaly, but udp download not working, not measuring, it’s connect to test router but traffic zero.
Same results with tool speed-test
Any help
Thanks in advance
Best regards
Two things to try:
- make sure TCP 2000 and UDP 2000-65500 ports are allowed in IP / Firewall / Filter (or otherwise allowed some other way) – on both server and client routers for all test to work
- depending on the speed of the link, and not sure why, seems like duration=15s or higher helps to make sure all test run – guessing there is a bug, but the longer duration increased the odds of all the tests running.
Thanks for answering, one more help, please can You tell where should I put firewall rule, in input or forward chain?
Thanks in advance
Best regards
You tell where should I put firewall rule, in input or forward chain?
In my case, I used “input” chain. But any routed segment in-between might need the same rules in the “forward” chain. Also make sure it’s before any deny / reject rules.
/ip firewall filter
add action=accept chain=input comment="allow speedtest/btest for udp download" \
dst-port=2000-65535 protocol=udp
add action=accept chain=input comment="allow speediest/btest to start via tcp" dst-port=\
2000 protocol=tcp
Note: I’m note sure it needs the entire UDP range…but when I did 2000-2100 it didn’t just work…
For completeness, if you need a test user, so you don’t store a higher level user password in the config. You can create a btest user with limited permissions and that use that account as the user= and password= in /tool speed-test.
/user group
add name=test policy="test,winbox,!local,!telnet,!ssh,!ftp,!reboot,!read,!write,\
!policy,!password,!web,!sniff,!sensitive,!api,!romon,!dude,!tikapp"
/user
add address=0.0.0.0/0 group=test name=btest password=PICK_ONE
Thanks Amm0,this working
Best regards