$ l
total 24K
drwxr-x--- 2 maik users 4.0K Dec 28 11:19 .
drwxr-x--- 38 maik users 4.0K Dec 28 11:22 ..
-rw-r--r-- 1 maik users 392 Dec 28 11:18 authorized_keys
-rw------- 1 maik users 1.8K Dec 28 11:09 id_rsa
-rw-r--r-- 1 maik users 391 Dec 28 11:09 id_rsa.pub
-rw-r--r-- 1 maik users 1.1K Dec 28 10:58 known_hosts
Eu gerei id_rsa
com ssh-keygen
+ uma frase-chave.
Copiei o conteúdo de id_rsa.pub
paraauthorized_keys
eu fiz ssh-add
Quando tento me conectar, ssh localhost
ele muda para ssh, maik@localhost
mas não consigo fazer o login com minha frase-chave.
Eu tenho que fazer outra coisa?
$ ssh -v localhost
OpenSSH_7.1p1, OpenSSL 1.0.2e 3 Dec 2015
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Connecting to localhost [::1] port 22.
debug1: Connection established.
debug1: identity file /home/maik/.ssh/id_rsa type 1
debug1: key_load_public: No such file or directory
debug1: identity file /home/maik/.ssh/id_rsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/maik/.ssh/id_dsa type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/maik/.ssh/id_dsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/maik/.ssh/id_ecdsa type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/maik/.ssh/id_ecdsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/maik/.ssh/id_ed25519 type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/maik/.ssh/id_ed25519-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_7.1
debug1: Remote protocol version 2.0, remote software version OpenSSH_7.1
debug1: match: OpenSSH_7.1 pat OpenSSH* compat 0x04000000
debug1: Authenticating to localhost:22 as 'maik'
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client [email protected] <implicit> none
debug1: kex: client->server [email protected] <implicit> none
debug1: expecting SSH2_MSG_KEX_ECDH_REPLY
debug1: Server host key: ecdsa-sha2-nistp256 SHA256:KfpWyOPnPr5kDDHkaPHGjFVzxYrGW9uVBWJuFYOP3Rk
debug1: Host 'localhost' is known and matches the ECDSA host key.
debug1: Found key in /home/maik/.ssh/known_hosts:5
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,password
debug1: Next authentication method: publickey
debug1: Offering RSA public key: /home/maik/.ssh/id_rsa
debug1: Authentications that can continue: publickey,password
debug1: Trying private key: /home/maik/.ssh/id_dsa
debug1: Trying private key: /home/maik/.ssh/id_ecdsa
debug1: Trying private key: /home/maik/.ssh/id_ed25519
debug1: Next authentication method: password
maik@localhost's password:
debug1: Authentications that can continue: publickey,password
Permission denied, please try again.
maik@localhost's password:
/var/log/auth.log
)?Respostas:
Você digitou a senha durante a etapa
ssh-add
para não precisar digitá-la mais uma vez, se estiverssh-agent
trabalhando. A "troca" é provavelmente o sinal de que funciona. Você pode verificá-lo executandoecho $SSH_CLIENT
, que deve escrever "de onde você está conectado".Mas não tenho ideia do que você quer dizer com a segunda parte da frase. Você pode ser mais preciso e detalhado do que deseja e do que acontece?
Suas chaves autorizadas precisam ter permissões diferentes. O arquivo não deve ser legível por mais ninguém. Você pode corrigi-lo usando
chmod 600 ~/.ssh/authorized_keys
fonte
echo $SSH_CLIENT
não retornam nada.