I am a developer and work with a couple of servers. Is there any program that allows you to securely save SSH (and other related info, such as KVM access, etc) securely?

link|improve this question
feedback

3 Answers

up vote 2 down vote accepted

I think you are asking for a program that is essentially a secure vault for your usernames and passwords, so seeing as the others have answered in a different way, I will say that we used to use KeePass: http://keepass.info/

If you are the only person accessing the password DB then you should have no issues, but as we had multiple people accessing it was infuriating when one person had a lock on the DB, so we moved to PasswordManager Pro: http://www.manageengine.com/products/passwordmanagerpro/

Hope this answers your question!

link|improve this answer
I use Keepass too. Newer versions allow for simultaneous access ;-) – Renik Apr 8 '11 at 16:47
feedback

For SSH just use the config file. Default for ssh client on unix like sytems (i.e. ubuntu) is "$HOME/.ssh/config" and syntax is documented on man 5 ssh_config.

Example:

Host                     foo
Hostname                 10.20.0.1
User                     oper
IdentityFile             %d/.ssh/myoperid_rsa

then use:

ssh foo

And you get the same as:

ssh oper@10.20.0.1 -i ~/.ssh/myoperid_rsa

For security concerning, just be sure that ssh key files and config file are only readable by you (chmod 600).

link|improve this answer
feedback

I don't know what kind of information you want to securely save securely (joke regarding your question), but ssh-keys and ssh config file do the job.

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.