O SSH não usa o PublicKey no CentOS 6.3

1

Eu tenho um servidor CentOS 6.3 e com um usuário chamado ako.
Estou executando o Kubuntu 12.10 como meu cliente e copiei minha chave pública para o servidor usando o comando ssh-copy-id .
Eu atualizei o arquivo /etc/ssh/sshd_config com estes valores:

RSAAuthentication yes
PubkeyAuthentication yes
StrictModes yes
PasswordAuthentication no

Mas, quando tento fazer login no servidor, recebo este erro:

Permission denied (publickey).

Eu configurei o SSH muitas vezes antes sem problemas, mas não tenho idéia do porquê de ele não funcionar !!

EDITAR
Esta é a saída de ssh executada no modo detalhado:

ssh [email protected] -v
OpenSSH_6.0p1 Debian-3ubuntu1, OpenSSL 1.0.1c 10 May 2012
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug1: Connecting to 123.456.789.000 [123.456.789.000] port 22.
debug1: Connection established.
debug1: identity file /home/ako/.ssh/id_rsa type 1
debug1: Checking blacklist file /usr/share/ssh/blacklist.RSA-2048
debug1: Checking blacklist file /etc/ssh/blacklist.RSA-2048
debug1: identity file /home/ako/.ssh/id_rsa-cert type -1
debug1: identity file /home/ako/.ssh/id_dsa type -1
debug1: identity file /home/ako/.ssh/id_dsa-cert type -1
debug1: identity file /home/ako/.ssh/id_ecdsa type -1
debug1: identity file /home/ako/.ssh/id_ecdsa-cert type -1
debug1: Remote protocol version 2.0, remote software version OpenSSH_5.3
debug1: match: OpenSSH_5.3 pat OpenSSH_5*
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_6.0p1 Debian-3ubuntu1
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-ctr hmac-md5 none
debug1: kex: client->server aes128-ctr hmac-md5 none
debug1: SSH2_MSG_KEX_DH_GEX_REQUEST(1024<1024<8192) sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP
debug1: SSH2_MSG_KEX_DH_GEX_INIT sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY
debug1: Server host key: RSA xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx
debug1: Host '123.456.789.000' is known and matches the RSA host key.
debug1: Found key in /home/ako/.ssh/known_hosts:1
debug1: ssh_rsa_verify: signature correct
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: Roaming not allowed by server
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey
debug1: Next authentication method: publickey
debug1: Offering RSA public key: /home/ako/.ssh/id_rsa
debug1: Authentications that can continue: publickey
debug1: Trying private key: /home/ako/.ssh/id_dsa
debug1: Trying private key: /home/ako/.ssh/id_ecdsa
debug1: No more authentication methods to try.
Permission denied (publickey).
    
por Omid Kamangar 16.02.2013 / 16:09

2 respostas

2

Você pode executar o ssh no modo detalhado para ver os detalhes ... Parece que você está se conectando como um usuário diferente ... "ako"

Verifique as permissões no diretório pessoal do usuário "ako" no sistema de destino. ssh-copy-id deveria ter feito isso por você, no entanto.

chmod go-w ~/
chmod 700 ~/.ssh
chmod 600 ~/.ssh/authorized_keys
    
por 16.02.2013 / 16:13
2

Você copiou seu arquivo id de um sistema com AppArmor para um sistema com SELinux .
Na máquina Centos 6.3, execute:

  • restorecon ~/.ssh/authorized_keys
  • chcon unconfined_u:object_r:ssh_home_t:s0 ~/.ssh/authorized_keys

No final, o contexto deve ser semelhante.

ls -Z .ssh/authorized_keys
-rw-------. user user unconfined_u:object_r:ssh_home_t:s0 .ssh/authorized_keys

    
por 16.02.2013 / 16:54