Hi,
as the first rule in my prerouting chain I have this:
/ip firewall mangle
add action=return chain=prerouting comment="established no-mark" \
connection-mark=no-mark connection-state=established
It is to save CPU by not processing next rules if connection was established and there is no connection-mark.
The question is - is there any difference between the example above and that rule:
/ip firewall mangle
add action=accept chain=prerouting comment="established no-mark" \
connection-mark=no-mark connection-state=established
?