HELPA

?????? hanpedro at gmail.com
Wed Nov 19 20:39:12 EST 2008


I have a problem in ssh login without password
 
Systems:  vmware-centos 5.2:  192.168.0.4  vista copssh: 192.168.0.2

[192.168.0.4 $] ssh-keygen -t dsa
[192.168.0.4 $] scp -p id_dsa.pub tester at 192.168.0.2:.ssh

[192.168.0.2 $] cat .ssh/id_dsa.pub >> .ssh/authorized_keys
[192.168.0.2 $] chmod 700 .ssh
[192.168.0.2 $] chmod 600 .ssh/authorized_keys

[192.168.0.4 $] ssh id at 192.168.0.2
Permission denied (publickey).

But with password, I can connect to 192.168.0.2.

The sshd_conf is as follows;
 

192.168.0.4(centos 5.2) sshd_conf:
 
Protocol 2
HostKey /etc/ssh/ssh_host_rsa_key
HostKey /etc/ssh/ssh_host_dsa_key
SyslogFacility AUTHPRIV
#LogLevel INFO
RSAAuthentication yes
PubkeyAuthentication yes
AuthorizedKeysFile .ssh/authorized_keys
PasswordAuthentication no
ChallengeResponseAuthentication no
GSSAPIAuthentication yes
GSSAPICleanupCredentials yes
UsePAM yes
AcceptEnv LANG LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE LC_MONETARY
LC_MESSAGES AcceptEnv LC_PAPER LC_NAME LC_ADDRESS LC_TELEPHONE
LC_MEASUREMENT AcceptEnv LC_IDENTIFICATION LC_ALL X11Forwarding yes
Subsystem sftp /usr/libexec/openssh/sftp-server
192.168.0.2 (copssh) sshd_conf:
 
Protocol 2
SyslogFacility AUTHPRIV
RSAAuthentication yes
PubkeyAuthentication yes
AuthorizedKeysFile .ssh/authorized_keys
PasswordAuthentication no
ChallengeResponseAuthentication no
AcceptEnv LANG LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE LC_MONETARY
LC_MESSAGES AcceptEnv LC_PAPER LC_NAME LC_ADDRESS LC_TELEPHONE
LC_MEASUREMENT AcceptEnv LC_IDENTIFICATION LC_ALL X11Forwarding yes
Subsystem sftp /usr/libexec/openssh/sftp-server
 
 
ssh -vvv id at 192.168.0.2:
 
......
......
debug1: Host '192.168.0.2' is known and matches the RSA host key.
debug1: Found key in /home/hanpedro/.ssh/known_hosts:2
debug2: bits set: 495/1024
debug1: ssh_rsa_verify: signature correct
debug2: kex_derive_keys
debug2: set_newkeys: mode 1
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug2: set_newkeys: mode 0
debug1: SSH2_MSG_NEWKEYS received
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug2: service_accept: ssh-userauth
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug2: key: /home/hanpedro/.ssh/id_rsa ((nil))
debug2: key: /home/hanpedro/.ssh/id_dsa ((nil))
debug1: Authentications that can continue: publickey
debug3: start over, passed a different list publickey
debug3: preferred gssapi-with-mic,publickey,keyboard-interactive,password
debug3: authmethod_lookup publickey
debug3: remaining preferred: keyboard-interactive,password
debug3: authmethod_is_enabled publickey
debug1: Next authentication method: publickey
debug1: Trying private key: /home/hanpedro/.ssh/id_rsa
debug3: no such identity: /home/hanpedro/.ssh/id_rsa
debug1: Trying private key: /home/hanpedro/.ssh/id_dsa
debug3: no such identity: /home/hanpedro/.ssh/id_dsa
debug2: we did not send a packet, disable method
debug1: No more authentication methods to try.
Permission denied (publickey).
 

What am I wrong?
Any comment would be appreciated.




More information about the openssh-unix-dev mailing list