No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
9 additions and
2 deletions
-
README.md
|
|
@ -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" |
|
|
|
``` |