I would like to generate multiple SSH keys for my different servers.
For example:
- 1 RSA 2048 public/private key for 1.1.1.1
- 1 ECC public/private key for 2.2.2.3
- 1 ECC public/private key for 3.3.3.3
I understand the ssh keys are stored in the .ssh folder, but how can I copy the right public keys to the correct servers, and how can I generate multiple SSH keys without writing each-other over? I have read something about the -c command, but do not fully understand if it is able to do what I am requesting.
ssh-add -l... as well as the default identities listed in~/.ssh/... On Copying keys : Tryssh-copy-id-cis not a command; as an option onsshorssh-keygenit does (different) things completely unrelated to what you want; as an option onssh-addit could work but would be very clumsy.