Hello all,
I need your help about a mangle rule.
I have a Server with mysql behide a mikrotik router. I want to give priority
to the mysql port (3306/tcp) over everything else for so mysql Server will always have best traffic from & to internet.
my mangle rules are :
/ip firewall mangle add action=mark-connection chain=forward disabled=no in-interace=wan1 new-connection-mark=server.upload passthrough=yes port=3306 protocol=tcp
/ip firewall mangle add action=mark-connection chain=forward disabled=no new-connection-mark=radius.downlad out-interface=wan1 passthrough=yes port=3306 protocol=tcp
/ip firewall mangle add action=mark-packet chain=forward connection-mark=server.upload disabled=no new-paket-mark=server.upload passthrough=yes
/ip firewall mangle add action=mark-packet chain=forward connection-mark=server.download disabled=no new-packet-mark=server.download passthrough=yes
then in queue tree I setup highest priority for this packets along with other rules with low priority.
Is that OK or I need to do something different.
Thank you.