wpetit c8c84a614d | ||
---|---|---|
cmd/server | ||
http | ||
misc/packaging | ||
ssh | ||
stat | ||
.dockerignore | ||
.env.dist | ||
.gitignore | ||
.goreleaser.yaml | ||
Dockerfile | ||
LICENCE.md | ||
Makefile | ||
README.md | ||
go.mod | ||
go.sum | ||
modd.conf | ||
mux_listener.go | ||
options.go | ||
server.go |
README.md
Rebound
An TCP tunneling server requiring only a SSH client.
Usage
We wants to access <local_address>:<local_port>
from machine A's network as <target_port>
on machine B.
Opening the tunnel on machine A
ssh -R 0:<local_address>:<local_port> root@rebound-server -p 80
Connecting to the tunnel on machine B
ssh -L <target_port>:0.0.0.0:1 <secret>@rebound-server -p 80