Community discussions

MikroTik App
 
jlopez
just joined
Topic Author
Posts: 13
Joined: Mon Mar 04, 2019 4:07 pm

[QoS] Bandwidth allocation by destination IP

Thu Aug 25, 2022 6:46 pm

Dear MikroTik community.

Please, can you tell me how I can do bandwidth allocation by destination IP?

For example: A remote desktop connection to server 192.10.10.35 allocate 60% of total bandwidth, for other applications give 40% remaining.

Thanks for your attention and help.

Best regards.
 
User avatar
chechito
Forum Guru
Forum Guru
Posts: 3203
Joined: Sun Aug 24, 2014 3:14 am
Location: Bogota Colombia
Contact:

Re: [QoS] Bandwidth allocation by destination IP

Thu Aug 25, 2022 9:37 pm

/queue simple
add max-limit=10M/10M name=queue1-total target=192.168.88.0/24
add limit-at=6M/6M max-limit=6M/6M name=queue2-rdp_server parent=queue1-total target=192.168.88.35/32
add max-limit=10M/10M name=queue3-the_rest parent=queue1-total target=192.168.88.0/24

192.10.xxx.xxx address is not a local/private address
 
jlopez
just joined
Topic Author
Posts: 13
Joined: Mon Mar 04, 2019 4:07 pm

Re: [QoS] Bandwidth allocation by destination IP

Fri Aug 26, 2022 5:49 pm

Thanks Chechito.

I'll apply suggested commands.

Best regards.