Re: Defering passphrase entry with ssh-add
- From: Hari Sekhon <hpsekhon@xxxxxxxxxxxxxx>
- Date: Fri, 23 Nov 2007 12:18:46 +0000
Derek Martin wrote:
On Tue, Nov 20, 2007 at 07:01:21PM +0000, Christopher Key wrote:Err, the above is perfectly feasible.
I've done created a Bash solution for now,
alias ssh="ssh-add -l >/dev/null; if [ \$? = 1 ]; then ssh-add; fi; ssh"
hardly elegant, but it does the job. I'm not aware of any technical reason why ssh-add couldn't defer requesting a password until its required.
This is technically infeasible, if not impossible.
ssh-add needs to ask you for your passphrase. A process can't run in the background ifYes which is why you only check/run it when ssh is used. but the agent is started before.
it needs to ask the user for input...
It needs to run in the foreground until it does this, and it needs to stay connected to yourCertainly not. My ssh-agent follows me around in whichever pts or tty I use.
terminal so it can ask you for it -- it would tie up your terminal
until it determined it needed your passphrase.
You are talking about ssh-add which is not the same thing and as mentioned above.
If you put this inAgain, ssh-agent works for me across all terminals as well as just in X, it's ssh-add you are talking about here which is
your .profile or whatever other login file, you would never get a
shell prompt until you typed your passphrase. I suppose if you were
in X it could conceivably spawn an X client to pop up a dialog to ask
you for the passphrase, but that could only work in X.
the whole point of the OP's idea, you do not arbitrarily run ssh-add without the need to use it's functionality.
Also, how would ssh know if you didn't have a key for this connection,err, you check for the presence of your ssh key(s). This is very basic programmatic control. Come on.
or if you just hadn't yet typed your passphrase?
If the user had a long passphrase, and made several mistakes typing it, the sshNot likely unless you are a one finger typist in which case I insist you stop using any unix immediately. If you're not using unix or some derivative, but instead using Windows, bad luck but at least it's well suited to your skill level. :-)
connection could time out before you got it right.
Also, the ssh connection is not started until the key is loaded, therefore it will never time out on you. I left this up for 5 mins on time(r) and it didn't time out.
Even if it's technically possible, it's really gross. And for what benefit? SoIt's actually a good point though, your shot is way off. If you have for example, a laptop, you power it up, open a terminal, ah, this stupid secondary prompt is in the way.
you can delay typing your passphrase, which you're going to need to
type eventually anyway?
Which leaves you with 2 options - you can either dismiss it and have an ssh connections fail or ask you pw if this is even allowed, or you can type it and never need it (and if you have a massive 20 character complex passphrase this is not efficient)
Better: If you use ssh, then you put it in once at that time and every future session is automatically using your cached key. If not, then no bother, you never have to put it in. You can check that thing you wanted, power off again, no prompt for big passphrase that you'll never use.
It seems to me trying to hack this in isDepends on how easy it is for you to do, took me literally one minute, but yields years of future convenience. Especially for a laptop which you are always switching on and off but not always using ssh.
totally not worth it.
If you want to delay, just don't run ssh-addEvery time you boot your laptop? Why give yourself the extra work. Not very smart.
until you need to ssh...
The requirements of this feature areOnly if you don't know anything. This is a 1 minute fix in bash.
ridiculously complex,
all to avoid having to type 7 characters (i.e.If you do a lot of stuff, streamlining is good. Repetition is stupid. I am significantly faster than any colleague in my company because of all the customization I have. It's one of the differences between newbies and veterans.
by putting ssh-add in your .profile instead of just typing it when you
know you're going to need it).
I think the OP's idea is perfectly valid. In fact, it so much more valid than your attempt to shoot it down that after a little thinking and your email, I've now implemented a similar solution myself, although I made the bash a bit nicer and in a func instead of alias, but the basic principal is actually ok.
-h
--
Hari Sekhon
- References:
- Defering passphrase entry with ssh-add
- From: Christopher Key
- Re: Defering passphrase entry with ssh-add
- From: Hari Sekhon
- Re: Defering passphrase entry with ssh-add
- From: Christopher Key
- Re: Defering passphrase entry with ssh-add
- From: Derek Martin
- Defering passphrase entry with ssh-add
- Prev by Date: Re: Defering passphrase entry with ssh-add
- Next by Date: Re: Restricted (ksh -r) shell and SSH on AIX5.1
- Previous by thread: Re: Defering passphrase entry with ssh-add
- Next by thread: Restricted (ksh -r) shell and SSH on AIX5.1
- Index(es):
Relevant Pages
|