==================================================== ==================
ATUALIZAÇÃO: Verificou-se que a configuração do sshd host2
não permitirá o login da senha. Graças a pessoas responderam isso.
==================================================== ==================
Cenário: Trabalhando com uma empresa para o meu projeto de faculdade. Preciso usar o PuTTy para SSH host1
primeiro e, a partir daí, SSH host2
(veja abaixo). Foi-me dado um nome de usuário e senha no host2.
Eu não tenho acesso ao host2, então não tenho conhecimento dele sshd_config
.
Foi o que aconteceu quando eu estava tentando fazer o SSH host2
de host1
:
ff@host1:~$ ssh -v host2
OpenSSH_5.1p1 Debian-5, OpenSSL 0.9.8g 19 Oct 2007
debug1: Reading configuration data /home/ff/.ssh/config
debug1: Applying options for *
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Applying options for *
debug1: Connecting to host2 [192.*.*.*] port 22.
debug1: Connection established.
debug1: identity file /home/ff/.ssh/identity type -1
debug1: identity file /home/ff/.ssh/id_rsa type -1
debug1: identity file /home/ff/.ssh/id_dsa type -1
debug1: Remote protocol version 2.0, remote software version OpenSSH_4.3
debug1: match: OpenSSH_4.3 pat OpenSSH_4*
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_5.1p1 Debian-5
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-cbc hmac-md5 none
debug1: kex: client->server aes128-cbc 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 'sd01' is known and matches the RSA host key.
debug1: Found key in /home/ff/.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: SSH2_MSG_SERVICE_REQUEST sent
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey,gssapi-with-mic,password
debug1: Next authentication method: gssapi-with-mic
debug1: Unspecified GSS failure. Minor code may provide more information
No credentials cache found
debug1: Unspecified GSS failure. Minor code may provide more information
No credentials cache found
debug1: Unspecified GSS failure. Minor code may provide more information
debug1: Next authentication method: publickey
debug1: Trying private key: /home/ff/.ssh/identity
debug1: Trying private key: /home/ff/.ssh/id_rsa
debug1: Trying private key: /home/ff/.ssh/id_dsa
debug1: Next authentication method: password
ff@sd01's password:
debug1: Authentications that can continue: publickey,gssapi-with-mic,password
Permission denied, please try again.
ff@sd01's password:
debug1: Authentications that can continue: publickey,gssapi-with-mic,password
Permission denied, please try again.
ff@sd01's password:
debug1: Authentications that can continue: publickey,gssapi-with-mic,password
debug1: No more authentication methods to try.
Permission denied (publickey,gssapi-with-mic,password).
e meu /home/ff/.ssh/config:
Host *
# ForwardAgent no
# ForwardX11 no
# ForwardX11Trusted yes
# RhostsRSAAuthentication no
# RSAAuthentication yes
# HostbasedAuthentication no
BatchMode no
# CheckHostIP yes
# AddressFamily any
# ConnectTimeout 0
# StrictHostKeyChecking ask
# IdentityFile ~/.ssh/identity
# IdentityFile ~/.ssh/id_rsa
# IdentityFile ~/.ssh/id_dsa
# Port 22
# Protocol 2,1
# AuthorizedKeysFile .ssh/authorized_keys
# Cipher 3des
# Ciphers aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes192-cbc,aes256-cbc
# EscapeChar ~
# Tunnel no
# TunnelDevice any:any
# PermitLocalCommand no
SendEnv LANG LC_*
HashKnownHosts yes
GSSAPIAuthentication yes
GSSAPIDelegateCredentials no
Gostaria de saber se há algo que eu possa fazer antes de ir para a empresa.
host2
.Respostas:
O nome de usuário e a senha que você está tentando não são aceitos pelo host. Isso significa que você está se conectando ao servidor errado ou o nome de usuário ou a senha estão incorretos. Você deve solicitar ao administrador que verifique os logs
host2
, que deve indicar qual dos três é o caso.fonte
Primeiro
e depois :
e teste isso:
fonte
No meu caso, foi causado pela criptografia do diretório inicial. Alterei o local das chaves ssh e resolveu o problema: (cópia do arquivo da web) http://tweaktheserver.com/ssh-cant-connect-authentications-that-can-continue-publickeygssapi-keyexgssapi-with-micpassword/
fonte
A autenticação GSSAPI parece estar ativada no cliente, mas falha e volta à autenticação por senha. Se você não conseguir fazer o login com o login e a senha fornecidos, a única coisa sensata a fazer é entrar em contato com alguém responsável pelo gerenciamento do servidor (a "empresa").
fonte
Eu tinha o mesmo problema, mas o problema para mim era que a configuração padrão do sistema operacional (CentOS 7) era criptografar o diretório do usuário, para que o
authorized_keys
arquivo colocado~/.ssh/
não funcionasse. A solução veio daqui, mas basicamente:/etc/ssh/sshd_config
definir a propriedade AuthorizedKeysFile como algo fora do diretório do usuário (/etc/ssh/authorized_keys
)fonte
tente:
servidor ssh -p porta -o PreferredAuthentications = publickey
fonte
code styling
de comandos também é considerado bom estilo:``
Eu precisava dar
/home/ec2-user
permissões 700:fonte
Deixe-me acrescentar que você deve garantir que a chave pertence ao seu usuário.
Digite
ls -la
para ver a qual usuário sua chave pertence.Você pode alterar a propriedade:
Garanta também:
.pem
chave correta se estiver usando linux (a massa é diferente)sudo chmod 400 mykey.pem
ssh -i mykey user@instanceip
fonte
Podes tentar
OU em / etc / ssh / sshd_config, adicione / modifique a propriedade
fonte
ssh server -l user -o "PubkeyAuthentication=no"
igualssh user@server -o "PubkeyAuthentication=no"
$ ssh [email protected] -i .vagrant / machines / default / virtualbox / private_key
Isso funcionou para mim
fonte