Hey everyone!
I have the following case, I have VM called test, and that VM has private IP of [1.2.3.4] and public IP of [5.6.7.8], I have a few NAT rules configured for the PublicIP to work.
add action=dst-nat chain=dstnat dst-address=5.6.7.8 in-interface-list=WAN protocol=tcp to-addresses=1.2.3.4
add action=dst-nat chain=dstnat dst-address=5.6.7.8 in-interface-list=WAN protocol=udp to-addresses=1.2.3.4
However I got a new problem, I need to create a NAT rule(s) for the case if the packets has src of [1.2.3.4] and dst [5.6.7.8] it should be routed to back to [1.2.3.4] and then get back a response from it, so my packet should travel something like [1.2.3.4] → [5.6.7.8] , rerouted request to [1.2.3.4], then I receive back response packet from a [5.6.7.8] to 1.2.3.4.
I’m not quite experienced with NAT rules, and have been struggling with that problem for a few hours. Any help is appreciated.