I want to run ssh-agent (with maximum lifetime option), but not add any keys at startup, but instead add them on demand.

Like first time I login to some server it should ask for passphrase, next time (unless I waited for more than a hour) it should connect cleanly:

ssh server1
Enter passphrase for key '/home/vi/.ssh/id_dsa':
server1> ...

ssh server2
server2> # no passphrase this time

# wait for lifetime

ssh server2
Enter passphrase for key '/home/vi/.ssh/id_dsa':

I don't want to manually remember about running 'ssh-add' each time. (e.g. entered passphrase for just for ssh and "Oh, it hasn't remembered, need to retype").

How to configure ssh to automatically add key to ssh-agent if user provided the passphrase?

link|improve this question

64% accept rate
feedback

2 Answers

up vote 2 down vote accepted

OpenSSH's ssh-agent cannot do that. Features simply do not exist by default.

You could use GNOME Keyring, which comes with its own SSH agent implementation and is able to unlock keys on demand. It requires X11, though.

link|improve this answer
May be there's option of ssh client like "if there's id_dsa with passphrase and there's empty ssh-agent then call ssh-add first" or "if there's empty ssh-agent and we just unlocked some privkey then add it to agent"? – Vi. Aug 20 '11 at 17:46
In general, how to use "ssh-agent -t" with comfort? – Vi. Aug 20 '11 at 17:46
No, there is no such option in standard OpenSSH. (That does not mean it wouldn't be implemented -- but you need to ask the developers for it.) // In general, I find it much easier to just lock my desktop when going AFK. It's more secure than a ssh-agent timeout. – grawity Aug 20 '11 at 17:54
feedback

You could cheat and put something like alias ssh='ssh-add -l || ssh-add && ssh' on your .bashrc / .profile. This first runs ssh-add -l, which can return 0 (there are keys on agent), 1 (no keys) or 2 (no agent running); if it returns 0, ssh will run; if 1, ssh-add will run and then ssh; if 2, ssh-add will fail and ssh won't be run. Replace the && with ; if you want ssh to run even when there's no agent running.

link|improve this answer
1  
It will request passphrase to the key even when further ssh command does not use it. – Vi. Sep 9 '11 at 15:02
@Vi. true, but rare are the commands that don't use them (unless you're connecting to a server that uses keyboard-interactive). The key will be in the agent whenever you need them afterwards though. Also, the alias fortunately (or unfortunately) doesn't change backend uses of ssh (such as with git or rsync). – Kovensky Apr 3 at 12:05
(thinking about writing auto-call-ssh-add patch for ssh client) – Vi. Apr 3 at 17:48
feedback

Your Answer

 
or
required, but never shown

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