http proxy 越えの ssh

方法

# apt-get install connect-proxy

$ vi ~/.ssh/config
Host remote.host.name
    ProxyCommand connect-proxy -H your.http.proxy:8080 %h %p
$ ssh remote.host.name

経緯

$ apt-cache search ssh | grep connect

を実行した.

その他

proxychains パッケージを調べてみよ.

Mac OS X の場合 (2010.4.25追記)

標準で用意されている nc コマンドを使えばよい.

Host remote.host.name
    ProxyCommand nc -X connect -x your.http.proxy:8080 %h %p