到本地主机的SSH连接ssh_exchange_identification:由远程主机closures的连接

在本地计算机上为项目设置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 

我的SSHconfiguration是标准的Mac OS X设置。 有以下改动。

 # /etc/sshd_config PermitUserEnvironment yes PubkeyAuthentication yes AuthorizedKeysFile .ssh/authorized_keys # ~/.ssh/config Host localhost User Kyle.Welsby 

问题恰好是PermitUserEnvironment yes我评论这一切,一切工作正常。