Hi All,
I'd need some help about SSH:
I've got two Solaris machine, Host A and Host B,
and I want A to connect B through RSA authentication,
avoiding password request.
These the steps I performed on Host A:
$ ssh-keygen -t rsa
$ scp .ssh/id_rsa.pub u...@hostb:/home/user/.ssh/
On Host B:
$ cat id_rsa.pub >> authorized_host
... but ssh keeps asking password
By using ssh -vvv, I get:
[...]
debug1: Next authentication method: publickey
debug1: Trying private key: /export/home/user/.ssh/identity
debug1: Trying public key: /export/home/user/.ssh/id_rsa
debug2: we sent a publickey packet, wait for reply
debug1: Authentications that can continue:
gssapi-keyex,gssapi-with-mic,publickey,password,keyboard-interactive
debug1: Trying private key: /export/home/user/.ssh/id_dsa
debug2: we did not send a packet, disable method
debug1: Next authentication method: keyboard-interactive
debug2: userauth_kbdint
debug2: we sent a keyboard-interactive packet, wait for reply
debug2: input_userauth_info_req
debug2: input_userauth_info_req: num_prompts 1
debug1: Next authentication method: publickey
debug1: Trying private key: /export/home/user/.ssh/identity
debug1: Trying public key: /export/home/user/.ssh/id_rsa
debug1: Authentications that can continue:
gssapi-keyex,gssapi-with-mic,publickey,password,keyboard-interactive
debug1: Trying private key: /export/home/user/.ssh/id_dsa
debug1: Next authentication method: keyboard-interactive
... anything I'm missing out ?
Thanks,
Sereno