Port forwarding in Windows
The other day I was looking for an easy way to setup port forwarding on my Windows Server 2008 development server.
I came across the built-in “netsh interface portproxy” Windows command which allows you to do this without the need to install any additional software.
So how do I do it?
netsh interface portproxy add v4tov4 listenport=<LOCAL PORT> connectport=<REMOTE PORT> connectaddress=<REMOTE ADDRESS>
More information available here
http://technet.microsoft.com/en-us/library/cc731068(v=ws.10).aspx
Latest posts by Shane Bartholomeusz (see all)
- Solved: Build Errors Not Showning in VS 2022 - 21st November 2024
- How To: Configure VSCode to Trust Self-Signed Certs - 16th August 2024
- Solved: GitHub Actions – HTTP 403: Resource not accessible by integration - 13th June 2024
Leave a Reply