I am trying to mark the flow for all my customers, so I can limit them individually in queue trees. I conjured up a script that I thought would work, but no luck:
:for e from 1 to 254 do={
/ip firewall mangle add \
dst-address=(x.x.x. . $e . "/32")\
in-interface=ether1 action=accept\
mark-flow=(x.x.x. . $e . "Down")\
comment="" disabled=no
}
Is there something wrong with the syntax, or am I way off base?