ssh:manage_ssh_key_file_with_passphrase
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
ssh:manage_ssh_key_file_with_passphrase [2016/10/17 13:10] – peter | ssh:manage_ssh_key_file_with_passphrase [2019/12/04 21:25] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== SSH - Manage SSH Key File With Passphrase ====== | ||
- | |||
- | For enhanced security, SSH should only be accessed by key file and not with a password. | ||
- | |||
- | However, what if your key is lost or stolen by hackers? Time to protect your sensitive SSH key with a passphrase. | ||
- | |||
- | When storing a private key on a server, I’d opt for a hardware option (HSM) since it’s likely the key will need to be actively used and thus a passphrase can’t be securely used (think automated use of a server-side private key). | ||
- | |||
- | ===== Cheat Sheet ===== | ||
- | |||
- | ^Name^Summary^ | ||
- | |Load key file|ssh-add ~/ | ||
- | |Remove all loaded keys|ssh-add -D| | ||
- | |Whether it’s encrypted|grep “ENCRYPTED” id_rsa| | ||
- | |Add/Change passphrase|ssh-keygen -p -f id_dsa| | ||
- | |Remove passphrase|ssh-keygen -p -P $passwd -N “” -f id_rsa| | ||
- | |Load key without prompt|Check link: here| | ||
- | |||
- | |||
- | ===== Add passphrase to existing ssh key ===== | ||
- | |||
- | We can easily use **ssh-keygen** to add a passphrase. | ||
- | |||
- | * Never use your private key other than your computer. | ||
- | |||
- | * In some cases, we might use key files to do passwordless login in remote servers. For example, ssh tunnel for port forwarding, ssh from jumpbox to other machines, etc. Then we have to make sure the key file is correctly loaded and recognized. Run **ssh-add ./id_rsa**, then input passphrase manually. This also can be done automatically. We will explain it shortly. | ||
- | |||
- | <code bash> | ||
- | # Change file mode to allow overwrite | ||
- | chmod 700 id_rsa | ||
- | |||
- | # Add passphrase to key file | ||
- | ssh-keygen -p -f id_rsa | ||
- | |||
- | # Denny-mac: | ||
- | # Key has comment ' | ||
- | # Enter new passphrase (empty for no passp... | ||
- | # Enter same passphrase again: | ||
- | # Your identification has been saved with ... | ||
- | </ | ||
- | |||
- | |||
- | ===== Load protected ssh key without prompt ===== | ||
- | |||
- | Pity that ssh-add itself doesn’t have native support for this. Here is a workaround. | ||
- | |||
- | <code bash> | ||
- | # Specify your passphrase here | ||
- | export YOUR_PASSPHRASE=" | ||
- | |||
- | # Load protected key without prompt | ||
- | echo "echo $YOUR_PASSPHRASE" | ||
- | chmod 700 /tmp/mypass | ||
- | cat id_rsa| SSH_ASKPASS=/ | ||
- | |||
- | # Verify loaded certificate | ||
- | ssh-add -l | ||
- | </ | ||
- | |||
- | |||
- | ===== Change passphrase for existing private key ===== | ||
- | |||
- | Run below command. | ||
- | |||
- | <code bash> | ||
- | ssh-keygen -p -f ~/ | ||
- | </ | ||
- | |||
- | |||
- | ===== Remove passphrase ===== | ||
- | |||
- | Use openssl to remove passphrase. | ||
- | |||
- | <code bash> | ||
- | openssl rsa -in id_rsa -out id_rsa_new | ||
- | </ | ||
- | |||
- | Same can be done by **ssh-keygen**. | ||
- | |||
- | <code bash> | ||
- | ssh-keygen -p -P " | ||
- | </ | ||
- | |||
- | More Reading: [[http:// | ||
- | |||
- | Footnotes: | ||
- | |||
- | [1] unix.stackexchange.com/ | ||
- | [2] www.thinkplexx.com/ | ||
- | [3] stackoverflow.com/ | ||
ssh/manage_ssh_key_file_with_passphrase.1476709852.txt.gz · Last modified: 2020/07/15 09:30 (external edit)