Hi, i just bought mikrotik router 2 days ago, managed to setup and get the connection. Im trying to implement QoS like OP. Just wondering does all these mangle setup need to have Ip address? Im having trouble how to set a static Ip address on all my device (on wifi and ethernet) since if i disconnect my device surely my dhcp will give another new ip address and these mangle rule will not be followed(because of the ip setup).Hi ,
Yes it's possible , we call it QOS(quality of service) aka Queue in Mikrotik.
usually done by 2 step :
1-Mark our connections and packets. (It will be done by IP/Firewall/Mangle)
2-set their priority higher than others(It will be done by Queue)
Marking connection and packets :
**** here we mark any connection coming from your PC (assuming your PC IP address is : 192.168.100.100)
chain=forward action=mark-connection new-connection-mark=MyPC_Connections passthrough=yes src-address=192.168.100.100 log=no log-prefix=""
**** here we mark any connection going to your PC
chain=forward action=mark-connection new-connection-mark=MyPC_Connections passthrough=yes dst-address=192.168.100.100 log=no log-prefix=""
**** here we mark any packets related to MyPC_Connections
chain=forward action=mark-packet new-packet-mark=MyPC_Connections passthrough=yes connection-mark=MyPC_Packets log=no log-prefix=""
**** Above mangles mark every packets and connections of your PC , internet , LAN , gaming ,all.....
*** If you wanna mark specific traffic it usually done by its IP address and port , if you know your game center IP address(es) and port which using for communicating , you can easily just mark your Gaming packets
Now we set our marked traffic priority :
add name=MyPC_QOS packet-marks=MyPC_Packets priority=1/1 target=""
** Default priority is 8 , so you can set you traffic to 1 and force the router to take care of your traffic first thing on its list
There are many option in firewall mangle and Queue , i suggest you to read references for more control over your traffic
Hi ,
Yes it's possible , we call it QOS(quality of service) aka Queue in Mikrotik.
usually done by 2 step :
1-Mark our connections and packets. (It will be done by IP/Firewall/Mangle)
2-set their priority higher than others(It will be done by Queue)
Marking connection and packets :
**** here we mark any connection coming from your PC (assuming your PC IP address is : 192.168.100.100)
chain=forward action=mark-connection new-connection-mark=MyPC_Connections passthrough=yes src-address=192.168.100.100 log=no log-prefix=""
**** here we mark any connection going to your PC
chain=forward action=mark-connection new-connection-mark=MyPC_Connections passthrough=yes dst-address=192.168.100.100 log=no log-prefix=""
**** here we mark any packets related to MyPC_Connections
chain=forward action=mark-packet new-packet-mark=MyPC_Connections passthrough=yes connection-mark=MyPC_Packets log=no log-prefix=""
**** Above mangles mark every packets and connections of your PC , internet , LAN , gaming ,all.....
*** If you wanna mark specific traffic it usually done by its IP address and port , if you know your game center IP address(es) and port which using for communicating , you can easily just mark your Gaming packets
Now we set our marked traffic priority :
add name=MyPC_QOS packet-marks=MyPC_Packets priority=1/1 target=""
** Default priority is 8 , so you can set you traffic to 1 and force the router to take care of your traffic first thing on its list
There are many option in firewall mangle and Queue , i suggest you to read references for more control over your traffic