如何创建到我的端口 http 80 的互联网隧道(如 NGROK)以向我的客户显示我的网站

如何创建到我的端口 http 80 的互联网隧道(如 NGROK)以向我的客户显示我的网站

我在 VirtualBox 上运行 Ubuntu Server 18.04,我已经安装了 LAMP,现在我想从互联网访问我的网络服务器,以便向我的客户展示网站。请帮帮我。=)

答案1


您可以使用OpenSSH 中的ssh 远程转发功能,远程 SSH 端口转发-R使用选项指定

您可以在线找到免费的 ssh 服务器提供商:https://www.fastssh.com/https://www.sshkit.com/https://www.vpnjantit.com/https://spotssh.com/

# on the VM lamp server

ssh -nN -R 80:vmhost:80 public.external.com

-R for remote forwarding
-n prevents reading from stdin
-N do not execute remote commands

# this will make the external server forward tpc/80 traffic to vmhost:80 via an ssh tunnel

相关内容