1
0
Fork 0
forward/README.md

24 lines
646 B
Markdown
Raw Normal View History

2018-03-01 20:24:15 +08:00
# forward
2018-03-28 21:47:34 +08:00
A simple TCP proxy. Currently used in [AppVenture](https://appventure.nushigh.edu.sg/)'s internal server to port forward from host to a Hyper-V VM.
2018-03-01 20:24:15 +08:00
## Usage
2018-03-28 21:47:34 +08:00
```bash
2018-03-01 20:24:15 +08:00
$ ./forward -help
Usage of ./forward:
-connect string
forward to ip and port (default ":8080")
-listen string
listen on ip and port (default ":8081")
```
2018-03-28 21:47:34 +08:00
## Usage on Windows
`forward` is wrapped with [go-svc](https://github.com/judwhite/go-svc), enabling it to be run as a Windows service. To add with PowerShell:
```powershell
New-Service -BinaryPathName "C:\path\to\forward.exe -connect 192.168.0.10:80 -listen :80" -Name "port-forward-http"
```