我们通过 ProxyCommand
来执行代理命令。这里用的是 nc
,没有 nc 的需要提前安装一下。
SSH 通过 1080 代理端口登录,命令如下:
ssh -o "ProxyCommand=nc -x localhost:1080 %h %p" root@xxxx
或者讲配置写入到 config 中:
$ cat ~/.ssh/config
Host *
user root
ProxyCommand=nc -x localhost:1080 %h %p
我们通过 ProxyCommand
来执行代理命令。这里用的是 nc
,没有 nc 的需要提前安装一下。
SSH 通过 1080 代理端口登录,命令如下:
ssh -o "ProxyCommand=nc -x localhost:1080 %h %p" root@xxxx
或者讲配置写入到 config 中:
$ cat ~/.ssh/config
Host *
user root
ProxyCommand=nc -x localhost:1080 %h %p