Hello, friends.
My issue may look like a noob, but I've searched a lot and didn't find any glue.
I have two Mikrotik (M1 and M2) routers and a Wireguard tunnel between them. Works fine except one thing. M1 has a public IP and my goal is to get access to host in M2 network via connection from Internet to a M1 public IP. I tried dstnat and netmap rules in Firewall and no luck. I see incoming connection but no reply from host in M2 network.
Apparently I'm missing some rule to properly send reply back to the WAN. Would you please give me an idea where to search for a solution?
A M1 dstnat rule is as follows(address in to-address is from M2 LAN):
add action=dst-nat chain=dstnat comment="My Home NVR" dst-port=44444 \
in-interface-list=WAN log-prefix=NVR protocol=tcp to-addresses=10.10.10.198 \
to-ports=80
Thank you.