I'm unsure of the terminology for this question. Trying to solve a problem, I'm being forced to grow and learn something very new to me! How would I do Destination NAT on Windows Server 2016/2019 for an IP address? Is RRAS part of the solution, and how would I set this up?
- MyServer= 172.1.1.10
- RemoteDeviceReal= 10.1.1.20
- RemoteDevicePublic= 172.2.2.20
Talking with a linux expert, they would use something like this with iptables
iptables -t nat -A PREROUTING -p tcp -d 10.1.1.20 -j DNAT --to-destination 172.2.2.20
iptables -t nat -A POSTROUTING -s 172.2.2.20 -j SNAT --to-destination 10.1.1.20
Besides using some kind of NAT Proxy, what other solutions can I/should I look at?
any suggestions or hints that I could look up that would point me in the right direction. Is this even possible?