good evening sir
i have dsl speed 512/128
i want Equal Bandwidth for a Number of Users
lan = 192.168.16.1
wan = 192.168.1.1
i work with hotspot and i want add QOS
The picture shows that the pcq-rate should be 0 (configured on the queue type under “/queue types”), and that a max-limit should be implemented on the queue tree (configured under “/queue tree”). You do have a pcq-rate set, and do not have a max-limit.
What you have:
/queue type add name="PCQ_download" kind=pcq pcq-rate=512000 pcq-classifier=dst-address
/queue type add name="PCQ_upload" kind=pcq pcq-rate=128000 pcq-classifier=src-address
/queue tree add parent=global-in queue=PCQ_download packet-mark=all
/queue tree add parent=global-out queue=PCQ_upload packet-mark=all
What it should be:
/queue type add name="PCQ_download" kind=pcq pcq-rate=0 pcq-classifier=dst-address
/queue type add name="PCQ_upload" kind=pcq pcq-rate=0 pcq-classifier=src-address
/queue tree add parent=global-in queue=PCQ_download packet-mark=all max-limit=512000
/queue tree add parent=global-out queue=PCQ_upload packet-mark=all max-limit=128000