我有远程主机/服务器,具有ssh访问权限。
我的计算机位于我的工作网络中,只能通过ssh连接 在这个网络中。
由于端口22,我无法通过ssh连接到其他世界 被防火墙阻止。
我正在尝试创建ssh隧道以将示例localhost:80转发到remote_server:22。(我想通过ssh连接到localhost并将转发到我的远程服务器)
我试过没有代理的例子
sudo ssh -L localhost:443:remote_server_ip:22 root@remote_host_name
和代理
https://wiki.archlinux.org/index.php/Tunneling_SSH_through_HTTP_proxies_using_HTTP_Connect
我已经阅读了很多内容并检查了stackoverflow,但我仍然不清楚如何解决此问题。