- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- SSH/多段接続/OpenSSHのProxyCommandを使う へ行く。
ProxyCommandで多段接続
localhost から remote1を介して、remote2にアクセスしたい場合。
- connectコマンドをRemote1にインストールする。
wget http://www.meadowy.org/~gotoh/ssh/connect.c gcc connect.c -o connect cp connect $HOME/bin/
- Localhostの$HOME/.ssh/configを以下のようにする。
Host remote2 user taro ProxyCommand ssh remote1 /home/taro/bin/connect %h %p
- ssh remote2で接続できるようになる。