Hi all !!
I want to my users fair share the total bandwidth, all my users (IPs) must have the
same priority for his traffic.
Alice, Bob and Charlie must be in diferent queues with the same priority.
Is this code right or all my users share the same queue ?
----------------------------------------------------------
altq on fxp0 priq bandwidth 512Kb queue { clients, others }
queue others priq(default)
queue clients priority 10
alice = "192.168.0.2"
bob = "192.168.0.3"
charlie = "192.168.0.4"
pass all from any to $alice queue clients
pass all from $alice to any queue clients
pass all from any to $bob queue clients
pass all from $bob to any queue clients
pass all from any to $charlie queue clients
pass all from $charlie to any queue clients
---------------------------------------------------------------
Thanks in advance !
roberto