CentOS 6.3 をインストール直後は、sshクライアントから接続する際、パスワードを聞かれるまでが遅い。
原因は、sshd_configの設定。
# vi /etc/ssh/sshd_config ----+----+----+----+----+----+----+----+----+----+----+----+----+----+ # GSSAPI options #GSSAPIAuthentication no GSSAPIAuthentication yes #GSSAPICleanupCredentials yes GSSAPICleanupCredentials yes #GSSAPIStrictAcceptorCheck yes #GSSAPIKeyExchange no ----+----+----+----+----+----+----+----+----+----+----+----+----+----+
インストール直後は、GSSAPIAuthentication が yes になっている。
これを、OpenSSHのデフォルト値 no に変更する。
# vi /etc/ssh/sshd_config ----+----+----+----+----+----+----+----+----+----+----+----+----+----+ # GSSAPI options GSSAPIAuthentication no #GSSAPIAuthentication yes #GSSAPICleanupCredentials yes GSSAPICleanupCredentials yes #GSSAPIStrictAcceptorCheck yes #GSSAPIKeyExchange no ----+----+----+----+----+----+----+----+----+----+----+----+----+----+
変更後は、
# service sshd reload
としてやればよい。
0 件のコメント:
コメントを投稿