Hi Tik people!!
How I can make Equal Bandwidth for a Number of Users withot known my ISP bandwidth?
I have a critical connection (3mbps or 2mbps or less) and I need to distribute my bandwidth in all moment, dinamically!
Thanks!
Hi Tik people!!
How I can make Equal Bandwidth for a Number of Users withot known my ISP bandwidth?
I have a critical connection (3mbps or 2mbps or less) and I need to distribute my bandwidth in all moment, dinamically!
Thanks!
Look at WIKI or search forum. Many setups like that.
Hi there, i have the same problem and i don’t know if i resolve it in a good way. I simply want to shape traffic between users in a dinamic way [without using address-list and without know the bandwith that i have]. Please mikrotik gurus help us in this critical configuracion!!
[toor@extreme] /ip firewall mangle> export
/ip firewall mangle
add action=mark-connection chain=forward comment=“” disabled=no new-connection-mark=lan passthrough=yes src-address=192.168.1.0/24
add action=mark-packet chain=forward comment=“” connection-mark=lan disabled=no new-packet-mark=lan-packet passthrough=no
add action=log chain=forward comment=“” disabled=no log-prefix=“MANGLE: NOT MARKED:”
[toor@extreme] /ip firewall mangle>
[toor@extreme] /queue type>
add kind=pcq name=pcq-download pcq-classifier=dst-address pcq-limit=20 pcq-rate=0 pcq-total-limit=500
add kind=pcq name=pcq-upload pcq-classifier=src-address pcq-limit=20 pcq-rate=0 pcq-total-limit=500
[toor@extreme] /queue type>
[toor@extreme] /queue tree> export
/queue tree
add burst-limit=0 burst-threshold=0 burst-time=0s disabled=no limit-at=0 max-limit=0 name=download packet-mark=lan-packet parent=ether1 priority=1 queue=
pcq-download
add burst-limit=0 burst-threshold=0 burst-time=0s disabled=no limit-at=0 max-limit=0 name=upload packet-mark=lan-packet parent=wlan1 priority=1 queue=
pcq-upload
[toor@extreme] /queue tree>
this will be sufficient???
Thank you very much.