جعل الميكروتك يقسم السرعات بالتساوى
1- منع صعود البنج نهائى
2- فى حاله وجود واحد بس على النت هياخد سرعه النت كلها
3- بتقسمهم بالتساوى مع عمل ليهم لمتيدا الطريقه انصح بيها لمن يشتكى من سرعه التصفح
1. Mark all packets with packet-mark all:
كود:
/ip firewall mangle add chain=prerouting action=mark-packet new-packet-mark=all passthrough=no
2. Setup two PCQ queue types - one for download and one for upload. dst-address is classifier for user's download traffic, src-address for upload traffic:
كود:
/queue type add name="PCQ_download" kind=pcq pcq-rate=64000 pcq-classifier=dst-address
64000 هذا الرقم مسؤول عن عدم تجاوز اي مشترك فى الداون لود عن الاخر يعنى وهذه القيمه تساوي 8
كود:
/queue type add name="PCQ_upload" kind=pcq pcq-rate=32000 pcq-classifier=src-address
نفس النظام 32000
3. Finally, two queue rules are required, one for download and one for upload:
كود:
/queue tree add parent=global-in queue=PCQ_download packet-mark=all[CENTER]
/queue tree add parent=global-out queue=PCQ_upload packet-mark=all
If you don't like using mangle and queue trees, you can skip step 1, do step 2, and step 3 would be to create one simple queue as shown here:
كود:
/queue simple add queue=PCQ_upload/PCQ_download target-addresses=192.168.0.0/24
192.168.0.0/24 هذا الكارت الان الخاص بك عدل على الاى بى لو كان يختلف
منقول للفائده
[/CENTER]