多段ssh時にchannel 1: open failed: administratively prohibited: open failedというエラーが出る際の対処

症状

.ssh/configのProxyCommandを設定した際下記のようなエラーが出る
channel 1: open failed: administratively prohibited: open failed
※ ssh -J step_server target_server でも同様

原因

sshdの設定で AllowTCPForwarding no となっている

対処1

AllowTCPForwarding yes  にする

対処2

RemoteCommandを使う

Host target
  Hostname step_server.com
  RemoteCommand ssh target_server.com

Host step
  Hostname step_server.com
  
Host *
  User myname
  IdentityFile ~/.ssh/id_rsa

多段ssh時にchannel 1: open failed: administratively prohibited: open failedというエラーが出る際の対処」への1件のフィードバック

  1. ピンバック: AllowTCPForwardがoffの環境でもrsyncできるようにする – snipet of engineer

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です