我有远程主机/服务器与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但是我仍然不清楚如何解决这个问题 .