Você já tentou usar o parâmetro -i
com o caminho da chave privada? Como:
ssh -i ~/.ssh/id_rsa [email protected]
Além disso, verifique se as permissões da chave privada estão restritas apenas ao usuário ( chmod 700
, por exemplo).
Espero não ter ignorado uma resposta, mas até agora parece que estou atingindo uma parede de tijolos. Estou usando o VirtualBox no meu Mac OS X com um sistema convidado do Ubuntu 12.04. Embora funcione perfeitamente com a autenticação de senhas, não funciona com chaves. Eu simplesmente não consigo encontrar meu erro.
Agradeço qualquer ajuda. Obrigado antecipadamente!
Estou recebendo o seguinte:
myhost:~ myusername$ ssh -vp 3022 [email protected]
OpenSSH_6.2p2, OSSLShim 0.9.8r 8 Dec 2011
debug1: Reading configuration data /etc/ssh_config
debug1: /etc/ssh_config line 20: Applying options for *
debug1: /etc/ssh_config line 102: Applying options for *
debug1: Connecting to 192.168.56.1 [192.168.56.1] port 3022.
debug1: Connection established.
debug1: identity file /Users/myusername/.ssh/id_rsa type 1
debug1: identity file /Users/myusername/.ssh/id_rsa-cert type -1
debug1: identity file /Users/myusername/.ssh/id_dsa type -1
debug1: identity file /Users/myusername/.ssh/id_dsa-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_6.2
debug1: Remote protocol version 2.0, remote software version OpenSSH_6.2p2 Ubuntu-6ubuntu0.4
debug1: match: OpenSSH_6.2p2 Ubuntu-6ubuntu0.4 pat OpenSSH*
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-ctr [email protected] none
debug1: kex: client->server aes128-ctr [email protected] 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 ed:7e:bb:97:27:dd:82:82:b7:52:f0:e6:de:0d:f3:0e
debug1: Host '[192.168.56.1]:3022' is known and matches the RSA host key.
debug1: Found key in /Users/myusername/.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: 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: /Users/myusername/.ssh/id_rsa
debug1: Authentications that can continue: publickey
debug1: Offering RSA public key: vmssh
debug1: Authentications that can continue: publickey
debug1: Trying private key: /Users/myusername/.ssh/id_dsa
debug1: No more authentication methods to try.
Permission denied (publickey).
Eu fiz o seguinte até agora:
0 post os install
$ adduser sshuser
1 backup config (remote host)
$ sudo cp /etc/ssh/sshd_config /etc/ssh/sshd_config.backup
$ sudo chmod a-w /etc/ssh/sshd_config.backup
2. config (remote host)
$ sudo nano /etc/ssh/sshd_config
Port 22
PermitRootLogin no
AllowTcpForwarding no
X11Forwarding no
AllowUsers sshuser
LogLevel Verbose (/var/log/auth.log)
$ mkdir ~/.ssh
3. Generate and send keys (localhost)
if no .ssh dir:
$ mkdir ~/.ssh
$ chmod 700 ~/.ssh
$ ssh-keygen -t rsa -b 4096
$ ssh-add id_rsa
$ scp -P 3022 ~/.ssh/id_rsa.pub sshuser@localhost:/home/sshuser/.ssh/uploaded_key.pub
(remote host)
$ touch authorized_files
$ cat uploaded_key.pub >> authorized_files
$ chmod 600 authorized_files
$ sudo nano /etc/ssh/sshd_config
$ PasswordAuthentication no
$ sudo service ssh restart
(localhost)
$ ssh -p 3022 user@host
(where host = vboxeth ip 192.x.x.x)
Você já tentou usar o parâmetro -i
com o caminho da chave privada? Como:
ssh -i ~/.ssh/id_rsa [email protected]
Além disso, verifique se as permissões da chave privada estão restritas apenas ao usuário ( chmod 700
, por exemplo).
Tags ssh virtualbox mac ubuntu