Linux - 免密码登录
简易教学
登录到服务器上,在~
目录下新建.ssh
目录
1 | mkdir .ssh |
回到本地机器,先在本地机器上生成公钥/私钥对
1 | ssh-keygen -t rsa -P '' |
它会生成~/.ssh
目录,.ssh
下有id_rsa
和id_rsa.pub
,然后执行
1 | cat ~/.ssh/id_rsa.pub | ssh fqk@xx.xx.xx.xx "cat >> ~/.ssh/authorized_keys" |
专业教学
转载来源: https://www.digitalocean.com/community/tutorials/how-to-set-up-ssh-keys--2
About SSH Keys
SSH keys provide a more secure way of logging into a virtual private server with SSH than using a password alone. While a password can eventually be cracked with a brute force attack, SSH keys are nearly impossible to decipher by brute force alone. Generating a key pair provides you with two long string of characters: a public and a private key. You can place the public key on any server, and then unlock it by connecting to it with a client that already has the private key. When the two match up, the system unlocks without the need for a password. You can increase security even more by protecting the private key with a passphrase.
Step One—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):
1 | ssh-keygen -t rsa |
Step Two—Store the Keys and Passphrase
Once you have entered the Gen Key command, you will get a few more questions:
1 | Enter file in which to save the key (/home/demo/.ssh/id_rsa): |
You can press enter here, saving the file to the user home (in this case, my example user is called demo).
1 | Enter passphrase (empty for no passphrase): |
It’s up to you whether you want to use a passphrase. Entering a passphrase does have its benefits: the security of a key, no matter how encrypted, still depends on the fact that it is not visible to anyone else. Should a passphrase-protected private key fall into an unauthorized users possession, they will be unable to log in to its associated accounts until they figure out the passphrase, buying the hacked user some extra time. The only downside, of course, to having a passphrase, is then having to type it in each time you use the Key Pair.
The entire key generation process looks like this:
1 | ssh-keygen -t rsa |
Step Three—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.
You can copy the public key into the new machine’s authorized_keys file with the ssh-copy-id command. Make sure to replace the example username and IP address below.
1 | ssh-copy-id user@123.45.56.78 |
Alternatively, you can paste in the keys using SSH:
1 | cat ~/.ssh/id_rsa.pub | ssh user@123.45.56.78 "mkdir -p ~/.ssh && cat >> ~/.ssh/authorized_keys" |
No matter which command you chose, you should see something like:
1 | The authenticity of host '12.34.56.78 (12.34.56.78)' can't be established. |
Now you can go ahead and log into user@12.34.56.78 and you will not be prompted for a password. However, if you set a passphrase, you will be asked to enter the passphrase at that time (and whenever else you log in in the future).
Optional Step Four—Disable the Password for Root Login
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:
1 | sudo nano /etc/ssh/sshd_config |
Within that file, find the line that includes PermitRootLogin and modify it to ensure that users can only connect with their SSH key:
1 | PermitRootLogin without-password |
Put the changes into effect:
1 | reload ssh |
Digital Ocean Addendum
The Digital Ocean control panel allows you to add public keys to your new droplets when they’re created. You can generate the SSH Key in a convenient location, such as the computer, and then upload the public key to the SSH key section.
Then, when you create a new VPS, you can choose to include that public key on the server. No root password will be emailed to you and you can log in to your new virtual private server from your chosen client. If you created a passphrase, you will be prompted to enter that upon login.
By Etel Sverdlov