Simple port forwarding tool, built with tokio-rs 🦀
Pretty much the very same thing as Windows' netsh interface portproxy
or Linux's iptables
forward - it maps the incoming connections from listen
local adress & port to remote connect
address and port.
Only TCP port forwarding is supported at this time.
This tool does not currently offer anything more over the native OS tools, maybe besides the unification and ease of defining the mappings.
sh
cargo install portproxy
Clone the repo and compile it:
sh
git clone https://github.com/spitfire05/portproxy.git
cd portproxy
cargo install
Windows binaries are avialable in the releases section of this repo.
portproxy
will try to read the config for paths in following order:
1) --config
CLI arg, if set
2) Value of PORTPROXY_CONFIG
env variable, if set
3) ~/.config/portproxy/toml
Config should contain one or more [[proxy]]
elements, that define the port mappings:
[[proxy]]
listen = "localhost:8080" # local address to listen on
connect = "some-server.lan:8485" # remote (or local) address to connect to
Running is as simple as it can be - just call the portproxy
binary. There are optional flags/parameters:
``` Usage: portproxy [OPTIONS]
Options:
-c, --config-path
Use Shawl to create a windows service of portproxy
.
shawl add --no-restart --no-log --name portproxy -- C:\full\path\to\portproxy.exe --log-level debug --log-dir C:\full\path\to\logs\directory <optional args>