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?
|
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! |
|||
|
|
|
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:
then use:
And you get the same as:
For security concerning, just be sure that ssh key files and config file are only readable by you (chmod 600). |
|||
|
|
|
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. |
|||
|
|