Difference between revisions of "SSH"

From Useful Things
Jump to: navigation, search
Line 6: Line 6:
 
cat /root/.ssh/id_rsa.pub | ssh root@remotehost 'cat >> /root/.ssh/authorized_keys'
 
cat /root/.ssh/id_rsa.pub | ssh root@remotehost 'cat >> /root/.ssh/authorized_keys'
 
</source>
 
</source>
 +
 +
== Generate public/private RSA key-pair ==
 +
<pre>ssh-keygen -t rsa -C 'user@host.com'</pre>

Revision as of 11:31, 26 January 2015

Common arguments

-p port number (default 22)

Upload SSH public key to remote host

cat /root/.ssh/id_rsa.pub | ssh root@remotehost 'cat >> /root/.ssh/authorized_keys'

Generate public/private RSA key-pair

ssh-keygen -t rsa -C 'user@host.com'