Hi,
I'm following those two documentation
- First Time Configuration - RouterOS - MikroTik Documentation
- The ultimate Mikrotik iptables flowchart
to understand the workflow of a packet that has been "port forwarded" like
/ip firewall nat add \
chain=dstnat protocol=tcp port=3389 in-interface=ether1 \
action=dst-nat to-address=192.168.88.254
base on the above diagram, this rule is been process in 10: net (dstnat) prerouting then packet continue to
11 Routing lookup
12 dst addr=self ?
I guess the daddr has been changed thanks to action=dst-nat and the answer is now NO
then is been redirected to
13 mangle forward
14 filter forward
and HERE what is the connection-state now ?
Because I don't have a specific rule here that allow this connection.
But I do have
chain=forward action=accept connection-state=established,related,untracked
so is that mean that 10: nat (dstnat) prerouting set connection-state to established or related ???
Thanks.