Hello!
I have a question about QoS in MikroTik, just for example I`am trying to do QoS for ICMP.
My setup:
Lan: 192.168.1.0/24
Host1: 192.168.1.10
Host2: 192.168.1.20
MikroTik config:
add chain=prerouting src-address=192.168.1.0/24 protocol=icmp action=mark-connection passthrough=yes new-connection-mark=icmp-conn
add chain=prerouting src-address=192.168.1.0/24 protocol=icmp connection-mark=icmp-conn action=mark-packet new-packet-mark=icmp-pkt passthrough=no
add name=Icmp-Priority target=192.168.1.0/24 dst=0.0.0.0/0 packet-marks=icmp-pkt queue=default/default priority=1/1 total-queue=default
Lets say i ping from host 192.168.1.10 to google before any traffic on network i get times like 7ms average.
After host 192.168.1.20 starts using peer to peer network or watching HD videos on youtube.
On host 192.168.1.10 ping gets to average 80ms.
The same if I try the above config. Its not about ICMP, but any other QoS (VoIP, HTTP, HTTPS), I would do the same. And firstly I would like to get it working with ICMP.
Thank you for any help in advance