助けてください
##やりたいこと
Macで踏み台サーバ経由でwebサーバにssh接続したい
configに追記して多段sshに挑戦
####.ssh/configに追記
Host bastion Hostname xx.xxx.xxx.xx User ec2-user IdentityFile ~/.ssh/xxxxxx.pem Host web01 Hostname xx.x.xx.xx User ec2-user IdentityFile ~/.ssh/xxxxxx.pem ProxyCommand ssh bastion -W %h:%p
sshで踏み台(bastion)には接続ができるが
webサーバ(web01)に接続しようとすると
下記のエラーが発生
channel 0: open failed: connect failed: Connection timed out stdio forwarding failed kex_exchange_identification: Connection closed by remote host
pingで確認
AWSコンソールでEC2インスタンス詳細画面にあるプライベート IPv4 アドレスを確認しpingコマンド打ってみても繋がらない感じがしています。
[ec2-user@ip-xxxxxxx ~]$ ping xx.xxx.xxx.xx PING xxxxxxxx (xxxxxxxxx) 56(84) bytes of data. ^C --- xxxxxxxxx ping statistics --- 11 packets transmitted, 0 received, 100% packet loss, time 10228ms
ググってみたのですが分からずに詰まっています。。。。。
ご教示いただけると助かります。
回答2件
あなたの回答
tips
プレビュー