1
0
Fork 0
Go to file
Ambrose Chua eefbd63e5a
continuous-integration/drone/push Build is passing Details
Fix missing bypass and update README
2019-09-04 15:16:02 +08:00
vendor Add SSH connection option 2019-09-04 15:09:18 +08:00
.drone.yml Move when out and fix root of problem 2018-12-01 14:55:40 +08:00
.gitignore Initial commit 2018-03-01 20:24:15 +08:00
LICENSE Create LICENSE 2018-09-26 22:35:29 +08:00
README.md Fix missing bypass and update README 2019-09-04 15:16:02 +08:00
go.mod Add SSH connection option 2019-09-04 15:09:18 +08:00
go.sum Add SSH connection option 2019-09-04 15:09:18 +08:00
main.go Support Windows service with go-svc 2018-03-26 19:48:14 +08:00
server.go Fix missing bypass and update README 2019-09-04 15:16:02 +08:00

README.md

forward

A simple TCP proxy. Currently used in AppVenture's internal server to port forward from host to a Hyper-V VM.

Usage

$ ./forward -help
Usage of ./forward:
  -connect string
    	forward to address
  -listen string
    	listen on address (default ":8000")
  -ssh string
    	if set, will do basic introspection to forward SSH traffic to this address

Usage with SSH

You can use forward to do multiplexing of SSH and HTTP in a quick and dirty way, using very simple protocol introspection. A more robust solution would be sshttp

Usage on Windows

forward is wrapped with go-svc, enabling it to be run as a Windows service. To add with PowerShell:

New-Service -BinaryPathName "C:\path\to\forward.exe -connect 192.168.0.10:80 -listen :80" -Name "port-forward-http"