sshkey
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
sshkey [2011/04/05 15:54] – cangiani | sshkey [2022/08/05 13:20] (current) – admin | ||
---|---|---|---|
Line 2: | Line 2: | ||
You can connect to the servers using the SSH protocol without the need to insert the password every time you connect. The trick is to generate a encripted key that can be used by the systems to recognize yourself and allow your access to local resources. | You can connect to the servers using the SSH protocol without the need to insert the password every time you connect. The trick is to generate a encripted key that can be used by the systems to recognize yourself and allow your access to local resources. | ||
This behaviour can be used when you are using the Servers from the Epfl Network, but also when you connect to the server from outside the Epfl. | This behaviour can be used when you are using the Servers from the Epfl Network, but also when you connect to the server from outside the Epfl. | ||
+ | ===== Setup ===== | ||
+ | |||
+ | ==== Generate the public/ | ||
+ | |||
+ | Note that this doc applies only to Unix (Mac/ | ||
- | ===== Ssh without password from local workstation ===== | ||
- | ==== Apple Os X & Linux ==== | ||
* Login in your workstation and open a Terminal Windows (if you are using the Graphical interface) | * Login in your workstation and open a Terminal Windows (if you are using the Graphical interface) | ||
* Execute this command | * Execute this command | ||
- | $ ssh-keygen -t dsa | + | $ ssh-keygen -t ed25519 |
- | * When the system ask a name for the file **id_dsa** just press enter | + | * When the system ask a name for the file **id_ed25519**, just press enter |
- | * The system will ask your for a password. This is the password that is used to encrypt your private key file (id_dsa) so that, even if the file gets stolen, it cannot be used. Try to generate a [[strongpass|strong password]]. | + | |
- | * Now you have to append | + | * The system will ask your for a password. This is the password that is used to encrypt |
- | | + | |
+ | |||
+ | $ ssh-copy-id < | ||
* In our cluster, all the machines have access to the same home directory. Therefore you can use standard local copy: | * In our cluster, all the machines have access to the same home directory. Therefore you can use standard local copy: | ||
- | $ cat ~/ | ||
- | From now, every time you connet to a server, the server will recognize your workstation automatically (it read the ~/.ssh/authorized_keys file everytime you connect) and you can login without bothering with the password.... well almost! In fact, since your private key is encrypted, you need to type the password that can decrypt it before using it. So what ? | + | $ cat ~/.ssh/id_ed25519.pub >> ~/.ssh/ |
- | === ssh-agent === | + | From now, every time you connect to a server, the server itself will recognize your workstation automatically (it read the ~/.ssh/ |
- | Ssh-agent is a program that keeps in memory | + | In fact, since your private key is encrypted, |
- | Let's set it up. | + | ==== Setup ssh-agent ==== |
+ | Ssh-agent is a program that keeps in memory your decrypted private ssh key and serves it to ssh when it is needed. In this way you only have to type the decryption password only once. Keeping the decrypted key (or the password) in memory is considered safer than letting the key file un-encrypted. | ||
+ | === On desktop sessions === | ||
+ | All modern desktop environment (os X, Gnome, KDE), do take care automatically the ssh key decryption business and you don't have to do anything. Yahoo! | ||
- | ===== Ssh without password | + | === On console |
+ | If you are not on a full desktop environment (e.g. if you ssh to a machine | ||
+ | The two (actually three) steps are | ||
+ | * launch '' | ||
- | ==== Apple Os X & Linux ==== | + | $ eval `ssh-agent -s` |
- | * Open a terminal emulation window | + | * ask '' |
- | * Execute the command | + | |
- | $ ssh-keygen | + | $ ssh-add [-t time_in_seconds] ~/ |
- | * When the system ask a name for the file **id_dsa** just press enter | + | * before logging out you have to remember to kill the ssh-agent: |
- | * Do the same for the **id_dsa.pub** file | + | |
- | * cd in your .ssh directory with | + | |
- | + | ||
- | $ cd ~/.ssh | + | |
- | + | ||
- | * Execute this command | + | |
- | $ cat id_dsa.pub | + | $ ssh-agent -k |
- | * Open another window and from this connect | + | Since this is quite cumbersome, I suggest |
- | * cd in .ssh directory with | + | |
- | | + | < |
+ | # only for interactive shell | ||
+ | if [ "$PS1" ]; then | ||
+ | # run ssh agent if not already running | ||
+ | SSHAGENT=/ | ||
+ | if [ -z " | ||
+ | eval `$SSHAGENT -s` | ||
+ | alias ssh=' | ||
+ | trap " | ||
+ | fi | ||
+ | fi | ||
+ | </ | ||
- | * Execute | + | This will start '' |
- | + | ||
- | $ cat >> authorized_keys | + | |
- | * Now copy & paste with the mouse the key you have in the first window (something that start with sh-dss AAAAB3NzaC1k....) to the second window. | ||
- | * press the " | ||
- | * Try to connect to **lth.epfl.ch**, |
sshkey.1302011646.txt.gz · Last modified: 2011/04/05 15:54 by cangiani