多端口转发

多端口转发

这是我的配置

  • 主机A(客户端):
    ssh -fTN -L 7878:127.0.0.1:8989 [email protected]
    https_proxy=http://localhost:7878
    http_proxy=http://localhost:7878
    
  • HostB(转发服务器)
    IP: 10.162.241.105
    ssh -fTN -L 9898:localhost:3129 [email protected]
    forward-ports:
        port=8989:proto=tcp:toport=9898:toaddr=
    
  • HostC(服务器):HostC 在端口 3129 上定义了代理
    IP: 10.162.241.112
    

我想要实现的是:我想在 HostA 上运行 apt update 但它不起作用。

HostA 应通过端口 8989 连接到 HostB。HostB 的 Firewalld 应将流量从 9898 转发到 8989。

相关内容