I'm doing some provisioning work, and it happens that I now need to do something I've never done before that I'm completely stumped on how to do.
I need to be able to generate an ssh key pair (ssh-keygen -t rsa) on one system, let's call it System A, and then transfer that pair to System B & System C in such a way that I can ssh from System B to System C. In other words I need an ssh key pair where I don't actually have to generate the key on any of the systems that will be ssh-ing.
How do I do this?
.ssh/authorized_keys
for this to work. – roadmr Jan 29 '15 at 21:07