Ao fazer login em um dos meus servidores pelo ssh, ele fica travado após a autenticação. Esta é a saída no cliente com -v
.
OpenSSH_4.3p2, OpenSSL 0.9.8e-fips-rhel5 01 Jul 2008
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Applying options for *
debug1: Connecting to host1 [10.6.27.64] port 22.
debug1: Connection established.
debug1: identity file /home/user/.ssh/identity type -1
debug1: identity file /home/user/.ssh/id_rsa type 1
debug1: identity file /home/user/.ssh/id_dsa type -1
debug1: loaded 3 keys
debug1: Remote protocol version 2.0, remote software version OpenSSH_5.3
debug1: match: OpenSSH_5.3 pat OpenSSH*
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_4.3
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 'host1' is known and matches the RSA host key.
debug1: Found key in /home/user/.ssh/known_hosts:172
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,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
No credentials cache found
debug1: Next authentication method: publickey
debug1: Trying private key: /home/user/.ssh/identity
debug1: Offering public key: /home/user/.ssh/id_rsa
debug1: Server accepts key: pkalg ssh-rsa blen 277
debug1: read PEM private key done: type RSA
debug1: Authentication succeeded (publickey).
debug1: channel 0: new [client-session]
debug1: Entering interactive session.
debug1: Sending environment.
debug1: Sending env LANG = C
debug1: Sending env LC_ALL = C
Last login: Wed May 21 10:24:14 2014 from host2
This machine has been configured with kickstart
host1 in bcinf17 in bay 3 in rack D10-Mid
E no /var/log/secure
servidor vejo isso (por sorte ainda tenho uma sessão aberta):
May 21 10:27:31 host1 sshd[12387]: Accepted publickey for user from 1.1.11.239 port 34135 ssh2
May 21 10:27:31 host1 sshd[12387]: pam_unix(sshd:session): session opened for user user by (uid=0)
Portanto, nada óbvio está errado. O cliente e o servidor parecem capazes de se comunicar. Nada dentro /var/log/messages
.
Muito espaço em disco. Alguns caminhos estão montados (incluindo áreas domésticas), mas meu shell ainda ativo pode acessá-los OK.
Eu posso me conectar a outros servidores; somente este tem o problema. Eu tentei reiniciar sshd
. O arquivo de configuração se sshd
parece com o padrão, então não há nada lá. Até onde eu sei, nada mudou recentemente.
Tentar executar um comando ( ssh host1 -t bash
, ou -t vi
) também parece travar, portanto, não pense em algo relacionado aos meus scripts de login.
Também tentaram efetuar login de outros hosts no mesmo local e em outros locais, ou no Windows via Putty, e usando a senha em vez da chave.
Não sabe onde mais procurar ou o que mais tentar.
Este é um servidor RHEL 6.4, 64 bits.
Respostas:
Há várias coisas que podem causar um travamento logo após a autenticação SSH.
No entanto, a maioria destes também carrega outros sintomas (o travamento logo após uma autenticação SSH é apenas o sintoma mais visível)
~/.bashrc
,~/.bash_profile
,~/.profile
,~/.kshrc
E assim por diantefork()
muitos processos filhos e a carga ( a pontuação de 1/5/15 ) é muito alta.fonte
Ainda outra fonte de problemas pode ser clientes ssh aguardando ssh-agent (todos aqueles configurados para usá-lo, é claro). Se ssh'ing em qualquer lugar ficar preso em
depois verifique
ps auxw | grep askpass
e suas caixas de diálogo que possam ter escapado da sua atenção.PS: esse não é o culpado aqui, mas ainda não pesquisei questões mais relevantes no Google.
fonte
Ele se conecta diretamente se você usar
ssh -o GSSAPIAuthentication=no user@host
?Nesse caso, o sistema pode estar travando em algum momento, decidindo sobre um método GSSAPI. Para mim, apenas um host fez isso, então eu apenas desativei o GSSAPI
~/.ssh/config
para esse host:Aprendi isso em http://germanrumm.eu/fixing-ssh-login-delay-how-to-disable-gssapi-with-mic-on-ubuntu-linux/, mas nunca aprendi a causa.
fonte