Re-route a port request on windows

Associate
Joined
20 May 2006
Posts
1,068
Hi guys,

I'm connected to two different networks, with different subnets on my computer, and I was wondering if there is a way to setup some configuration so that any request that comes to my computer on port 333 is redirected to another IP/port for that information? And then the information would be sent back through my computer to the requesting end?
 
I'm not sure if it'll do what you want, but have a look at the 'netsh' command. It'll be something like:-

Code:
netsh interface portproxy add v4tov4 listenport=12345 listenaddress=192.168.1.1 connectport=56789 connectaddress=192.168.2.1
 
Back
Top Bottom