Skip to content

Instantly share code, notes, and snippets.

@gilangvperdana
Last active October 6, 2024 09:52
Show Gist options
  • Save gilangvperdana/3133d9cf7fedba3f00a5c7731ad92b1b to your computer and use it in GitHub Desktop.
Save gilangvperdana/3133d9cf7fedba3f00a5c7731ad92b1b to your computer and use it in GitHub Desktop.
Port Forwarding on Windows Server

General

If you want to forward packet from your windows server to local server you can use this command

Command

Use case : i want to forward If user call 192.168.100.233 port 8006 it will be forwarded to 192.168.100.254 port 8006

netsh interface portproxy add v4tov4 listenport=8006 listenaddress=192.168.100.233 connectport=8006 connectaddress=192.168.100.254

Show rule existing

netsh interface portproxy show all

Delete rule Command

netsh interface portproxy delete v4tov4 listenport=8006 listenaddress=192.168.100.233

Reference

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment