Generating and Managing Multiple SSH Keys
Generating SSH Keys
To generate a new SSH key pair, you can use the ssh-keygen
command in your Linux terminal. Here's an example:
ssh-keygen -t rsa -b 4096 -C "[email protected]"
This command will generate a 4096-bit RSA key pair and associate it with the email address "[email protected]". You can choose a different algorithm, such as Ed25519 or ECDSA, by modifying the -t
option.
Managing Multiple SSH Keys
As you work with different systems or projects, you may need to use multiple SSH keys. Here's how you can manage them:
Storing SSH Keys
By default, SSH keys are stored in the ~/.ssh/
directory. You can create separate directories for each set of keys, for example:
mkdir ~/.ssh/work
mkdir ~/.ssh/personal
Configuring SSH to Use Multiple Keys
To configure SSH to use the appropriate key for each connection, you can create an ~/.ssh/config
file and specify the key to use for each host. Here's an example:
Host work-server
HostName work-server.example.com
User username
IdentityFile ~/.ssh/work/id_rsa
Host personal-server
HostName personal-server.example.com
User username
IdentityFile ~/.ssh/personal/id_rsa
In this example, the IdentityFile
directive specifies the path to the private key file to use for each host.
Switching Between SSH Keys
To switch between your different SSH keys, you can use the ssh-add
command. For example, to add your "work" key to the SSH agent:
ssh-add ~/.ssh/work/id_rsa
This will allow you to use this key for connections to the "work-server" host.