View previous topic :: View next topic |
Author |
Message |
cibonato Apprentice
![Apprentice Apprentice](/images/ranks/rank_rect_2.gif)
![](images/avatars/1570761624444e46c6684fa.jpg)
Joined: 25 Apr 2006 Posts: 200 Location: Macross City
|
Posted: Fri Jun 02, 2006 1:09 pm Post subject: [SOLVED] Private/Public Keys and ssh-add. |
|
|
Hello... first of all let me explain the situation: I work on two different places and in each of them I have a computer, sometimes I work from home (using my home computer). SSH connections between these 3 computers are very very common and to make work easy I thought of using key authentication. I read some man pages (ssh, ssh-keygen, ssh-add) and created a kind of procedure to follow.
It's what I'm doing:
1) on the client I run ssh-keygen to create the key pairs.
2) copy the public key to the server and rename it to authorized_keys; this file is saved in ~/.ssh.
3) on the client I make a link called identity pointing to the public key.
4) so I run ssh-add on the client and type the passphrase used to create the key pairs.
After all these steps I try to make a connection between any of these computers. At the first time I have to type the passphrase and from the second on it's not necessary.
So here is where the problems arise. If I turn any of these computers off I have to type the passphrase again all the times I try to make a connection between them. To avoid this I run ssh-add again on the client.
Are there a way to stop this definitely? The idea is to use SSH passwordless, but if I have to type the passphrase all the times it's quite the same.
Thank you. _________________ 64 Bits, good good!
Last edited by cibonato on Fri Jun 02, 2006 4:41 pm; edited 1 time in total |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
JeliJami Veteran
![Veteran Veteran](/images/ranks/rank_rect_5_vet.gif)
![](images/avatars/148526789243d7753a09b11.jpg)
Joined: 17 Jan 2006 Posts: 1086 Location: Belgium
|
Posted: Fri Jun 02, 2006 1:47 pm Post subject: |
|
|
you can always generate a keypair without passphrase
less secure, but it works _________________ Unanswered Post Initiative | Search | FAQ
Former username: davjel |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
cibonato Apprentice
![Apprentice Apprentice](/images/ranks/rank_rect_2.gif)
![](images/avatars/1570761624444e46c6684fa.jpg)
Joined: 25 Apr 2006 Posts: 200 Location: Macross City
|
Posted: Fri Jun 02, 2006 4:46 pm Post subject: |
|
|
The solution was to create the key pair without passphrase. Using ssh-keygen -p one can chage the passphrase of a given private key (the command will prompt for the old passphrase), this way I could re-use my keys.
Done!
Thank you. _________________ 64 Bits, good good! |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
|