Skip to content

本地 | 远程端口绑定

Coyove edited this page Sep 27, 2018 · 1 revision

Local Port Forwarding

客户端命令:

./goflyway -up ... -bind 127.0.0.1:3000

等同于:

ssh -L 8100:127.0.0.1:3000 user@server

8100是客户端的监听端口

Remote Port Forwarding

客户端命令:

./goflyway -up ... -lbind 127.0.0.1:3000

等同于:

ssh -R 8100:127.0.0.1:3000 user@server

8100是服务端的监听端口

该功能只能forward HTTP请求,不能用于生产环境,不能使用ws://,不能用于传输大量数据。

Clone this wiki locally