23 lines
453 B
Markdown
23 lines
453 B
Markdown
# 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
|
|
|
|
```shell
|
|
ssh -R 0:<local_address>:<local_port> root@rebound-server -p 80
|
|
```
|
|
|
|
### Connecting to the tunnel on machine B
|
|
|
|
```shell
|
|
ssh -L <target_port>:0.0.0.0:1 <secret>@rebound-server -p 80
|
|
```
|
|
|
|
## Licence
|
|
|
|
[AGPL-3.0](./LICENCE.md) |