我在运行 ubuntu 的远程服务器上的固定端口号上的静态 IP(192.168.xx)上运行了一个页面。
我想在本地访问此页面,但无法这样做。到目前为止,我已尝试使用 ssh 隧道,ssh -L <PORT_local>:localhost:<PORT_remote> user@remote-machine-name
并参考以下答案:https://superuser.com/questions/891895/how-to-access-webpage-running-on-remote-server
但是我还没有设法让它工作。channel 3: open failed: connect failed: Connection refused
ssh 登录完成后,我在我的远程服务器上看到,然后我尝试从我的本地计算机访问页面 localhost:<PORT_local>。 我确保使用 允许 <PORT_remote> 通过防火墙ufw
。 另请注意,我的本地计算机和远程服务器都在 VPN 上。 我该如何解决这个问题?