2013/7/30追記 sshの接続に時間がかかる場合の対処方法 †以前、サーバがCentOSでLinuxデスクトップよりsshコマンドで接続した時、接続までにとても時間がかかる事象が発生しました。 以下に発生した事象と対処方法を記述します。 関連記事 †
ssh接続までに時間がかかる原因 †sshコマンドに-vオプションをつけ出力を確認しました。 ssh -v ホスト 出力されたログの抜粋です。 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 クライアント側での対処 †以下のように$HOME/.ssh/configに以下の設定を追加しました。 HOST * GSSAPIAuthentication no サーバー側での対処 †/etc/ssh/sshd_configのGSSAPIAuthenticationの値をnoに設定します。 # GSSAPI options GSSAPIAuthentication no #GSSAPIAuthentication yes Ubuntu(12.04)編 †TeraTermやCygwinでUbuntu12.04 ServerをインストールしたVM環境への接続に時間がかかっていました。
尚、上記操作はsudo -iによりrootになり変更および再起動作業を行いました。 |