How to do Equal bandwidth sharing among users and “Improved Load Balancing over Multiple Gateways”
I have load balancing doing by wiki mikrotik:
Now we need to put equal bandwidth sharing among users to load balancing
I thing this will by very helpful for a lot of people
Maybe some examples in wiki how to build universal efficient queue tree on ADSL line
PCQ is what you need to share bandwidth among users. see wiki and manual.
veri good advice but if uoy planing to share bandwidth among 10 or more people you must consider PC with CPU 500Mghz or more
Currently I used HFSC algorytm on Linux platform performance and fast of this algoritm is amazing. Now I want try PCQ besouse I need load balancing with NAT two adsl line. My linux with LB dont work correctly. In wiki.mikrotik.com I found how to do LB. now I am testing this.
My new router is PIII 1GHz and I have about 120 users with pppoe sesion
I have LB with wiki.mikrotik.com
Public1
Public2
LAN
now I wont to split LB and Equal bandwidth sharing among users
Is my reasoning correctly?
first I mark packet belong to line 1(odd) and line 2(even)
/ip firewall mangle
chain=prerouting src-address=192.168.10.0/24 connection-mark=odd action=mark-packet new-packet-mark=odd_packet
passthrough=no
chain=prerouting src-address=192.168.10.0/24 connection-mark=even action=mark-packet new-packet-mark=even_packet
passthrough=no
I make do queue one for download and one for upload
/queue type
add name=pcq-download kind=pcq pcq-classifier=dst-address
add name=pcq-upload kind=pcq pcq-classifier=src-address
I make two queue for Public1
/queue tree
add parent=Local queue=pcq-download packet-mark=even_packet
add parent=Public1 queue=pcq-upload packet-mark=even_packet
and for Public2
add parent=Local queue=pcq-download packet-mark=odd_packet
add parent=Public2 queue=pcq-upload packet-mark=odd_packet
Is that correct?