Labels
Mikrotik
Monday, May 23, 2016
7.Mikrotik Share Bandwidth Equal for All Online Clients But Limit on Maximum (PCQ)
Simple Diagram:
There are two ways how to make this: using mangle and queue trees, or, using simple queues.
-First Method Using Mangle and Queue Tree:
/ip firewall mangle add chain=prerouting action=mark-packet \ in-interface=ether1 new-packet-mark=client_upload /ip firewall mangle add chain=prerouting action=mark-packet \ in-interface=ether2 new-packet-mark=client_download /queue type add name="PCQ_download" kind=pcq pcq-rate=1M \ pcq-classifier=dst-address /queue type add name="PCQ_upload" kind=pcq pcq-rate=1M \ pcq-classifier=src-address /queue tree add parent=global queue=PCQ_download packet-mark=client_download /queue tree add parent=global queue=PCQ_upload packet-mark=client_upload
-Second Method Using Simple Queue:
/queue type add name="PCQ_download" kind=pcq pcq-rate=1M \ pcq-classifier=dst-address /queue type add name="PCQ_upload" kind=pcq pcq-rate=1M \ pcq-classifier=src-address /queue simple add target-addresses=192.168.1.0/24 queue=PCQ_upload/PCQ_download
Wednesday, May 18, 2016
6.Mikrotik Share Bandwidth Equal for All Online Clients (PCQ)
Simple Diagram:
Script:
/ip firewall mangle add chain=forward src-address=192.168.1.0/24 action=mark-connection new-connection-mark=conn1 /ip firewall mangle add connection-mark=conn1 action=mark-packet new-packet-mark=pack1 chain=forward /queue type add name=pcq_downsteam kind=pcq pcq-classifier=dst-address /queue type add name=pcq_upstream kind=pcq pcq-classifier=src-address /queue tree add parent=ether1 queue=pcq_downsteam packet-mark=pack1 /queue tree add parent=LAN queue=pcq_upstream packet-mark=pack1
See PDF Press Here!
More Detail about PCQ Press Here!
Sunday, May 15, 2016
5.Mikrotik GRE Tunnel Site-To-Site Configuration
Simple Diagram:
See PDF Press Here!
Wednesday, May 11, 2016
4.Mikrotik Basic Configuration First Setup (Static IP WAN)
Simple Diagram:
See PDF Press Here:
3.Mikrotik Basic Configuration First Setup (DHCP Client WAN)
Simple Diagram:
See PDF Press Here!
Newer Posts
Older Posts
Home
Subscribe to:
Posts (Atom)