ssh 접속시 느린 경우 대처방법 - ubuntu
ssh 접속시 느린 현상이 간혹 발생한다.
접속이 느린 지점 확인
# ssh -v server
방법1) DNS resolving 문제
서버측의 /etc/ssh/sshd_config 에서
UseDNS no
로 해준다.
방법2) GSSAPIAuthentication 인증 문제
debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,password
debug1: Next authentication method: gssapi-keyex
debug1: No valid Key exchange context
debug1: Next authentication method: gssapi-with-mic
debug1: Unspecified GSS failure. Minor code may provide more information
No Kerberos credentials available
debug1: Unspecified GSS failure. Minor code may provide more information
No Kerberos credentials available
debug1: Unspecified GSS failure. Minor code may provide more information
debug1: Unspecified GSS failure. Minor code may provide more information
No Kerberos credentials available
debug1: Next authentication method: publickey
위 진한 부분에서 느리다면. 서버측에서 GSSAPI 를 지원하면 해당 인증을 먼저 시도하는데, 클라이언트측에서 설정이 안되어 있어서 지연현상이 발생하는 듯 하다.
/etc/ssh/ssh_config ( sshd_config 가 아님 )
GSSAPIAuthentication no
위 옵션을 no 로 바꿔준다.
서버 관리자가 아닌경우 ~/.ssh/config 에 넣어줘도 된다.
'알아둘일' 카테고리의 다른 글
우분투에서 exFat 을 써보자. - ubuntu 14.04 (0) | 2014.08.02 |
---|---|
ssh 터널링을 모바일에서 해보자 - connectBot (0) | 2014.07.27 |
ubuntu 14.04 의 byobu (screen) 가 ctrl-a 이 안 먹는다. (0) | 2014.06.26 |
오래된 파일을 정리하자 - ubuntu (0) | 2014.06.18 |
ssh 의 config 를 사용하면 편리하다. (0) | 2014.06.18 |
WRITTEN BY
- 1day1
하루하루 즐거운일 하나씩, 행복한일 하나씩 만들어 가요.