Access local server
/ip firewall mangle
add chain=prerouting in-interface=Local
dst-address=209.135.140.0/24 action=mark-packet
new-packet-mark=exempt-up
add chain=postrouting out-interface=Local
src-address=209.135.140.0/24 action=mark-packet
new-packet-mark=exempt-down
/queue type
add name=exempt kind=sfq
/queue tree
add name=hotspot-exempt-up parent=global-in
packet-mark=exempt-up queue=exempt max-limit=1G
add name=hotspot-exempt-down parent=global-out
packet-mark=exempt-down queue=exempt max-limit=1G
This is a script to access a local server with 100Mb speed. This script works on os version 5.x. But On os version 6.x the script does not work as global in, global out option is replaced by global. Do you know how to solve this or have any other solution.