我正在尝试学习如何使用 SSH 隧道。为此,我使用了两个 VPS。我想通过 vps-2 转发来自 vps-1 的 http 流量。我试图通过配置隧道
ssh -L 80:127.0.0.1:80 [email protected]
ssh -L 80:icanhazip.com:80 [email protected]
ssh -L 80:localhost:80 [email protected]
为了测试我使用wget -O - -q icanhazip.com
. 但无论如何我都会收到 vps-1 ip。我错过了什么?