ssh:setup_ssh_keys
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
ssh:setup_ssh_keys [2016/12/06 10:52] – [Create the RSA Key Pair] peter | ssh:setup_ssh_keys [2019/12/04 21:32] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== SSH - Setup SSH Keys ====== | ||
- | ===== About SSH Keys ===== | ||
- | |||
- | SSH keys provide a more secure way of logging into a virtual private server with SSH than using a password alone. | ||
- | |||
- | |||
- | ===== Create the RSA Key Pair ===== | ||
- | |||
- | The first step is to create the key pair on the client machine (there is a good chance that this will just be your computer): | ||
- | |||
- | <code bash> | ||
- | ssh-keygen -t rsa | ||
- | </ | ||
- | |||
- | <WRAP info> | ||
- | The following syntax specifies the 4096 of bits in the RSA key to creation (default 2048): | ||
- | |||
- | <code bash> | ||
- | ssh-keygen -t rsa -b 4096 -f ~/ | ||
- | </ | ||
- | |||
- | Where, | ||
- | |||
- | * -t rsa : Specifies the type of key to create. The possible values are “rsa1” for protocol version 1 and “dsa”, “ecdsa”, | ||
- | * -b 4096 : Specifies the number of bits in the key to create | ||
- | * -f ~/ | ||
- | * -C "My web-server key" : Set a new comment. | ||
- | |||
- | <WRAP caution> | ||
- | **KEY TYPES**: | ||
- | |||
- | * **RSA** keys will work everywhere (in practice). | ||
- | * **DSA** keys used to work everywhere, as per the SSH standard ([[http:// | ||
- | * **ECDSA** support is newer, so some old client or server may have trouble with ECDSA keys. ECDSA is computationally lighter, but you'll need a really small client or server (say 50 MHz embedded ARM processor) to notice the difference. | ||
- | * **EC25519** has the advantage of being able to use the same key for signing for key agreement; and it is immune to several side channel attacks. | ||
- | |||
- | Right now, there is no security-related reason to prefer one type over any other, assuming large enough keys (2048 bits for RSA or DSA, 256 bits for ECDSA); key size is specified with the -b parameter. | ||
- | |||
- | <WRAP danger> | ||
- | **DANGER**: Documents leaked by former NSA contractor Edward Snowden show that the NSA created and promulgated a flawed formula for generating random numbers to create a "back door" in encryption products, the New York Times reported in September 2013. Reuters later reported that RSA became the most important distributor of that formula by rolling it into their software. | ||
- | |||
- | Undisclosed until now was that RSA received a large cash sum in a deal that set the NSA formula as the preferred, or default, method for number generation. | ||
- | |||
- | The RSA algorithm (with big enough keys) still cannot be easily broken. | ||
- | </ | ||
- | |||
- | To sum up, do **ssh-keygen -t rsa -b 4096** and you will be happy. | ||
- | </ | ||
- | </ | ||
- | ===== Store the Keys and Passphrase ===== | ||
- | |||
- | Once you have entered the Gen Key command, you will get a few more questions: | ||
- | |||
- | <code bash> | ||
- | Enter file in which to save the key (/ | ||
- | </ | ||
- | |||
- | You can press enter here, saving the file to the user home (in this case, my example user is called demo). | ||
- | |||
- | <code bash> | ||
- | Enter passphrase (empty for no passphrase): | ||
- | </ | ||
- | |||
- | It's up to you whether you want to use a passphrase. | ||
- | |||
- | The entire key generation process looks like this: | ||
- | |||
- | <code bash> | ||
- | ssh-keygen -t rsa | ||
- | </ | ||
- | |||
- | Displays: | ||
- | |||
- | < | ||
- | Generating public/ | ||
- | Enter file in which to save the key (/ | ||
- | Enter passphrase (empty for no passphrase): | ||
- | Enter same passphrase again: | ||
- | Your identification has been saved in / | ||
- | Your public key has been saved in / | ||
- | The key fingerprint is: | ||
- | 4a: | ||
- | The key's randomart image is: | ||
- | +--[ RSA 2048]----+ | ||
- | | .oo. | | ||
- | | | ||
- | | + . o | | ||
- | | . = = . | | ||
- | | = S = . | | ||
- | | o + = + | | ||
- | | . o + o . | | ||
- | | . o | | ||
- | | | | ||
- | +-----------------+ | ||
- | </ | ||
- | |||
- | The public key is now located in / | ||
- | |||
- | The private key is now located in / | ||
- | |||
- | |||
- | ===== Copy the Public Key ===== | ||
- | |||
- | Once the key pair is generated, it's time to place the public key on the virtual server that we want to use. | ||
- | |||
- | This should be placed into the user's **" | ||
- | |||
- | You can copy the public key into the new machine' | ||
- | |||
- | <code bash> | ||
- | ssh-copy-id user@123.45.56.78 | ||
- | </ | ||
- | |||
- | Alternatively, | ||
- | |||
- | <code bash> | ||
- | cat ~/ | ||
- | </ | ||
- | |||
- | No matter which command you chose, you should see something like: | ||
- | |||
- | < | ||
- | The authenticity of host ' | ||
- | RSA key fingerprint is b1: | ||
- | Are you sure you want to continue connecting (yes/no)? yes | ||
- | Warning: Permanently added ' | ||
- | user@12.34.56.78' | ||
- | </ | ||
- | |||
- | Now try logging into the machine, with "ssh ' | ||
- | |||
- | Now you can go ahead and log into user@12.34.56.78 and you will not be prompted for a password. | ||
- | |||
- | <WRAP info> | ||
- | Ensure the SSH permissions are set correctly: | ||
- | |||
- | <code bash> | ||
- | chmod 700 ~/.ssh | ||
- | chmod 600 ~/ | ||
- | </ | ||
- | |||
- | <WRAP todo> | ||
- | < | ||
- | chown $administrator: | ||
- | </ | ||
- | </ | ||
- | |||
- | </ | ||
- | ===== Disable the Password for Root Login (Optional) ===== | ||
- | |||
- | Once you have copied your SSH keys unto your server and ensured that you can log in with the SSH keys alone, you can go ahead and restrict the root login to only be permitted via SSH keys. | ||
- | |||
- | In order to do this, open up the SSH config file: | ||
- | |||
- | <code bash> | ||
- | sudo vi / | ||
- | </ | ||
- | |||
- | Within that file, find the line that includes **PermitRootLogin** and modify it to ensure that users can only connect with their SSH key: | ||
- | |||
- | <code bash> | ||
- | PermitRootLogin without-password | ||
- | </ | ||
- | |||
- | Put the changes into effect: | ||
- | |||
- | <code bash> | ||
- | reload ssh | ||
- | </ |
ssh/setup_ssh_keys.1481021523.txt.gz · Last modified: 2020/07/15 09:30 (external edit)