SSH sem problema de senha

0

Eu começo a fazer a sessão SSH sem senha. Agora posso me conectar ao meu servidor assim:

bash-3.2$ ./dev2
Enter passphrase for key '/Users/roger/.ssh/id_rsa': 
Welcome to Ubuntu 16.04.3 LTS (GNU/Linux 2.6.32-042stab120.11 x86_64)

 * Documentation:  https://help.ubuntu.com
 * Management:     https://landscape.canonical.com
 * Support:        https://ubuntu.com/advantage

0 packages can be updated.
0 updates are security updates.

Last login: Wed Aug 23 08:25:06 2017 from 176.59.142.224

Agora eu edito o sshd_config e adiciono ao final:

RSAAuthentication yes
PubkeyAuthentication yes
AuthorizedKeysFile    .ssh/authorized_keys 

Reinicie o servidor, mas o ssh ainda me pede uma senha.

O que devo fazer?

    
por Denis Antonov 23.08.2017 / 11:47

1 resposta

0

Nesse caso, você tem passagem de pass phrase quando você cria, então se você conectar sem pass phrase quando SSH, você deve criar uma nova chave com o comando como:

**[test@test test]$ ssh-keygen**
Generating public/private rsa key pair.
Enter file in which to save the key (/home/test/.ssh/id_rsa):
Created directory '/home/test/.ssh'.
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /home/test/.ssh/id_rsa.
Your public key has been saved in /home/test/.ssh/id_rsa.pub.
The key fingerprint is:
ac:5e:9a:72:c6:cd:82:9c:cd:1f:bc:4d:de:f9:50:d9 tanto@hlink_backup_086
The key's randomart image is:
+--[ RSA 2048]----+
|                 |
|                 |
|                 |
|       .       o |
|        S     o E|
|       o     .   |
|   . *.o+ . .    |
|    =.B+o* . o   |
|     ++oo o o..  |
+-----------------+

Na etapa Enter passphrase, , você deve inserir vazio. Depois da criação, você pode adicionar a chave id_rsa.pub à pasta .ssh/authorized_keys do servidor remoto e verificar a permissão e alterar o arquivo authorized_keys com chmod 600:

[root@test test]# chmod -R 600 /home/test/.ssh/authorized_keys
[root@test test]# ls -l /home/test/.ssh/authorized_keys
-rw------- 1 test test 1212 Jul 12 14:17 /home/test/.ssh/authorized_keys
    
por Tannetto 23.08.2017 / 12:21