web-dev-qa-db-ja.com

ローカルホストへのSSH接続ssh_exchange_identification:リモートホストによって接続が閉じられました

プロジェクトのローカルマシンでSSHアクセスを設定します。

私がssh -v localhost接続が拒否されます。次のスタックトレースを使用します。

OpenSSH_5.2p1, OpenSSL 0.9.8l 5 Nov 2009
debug1: Reading configuration data /Users/Kyle.Welsby/.ssh/config
debug1: Applying options for localhost
debug1: Applying options for *
debug1: Reading configuration data /etc/ssh_config
debug1: Connecting to localhost [::1] port 22.
debug1: Connection established.
debug1: identity file /Users/Kyle.Welsby/.ssh/identity type -1
debug1: identity file /Users/Kyle.Welsby/.ssh/id_rsa type 1
debug1: identity file /Users/Kyle.Welsby/.ssh/id_dsa type -1
ssh_exchange_identification: Connection closed by remote Host

私のssh構成は、標準のMac OSXセットアップです。以下の変更を加えました。

# /etc/sshd_config
PermitUserEnvironment yes
PubkeyAuthentication yes
AuthorizedKeysFile .ssh/authorized_keys

# ~/.ssh/config
Host localhost
User Kyle.Welsby
1
kylewelsby

問題はたまたまPermitUserEnvironment yes私はこれをコメントアウトし、すべてうまくいきました。

0
kylewelsby