devel:misc:ssh
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
devel:misc:ssh [2016/04/26 16:58] – created boemer | devel:misc:ssh [2017/07/10 18:12] (current) – [SSH keys] boemer | ||
---|---|---|---|
Line 3: | Line 3: | ||
A guide about how to configure and use SSH in Ubuntu. | A guide about how to configure and use SSH in Ubuntu. | ||
- | * How to log into a remote machine? | + | |
- | * How to configure the login properly with an SSH key and config file? | + | |
- | * How to transfer files from one machine to another? | + | |
===== Log into a remote machine ===== | ===== Log into a remote machine ===== | ||
- | Different remote machines are usually used during the software development, | + | Different remote machines are usually used during the software development, |
ssh username@machine | ssh username@machine | ||
Line 18: | Line 18: | ||
For instance, | For instance, | ||
- | ssh boemer@clifton.ltas.ulg.ac.be | + | ssh boemer@blueberry.ltas.ulg.ac.be |
- | The terminal then asks for the password and the connection is established. | + | The terminal then asks for the password and the connection is established. |
Always having to type the full '' | Always having to type the full '' | ||
- | ssh clifton | + | ssh blueberry |
Line 34: | Line 34: | ||
==== SSH keys ==== | ==== SSH keys ==== | ||
- | SSH keys are similar to passwords. | + | SSH keys are similar to passwords. |
+ | The public key has to be transfered to the remote machine by the command '' | ||
- | The public key has to be transfered to the remote machine by the command '' | + | When you try to connect for the next time to the remote machine, no password will be asked since the ssh command compares your private key in '' |
- | + | ||
- | When you try to connect for the next time to the remote machine, no password will be asked since the ssh command compares your private key in '' | + | |
<note tip> You might want to connect from one remote machine immediately to another remote machine without entering the password, e.g. | <note tip> You might want to connect from one remote machine immediately to another remote machine without entering the password, e.g. | ||
- | ssh boemer@clifton.ltas.ulg.ac.be | + | ssh boemer@blueberry.ltas.ulg.ac.be |
ssh boemer@fabulous.ltas.ulg.ac.be | ssh boemer@fabulous.ltas.ulg.ac.be | ||
| | ||
- | The easiest way to do so is to copy your private key '' | + | The easiest way to do so is to copy your private key '' |
- | scp .ssh/id-rsa | + | scp .ssh/id_rsa |
</ | </ | ||
- | <note important> | + | <note important> |
chmod -R 700 .ssh | chmod -R 700 .ssh | ||
| | ||
- | This command sets the permission recursively for all files in the '' | + | This command sets the permission recursively for all files in the '' |
- | <note warning> Previously, it was suggested to copy your private key '' | + | <note warning> Previously, it was suggested to copy your private key '' |
==== Config file ==== | ==== Config file ==== | ||
+ | To log into a remote machine by typing | ||
+ | ssh blueberry | ||
+ | | ||
+ | instead of | ||
+ | |||
+ | ssh boemer@blueberry.ltas.ulg.ac.be | ||
+ | | ||
+ | a configuration file named '' | ||
+ | |||
+ | Host blueberry | ||
+ | HostName blueberry.ltas.ulg.ac.be | ||
+ | User boemer | ||
+ | IdentityFile ~/ | ||
+ | |||
+ | Additional defintions can simply be added to this file. If these abbreviations should also work on other machines, the '' | ||
===== File transfer ===== | ===== File transfer ===== | ||
- | Besides using FileZilla, files can also be directly transfered by SSH, or more precisely, SCP, i.e. Secure Copy. | + | Besides using FileZilla, files can also be directly transfered by SSH, or more precisely, |
+ | |||
+ | scp .ssh/config boemer@blueberry.ltas.ulg.ac.be: | ||
+ | |||
+ | Or, in short, | ||
+ | |||
+ | scp .ssh/config blueberry: | ||
devel/misc/ssh.1461682706.txt.gz · Last modified: by boemer