Difference between revisions of "SSH"

From Useful Things
Jump to: navigation, search
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
== Common arguments ==
 +
<code>-p</code> port number (default 22)
 +
 
== Upload SSH public key to remote host ==
 
== Upload SSH public key to remote host ==
 +
<source lang="bash">
 
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>
 +
 +
== Generate public/private RSA key-pair ==
 +
<pre>ssh-keygen -t rsa -C 'user@host.com'</pre>
 +
 +
== Test private key passpharse ==
 +
<pre>ssh-keygen -y</pre>

Latest revision as of 11:32, 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'

Test private key passpharse

ssh-keygen -y