ssh 配置“前置”torsocks

ssh 配置“前置”torsocks

我可以使用以下方式联系我的手机:

torsocks ssh myphone

如果我的.ssh/config

Host myphone
  User u0_a162
  Port 2222
  HostName umqkh75wp2chf5av5esqhtyzedmw4it76dvs7ild2rikbcek6eyqfsqd.onion

我可以以某种方式进行调整,.ssh/config以便我可以简单地编写并运行相同的代码:

ssh myphone

我可以以某种方式将其移入torsocks-.ssh/config可能使用 ProxyCommand 或类似的方法吗?

答案1

使用它作为 ProxyCommand:

ProxyCommand nc -x localhost:9050 -X 5 umqkh75wp2chf5av5esqhtyzedmw4it76dvs7ild2rikbcek6eyqfsqd.onion 2222

相关内容