SSH ログイン エラーの原因: ssh_exchange_identification: リモート ホストによって接続が閉じられました

SSH ログイン エラーの原因: ssh_exchange_identification: リモート ホストによって接続が閉じられました

はおよび/またはssh_exchange_identification: Connection closed by remote hostによって発生すると考えましたが、 allow のエントリは のみで、 deny は空です。/etc/hosts.allow/etc/hosts.denyALL:ALL

私の〜の上にGoogle クラウド VM私は追加しました:

  1. ALL:ALL\etc\hosts.allow、そして\etc\hosts.deny空です

  2. ファイアウォールルールの設定Google クラウド VMtcp:2222を許可する

  3. GatewayPorts clientspecified/etc/ssh/sshd_config

から行き先(アクセスしたいコンピュータ)にGoogle クラウド VM:

ssh -R 0.0.0.0:2222:localhost:22 -i google_compute_engine -o UserKnownHostsFile=/dev/null -o CheckHostIP=no -o StrictHostKeyChecking=no <username>@<google vm ip>

その後、次のNetstat -plant 2222ようになります。

tcp        0      0 0.0.0.0:2222            0.0.0.0:*               LISTEN      2700/0

以内Google クラウド VM:

ssh -p 2222 -i google_compute_engine localhost -v

OpenSSH_6.6.1, OpenSSL 1.0.1f 6 Jan 2014
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug1: Connecting to localhost [127.0.0.1] port 2222.
debug1: Connection established.
debug1: identity file google_compute_engine type -1
debug1: identity file google_compute_engine-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_6.6.1p1 Ubuntu-2ubuntu2.3
ssh_exchange_identification: Connection closed by remote host

-p 2222 を削除すると、sshコマンドはローカルに接続します。

関連情報