I created a public/private key pair on a local machine using ssh-keygen. I entered a passphrase. I then used ssh-id-copy to put the public key on the remote machine.

When I ssh into the remote machine I'm asked for my passphrase after each each reboot on the local machine. Is this expected behavior? The local machine is using gentoo and the remote machine is using ubuntu.

Reference material I used: https://help.ubuntu.com/10.04/serverguide/C/openssh-server.html

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

This is expected behaviour. If you provide a pass phrase when generating a key pair then the pass phrase is use to encrypt the private key. You are being asked to provide the pass phrase so that the private key can be unlocked (decrypted) before it can be used to authenticate you to the remote host.

link|improve this answer
feedback

Check /var/log/secure of the server where you are trying to ssh for possible errors. Also make sure that permission of /home/<username>/.ssh is 700

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.