SSH
원격 장비에 접속할 수 있는 유틸리티를 의미합니다.
다음과 같은 상황일 때 아래와 같은 오류가 발생합니다.
1. 초기에 원격지 장비의 정보를 로컬장비에 저장합니다.
2. 원격지 장비의 정보가 어떤 상황으로 인해 변경됩니다.
3. 로컬장비는 원격지 정보의 이전정보를 가지고 있으므로, 충돌이 발생합니다.
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY! Someone could be eavesdropping on you right now (man-in-the-middle attack)! It is also possible that a host key has just been changed. The fingerprint for the RSA key sent by the remote host is SHA256:++qZP9iqBJSzBY8xVurasQYUFp8kxvlX1VvgK+ZxfQE. Please contact your system administrator. Add correct host key in /home/sh91/.ssh/known_hosts to get rid of this message. Offending RSA key in /home/sh91/.ssh/known_hosts:19 RSA host key for 192.168.0.138 has changed and you have requested strict checking. Host key verification failed.
해결방안
ssh-keygen 명령어를 사용하여 원격지 장비의 정보를 재등록합니다.
192.168.0.138 IP 에 대해 위와 같은 내용이 발생한 경우입니다.
1. 192.168.0.138 원격장비 IP 를 재등록합니다.
[sh91@sunje conf]$ ssh-keygen -R 192.168.0.138 # Host 192.168.0.138 found: line 19 /home/sh91/.ssh/known_hosts updated. Original contents retained as /home/sh91/.ssh/known_hosts.old
2. ssh 명령어를 이용하여 재접속을 시도합니다. yes/no 를 묻는 부분에서 yes 를 입력합니다.
$ ssh sh91@192.168.0.138 The authenticity of host '192.168.0.138 (192.168.0.138)' can't be established. RSA key fingerprint is SHA256:++qZP9iqBJSzBY8xVurasQYUFp8kxvlX1VvgK+ZxfQE. RSA key fingerprint is MD5:d8:36:a8:97:25:0d:a0:51:4f:d1:3e:ba:b2:ab:2e:11. Are you sure you want to continue connecting (yes/no)? yes Warning: Permanently added '192.168.0.138' (RSA) to the list of known hosts. sh91@192.168.0.138's password: Last login: Mon Apr 9 15:33:25 2018 from 192.168.0.50
'Linux > 개념' 카테고리의 다른 글
[LINUX] utf-8 파일의 BOM 제거하기 efbbbf 제거하기 (0) | 2018.05.30 |
---|---|
[LINUX] 세마포어 관련 RemoveIPC 프로퍼티를 설정하기 (0) | 2018.05.25 |
[LINUX] OOM Killer 란? OOM Killer 순위 설정하기 (0) | 2018.01.25 |
[LINUX] Qt FATAL: QXcbConnection: Could not connect to display 현상 해결하기 (0) | 2017.09.26 |
[LINUX] LWP 란? LWP 경량 프로세스 알아보기 (0) | 2017.09.20 |