SSH über Proxy mit sconnect. Mit diesem kleinen Tool schafft man es mit Linux über einen Socks oder HTTP-Proxy eine SSH Verbindung aufzubauen. Für alle Linux Distributionen
Auf der Shell als Root:
$ gcc -o sconnect connect.c $ cp sconnect /usr/local/bin $ nano ~/.ssh/config und die folgenden Zeilen eintragen:
# Für welche Hosts das ProxyCommand gilt: Host * # Verwendung mit Socks Proxy ProxyCommand /usr/local/bin/sconnect -4 -S your-socks-server:1080 %h %p # Verwendung mit HTTP Proxy ProxyCommand connect /usr/local/bin/sconnect -4 -H proxy.local.net:8080 %h %p
Das connect.c Script