Connect SSH through a proxy in linux terminal
28, Novembro, 2014
Nenhum comentário
1 |
ssh user@final_dest -o "ProxyCommand=nc -X connect -x proxyhost:proxyport %h %p" |
With tunneling:
1 |
ssh -L 22:localhost:22 root@example.com -o "ProxyCommand=nc -X connect -x 192.168.1.26:3128 %h %p" |