Setting up SSH access on local machine for a project.
When I ssh -v localhost my connection gets refused. With the following stack-trace.
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
My ssh configuration is the standard Mac OS X setup. With the following alterations.
# /etc/sshd_config
PermitUserEnvironment yes
PubkeyAuthentication yes
AuthorizedKeysFile .ssh/authorized_keys
# ~/.ssh/config
Host localhost
User Kyle.Welsby
/var/log/auth.login Linux, not sure about Mac OS. Also, shouldn'tAuthorizedKeysFilesay%h/.ssh/authorized_keys? – Piskvor Feb 3 '11 at 16:45PermitUserEnvironment yescommented this out and all worked fine-ish. – halfcube Feb 4 '11 at 14:38