can ssh to localhost, other machines but not 127.0.0.1 or IP address
$ ssh localhost
Password:
Last login: Wed Feb 23 12:24:40 2011
$
# I can also login to another Mac on my local network:
$ ssh 192.168.0.5
Password:
Last login: Wed Feb 23 11:26:02 2011 from localhost
$
# However, I receive the following when I do:
$ ssh 127.0.0.1 -v -v -v
OpenSSH_5.2p1, OpenSSL 0.9.8l 5 Nov 2009
debug1: Reading configuration data /etc/ssh_config
debug2: ssh_connect: needpriv 0
debug1: Connecting to 127.0.0.1 [127.0.0.1] port 22.
# at which point it hangs until timeout.
Any ideas?
MacBook Pro, Mac OS X (10.6.6)