Give priority to an IP address

Hi,

I have a VOIP server (e.g. 192.168.5.1) on ether3, and I want outbound traffic from that host to get priority over ANY other traffic to ensure call quality.

I have looked at the docs but still not sure the best way to implement this.

What do you recommend? and please give me examples of syntax I need to enter

Thanks again

see queue tree in manual (under bandwidth management) and also packet marking

Hi,

I used simple priority and works ok. Here I copy a config from one rb133 working:

The ip network 192.168.27.0 is the customers, an the 192.168.198.1 is the ip of the phone server.
The queue number 0 is for internet and has lower priority than telephony. Also has a lower band restriction.

hope this help you.



[admin@mikrotik] > queue simple print
Flags: X - disabled, I - invalid, D - dynamic
0 name=“INTERNET” target-addresses=x.x.x.x/29 dst-address=0.0.0.0/0 interface=all parent=none direction=both priority=8
queue=default-small/default-small limit-at=0/0 max-limit=256000/256000 burst-limit=512000/512000
burst-threshold=512000/512000 burst-time=1s/1s total-queue=default-small

1 name=“TELEFONIA” target-addresses=192.168.27.0/24 dst-address=0.0.0.0/0 interface=all parent=none direction=both priority=1
queue=default-small/default-small limit-at=0/0 max-limit=1000000/1000000 total-queue=default-small

2 name=“TELEFONIA2” target-addresses=192.168.198.1/32 dst-address=0.0.0.0/0 interface=all parent=none direction=both priority=1
queue=default-small/default-small limit-at=0/0 max-limit=1000000/1000000 total-queue=default-small
[admin@mikrotik] >