User:Oki Reganoto
From MikroTik Wiki
Revision as of 23:33, 3 February 2014 by Oki Reganoto (talk | contribs)
'Simple HTB Bandwidth Management'
Limit Exclude Local Network
/ip firewall address-list add address=192.168.1.0/24 disabled=no list=lokal
Mangle
<b>/ip firewall mangle</b><br> add action=mark-packet chain=forward comment=”" disabled=no dst-address=\<br> 192.168.1.2 new-packet-mark=client.2 passthrough=no src-address-list=\<br> !lokal<br> <br> add action=mark-packet chain=forward comment=”" disabled=no dst-address=\<br> 192.168.1.3 new-packet-mark=client.3 passthrough=no src-address-list=\<br> !lokal<br> <br> add action=mark-packet chain=forward comment=”" disabled=no dst-address=\<br> 192.168.1.4 new-packet-mark=client.4 passthrough=no src-address-list=\<br> !lokal<br> <br> add action=mark-packet chain=forward comment=”" disabled=no dst-address=\<br> 192.168.1.5 new-packet-mark=client.5 passthrough=no src-address-list=\<br> !lokal<br> <br> add action=mark-packet chain=forward comment=”" disabled=no dst-address=\<br> 192.168.1.6 new-packet-mark=client.6 passthrough=no src-address-list=\<br> !lokal<br> <br> add action=mark-packet chain=forward comment=”" disabled=no dst-address=\<br> 192.168.1.7 new-packet-mark=client.7 passthrough=no src-address-list=\<br> !lokal<br> <br> add action=mark-packet chain=forward comment=”" disabled=no dst-address=\<br> 192.168.1.8 new-packet-mark=client.8 passthrough=no src-address-list=\<br> !lokal<br> <br> add action=mark-packet chain=forward comment=”" disabled=no dst-address=\<br> 192.168.1.9 new-packet-mark=client.9 passthrough=no src-address-list=\<br> !lokal<br> <br> add action=mark-packet chain=forward comment=”" disabled=no dst-address=\<br> 192.168.1.10 new-packet-mark=client.10 passthrough=no src-address-list=\<br> !lokal<br> <br>
Queue Tree Parent
<b>/queue tree</b><br> add burst-limit=0 burst-threshold=0 burst-time=0s disabled=no limit-at=200k \<br> max-limit=2M name=AllDownload parent=global-out \<br> priority=8<br>
Queue Tree Child
<b>/queue tree</b><br> add burst-limit=0 burst-threshold=0 burst-time=0s disabled=no limit-at=200k \<br> max-limit=512k name=PC-Client.2 packet-mark=client.2 parent=AllDownload \<br> priority=8 queue=default<br> <br> add burst-limit=0 burst-threshold=0 burst-time=0s disabled=no limit-at=200k \<br> max-limit=512k name=PC-Client.3 packet-mark=client.3 parent=AllDownload \<br> priority=8 queue=default<br> <br> add burst-limit=0 burst-threshold=0 burst-time=0s disabled=no limit-at=200k \<br> max-limit=512k name=PC-Client.4 packet-mark=client.4 parent=AllDownload \<br> priority=8 queue=default<br> <br> add burst-limit=0 burst-threshold=0 burst-time=0s disabled=no limit-at=200k \<br> max-limit=512k name=PC-Client.5 packet-mark=client.5 parent=AllDownload \<br> priority=8 queue=default<br> <br> add burst-limit=0 burst-threshold=0 burst-time=0s disabled=no limit-at=200k \<br> max-limit=512k name=PC-Client.6 packet-mark=client.6 parent=AllDownload \<br> priority=8 queue=default<br> <br> add burst-limit=0 burst-threshold=0 burst-time=0s disabled=no limit-at=200k \<br> max-limit=512k name=PC-Client.7 packet-mark=client.7 parent=AllDownload \<br> priority=8 queue=default<br> <br> add burst-limit=0 burst-threshold=0 burst-time=0s disabled=no limit-at=200k \<br> max-limit=512k name=PC-Client.8 packet-mark=client.8 parent=AllDownload \<br> priority=8 queue=default<br> <br> add burst-limit=0 burst-threshold=0 burst-time=0s disabled=no limit-at=200k \<br> max-limit=512k name=PC-Client.9 packet-mark=client.9 parent=AllDownload \<br> priority=8 queue=default<br> <br> add burst-limit=0 burst-threshold=0 burst-time=0s disabled=no limit-at=200k \<br> max-limit=512k name=PC-Client.10 packet-mark=client.10 parent=AllDownload \<br> priority=8 queue=default<br> <br>
Source
by : Oki Reganoto