1
0
Fork 0

Update README.md

master
Ambrose Chua 2018-03-28 21:47:34 +08:00 committed by GitHub
parent a70bede555
commit 2885b939fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 2 deletions

View File

@ -1,11 +1,11 @@
# forward
A simple TCP proxy.
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.
## Usage
```
```bash
$ ./forward -help
Usage of ./forward:
-connect string
@ -14,3 +14,10 @@ Usage of ./forward:
listen on ip and port (default ":8081")
```
## 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"
```