有服务器 A,以及服务器 B
服务器 B 在端口 80 运行web服务,现在要将该服务映射到服务器 A 端口 8888

通过 ssh local port forwarding (正向转发)

在服务器 A 上:

ssh -L 8888:localhost:80 [user on B]@[ip of B]

通过 reverse SSH tunneling (反向转发)

在服务器 B 上:

ssh -R 8888:localhost:80 [user on A]@[ip of A]

标签: none

添加新评论