Linux/SSH: Difference between revisions

From Wiki
No edit summary
mNo edit summary
 
Line 9: Line 9:
<pre>
<pre>
ssh-keygen
ssh-keygen
ssh-copy-id -i ~/.ssh/id_rsa user@server
ssh-copy-id -i ~/.ssh/id_rsa user@server     # Ubuntu up to 22.04
ssh-copy-id user@server                      # Ubuntu from 24.04
</pre>
</pre>
[[Category:Linux/Network]]
[[Category:Linux/Network]]
[[Category:Linux]]
[[Category:Linux]]

Latest revision as of 17:47, 1 September 2024

  • SSH port forwarding
$ ssh user@work.example.org -L 10000:172.16.10.10:22


  • SSH Key Login

on controlling client:

ssh-keygen
ssh-copy-id -i ~/.ssh/id_rsa user@server      # Ubuntu up to 22.04
ssh-copy-id user@server                       # Ubuntu from 24.04