Set up remote access in UNIX through OpenSSH (developerWorks)
Posted Feb 17, 2007 6:12 UTC (Sat) by
k8to (subscriber, #15413)
In reply to:
Set up remote access in UNIX through OpenSSH (developerWorks) by ldarby
Parent article:
Set up remote access in UNIX through OpenSSH (developerWorks)
While ssh-agent is a great solution for a lot of purposes, it's often not good enough for automation tasks.
Automation often requires that the automated task will continue to work after a reboot or similar, and thus ssh-agent will only work if you store the passphrase on-disk, in a script, etc. It is likely that this is security-equivalent to a blank passphrase, as the key-file is locally-stored and encrypted anyway. I think a blank passphrase is appropriate in some cases. You do gain limited advantages in security over an unencrypted, unauthenticated link, and the blank passphrase reminds you of the limitations.
Certainly you need to consider whether ssh-agent OR blank passphrases are acceptable security risks in your environment.
Thanks for ssh-copy-id. I never knew.
(
Log in to post comments)