通过ssh让远程主机使用本地主机的网络代理
ssh有三种转发,为了使内网中的服务器访问到github,我需要通过ssh的远程端口转发,让服务器使用本地的网络代理
使用命令
1
ssh -R remote_proxy_port:localhost:local__proxy_port user_name@remote_ip -p remote_ssh_port
我的
remote_proxy_port
和local__proxy_port
均设置为7890
ssh配置文件
在配置文件里相应配置块里写入
RemoteForward 7890 localhost:7890
本文由作者按照 CC BY 4.0 进行授权