Let's say I have multiple computers and multiple servers.
One computer has a private key, and its public key is spread among all of the servers.
Can I just copy my private key from this computer among my other computers to connect to the servers, or do I have to generate private keys on each computer and then authorize their public keys on each server?
If not, is there a better way to do it (that would save me some time)?
Thanks.
This seems to be a question where ssh-agent is the answer.
Let's assume that there is one machine that is currently accessible via the console called
console-box
, and a few other machinesremote-box-1
,remote-box-2
, ...remote-box-n
.First generate a key on the console-box
Then distribute the public key onto the remote boxen.
As soon as the agent is set up on
console-box
and agent forwarding option is activated, you can freely ssh/scp between your many development and deployment boxes without ever typing a password.