そうすると、ssh root@ip_adress
7〜8 秒待ってからパスワード要求を受け取ります。キーで実行した場合も同様に発生します。
これはサーバー側の問題ではないと確信しています (Centos または Debian が同じサーバーに瞬時に接続します)。問題を解決するために私が行ったことは次のとおりです。
/etc/pam.d/login と /etc/pam.d/sshd から「session optimul pam_motd.so」を削除しました /etc/pam.d/sshd で UseDNS が無効になっています そして動作しません
*英語が下手ですみません
私が始めたとき/usr/sbin/sshd -d -d -d
、ssh -v host
次のようになりました:
debug1: No valid Key exchange context debug1: Next authentication method: gssapi-with-mic
**WAIT 3-4 Sec**
debug1: Unspecified GSS failure. Minor code may provide more information No Kerberos credentials available
**WAIT 2-3 Sec**
debug1: Unspecified GSS failure. Minor code may provide more information No Kerberos credentials available W debug1: Unspecified GSS failure. Minor code may provide more information
**WAIT 2-3 Sec**
debug1: Unspecified GSS failure. Minor code may provide more information No Kerberos credentials available
**WAIT 2-3 Sec**
debug1: Next authentication method: publickey
debug1: Offering RSA public key: /root/.ssh/id_rsa debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,password
debug1: Trying private key: /root/.ssh/id_dsa debug1: Trying private key: /root/.ssh/id_ecdsa debug1: Trying private key: /root/.ssh/id_ed25519
答え1
GSSAPIAuthentication no
を追加することで問題は解決しました/etc/ssh/ssh_config
。