SSHが特定のコンピュータで動作しない

SSHが特定のコンピュータで動作しない

LAN内の他のすべてのコンピュータ、および外部から接続できます。 SSHDを実行している他のコンピュータに接続します。 ssh を verbose と一緒に使用しようとすると、次のような内容が表示されます。

$ ssh -vvv 192.168.1.9
OpenSSH_6.2p2, OpenSSL 1.0.1e 11 Feb 2013
debug2: ssh_connect: needpriv 0
debug1: Connecting to 192.168.1.9 [192.168.1.9] port 22.
debug1: Connection established.
debug1: identity file /home/Steven/.ssh/id_rsa type -1
debug1: identity file /home/Steven/.ssh/id_rsa-cert type -1
debug3: Incorrect RSA1 identifier
debug3: Could not load "/home/Steven/.ssh/id_dsa" as a RSA1 public key
debug1: identity file /home/Steven/.ssh/id_dsa type 2
debug1: identity file /home/Steven/.ssh/id_dsa-cert type -1
debug1: identity file /home/Steven/.ssh/id_ecdsa type -1
debug1: identity file /home/Steven/.ssh/id_ecdsa-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_6.2
ssh_exchange_identification: read: Connection reset by peer

私が何を台無しにしたのか知っていますか? SSH設定ファイルを変更したことを覚えておらず、権限をテストするために一部のユーザーをグループに追加しました。上記のようにアカウントを指定したくない場合でも、最終エラーが発生する前に「ローカルバージョン文字列SSH-2.0-OpenSSH_6.2」で1分間停止します。私はそれほど価値のあるUbuntu Server 12.04 x86を実行しています。

ベストアンサー1

結局のところ、これは相手のSSHサーバーがクラッシュしたり、何らかの方法で動作しないことを意味します。それでもソケットを受信して​​いますが、暗号化ハンドシェイクを実行できません。

唯一の解決策は、リモート側でプロセスを再起動することです。

おすすめ記事