Eu tenho uma instalação do OS X 10.6.8 que permite o ssh (mas não necessariamente muito mais). No entanto, quando se trata de ssh a partir desta instalação, ele falha nas duas instâncias que posso testar, ambas com Permission denied (publickey,password)
ou Permission denied (publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive).
Uma depuração higienizada da conexão
ssh -v muser@IP_ADDRESS
OpenSSH_5.2p1, OpenSSL 0.9.8y 5 Feb 2013
debug1: Reading configuration data /Users/muser/.ssh/config
debug1: Applying options for *
debug1: Reading configuration data /etc/ssh_config
debug1: Connecting to IP_ADDRESS [IP_ADDRESS] port 22.
debug1: Connection established.
debug1: identity file /Users/muser/.ssh/id_rsa type 1
debug1: Remote protocol version 2.0, remote software version OpenSSH_5.2
debug1: match: OpenSSH_5.2 pat OpenSSH*
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_5.2
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: Host 'IP_ADDRESS' is known and matches the RSA host key.
debug1: Found key in /Users/muser/.ssh/known_hosts:3
debug1: ssh_rsa_verify: signature correct
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive
debug1: Next authentication method: publickey
debug1: Offering public key: /Users/muser/.ssh/id_rsa
debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive
debug1: No more authentication methods to try.
Permission denied (publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive).
mesmo
MacMini2:~ muser$ ssh muser@SELF_IP
Permission denied (publickey,keyboard-interactive).
Parece que a chave pública não está sendo enviada ...
ssh-add -l
retorna The agent has no identities
. (Não estou certo de que isso signifique algo, porque o mesmo comando em outra instalação retorna o erro sem identidade, mas pode ssh para outras máquinas.)
.ssh
diretório com ls -l
retorna
-rw------- 1 muser staff 818 Aug 27 10:49 authorized_keys
-rw-r--r-- 1 muser staff 399 Sep 1 22:39 authorized_keys2
-rw-r--r--@ 1 muser staff 266 Sep 20 09:15 config
-rw------- 1 muser staff 1743 Sep 20 09:08 id_rsa
-rw-r--r-- 1 muser staff 412 Sep 20 09:08 id_rsa.pub
-rw-r--r-- 1 muser staff 1589 Sep 20 08:52 known_hosts
os seguintes foram executados:
chmod 700 ~/.ssh
chmod 600 ~/.ssh/id_rsa
Acesso às Chaves indica dois conjuntos de chaves (kerberos e systemdefault) ambos mostram criptografia de 1024 bits. Eu criei via ssh-keygen
um conjunto de chaves RSA 2048 bits, mas isso aparentemente não é visto pelo sistema.
Como obtenho o ssh executando a saída desta instalação?