SSH隧道与socat和tor
我试图通过使用socat访问我的开发服务器来创建隧道,如下所示: # start TOR tor # create tunnel socat TCP-LISTEN:4141 SOCKS4A:localhost:remotehost:22,socksport=9050 # login through local tunnel ssh localhost -p 4141 这是正常使用ssh时的输出: $ ssh -v remotehost -p 22 OpenSSH_6.1p1 Debian-4, OpenSSL 1.0.1c 10 May 2012 debug1: Reading configuration data /etc/ssh/ssh_config debug1: /etc/ssh/ssh_config line 19: Applying options for * debug1: Connecting to …