Simple port forwarding in Windows
First of all, you can use rinetd
that I wrote about here.
Rinetd
is cross-system software and I use it on both Linux and Windows.
But if you don’t want to use third-party software, you can use the built-in functionality in Windows itself
Create
netsh interface portproxy add v4tov4 listenport=11443 listenaddress=10.0.0.15 connectport=443 connectaddress=192.168.0.224
Delete
netsh interface portproxy delete v4tov4 listenport=11443 listenaddress=10.0.0.15 connectport=443 connectaddress=192.168.0.224
Cleanup
netsh interface portproxy reset