Difference between revisions of "2009 SEC830 LAB04"
(Link to my blog) |
(add link to man page) |
||
Line 5: | Line 5: | ||
ssh-copy-id -i ~/.ssh/id_rsa.pub username@mystery | ssh-copy-id -i ~/.ssh/id_rsa.pub username@mystery | ||
</pre> | </pre> | ||
+ | |||
+ | The man page for this command can be found [http://linux.die.net/man/1/ssh-copy-id| here] |
Latest revision as of 12:48, 3 February 2009
Here's a blog post that I made about setting up passwordless ssh logins using RSA authentication. --scarter4 17:42, 3 February 2009 (UTC)
Note that to copy your key to the server to use RSA authentication, there is a special command we can use that makes the process a bit easier:
ssh-copy-id -i ~/.ssh/id_rsa.pub username@mystery
The man page for this command can be found here