ssh 踏み台設定の例
- 2015年 6月4日(木) 14:23 JST
- 投稿者: akira
- 表示回数 103
踏み台経由でアクセスしないといけないサーバには,.ssh/configを書いてローカルから1コマンドでログインする
Host target.example.com
HostName 192.168.123.123
ProxyCommand ssh fumidai.example.com nc %h %p
多段の踏み台
Host fumidai2.example.com
HostName 192.168.123.123
ProxyCommand ssh fumidai1.example.com nc %h %p
Host target.example.com
HostName 10.0.0.123
ProxyCommand ssh fumidai2.example.com nc %h %p