Linux/SSH: Difference between revisions
< Linux
No edit summary |
No edit summary |
||
Line 8: | Line 8: | ||
on controlling client: | on controlling client: | ||
<pre> | <pre> | ||
ssh-keygen | ssh-keygen | ||
ssh-copy-id -i ~/.ssh/id_rsa user@server | ssh-copy-id -i ~/.ssh/id_rsa user@server | ||
</pre> | </pre> | ||
[[Category:Linux/Network]] | [[Category:Linux/Network]] | ||
[[Category:Linux]] | [[Category:Linux]] |
Revision as of 19:55, 10 June 2020
- 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