IT/보안

SSH 접속시 No Matching Key 문제

알콩달콩아빠 2022. 6. 22. 14:28
728x90
반응형

원인

OpenSSH 7.0이상에서 사용하는 알고리즘이 보안상의 이유로 Disabled 되었다.

 

해결방법

해결방법은 Disabled된 알고리즘을 사용할 수 있도록 하면된다.

 

수정 또는 추가 파일

  1. User별 설정파일
    • ~/.ssh/config
  2. 전역파일
    • /etc/ssh/ssh_config

 

추가 내용

 

vi ~/.ssh/configHost *KexAlgorithms +diffie-hellman-group1-sha1HostKeyAlgorithms +ssh-dssCiphers +3des-cbcMacs +hmac-md5UserKnownHostsFile ~/.ssh/known_hosts
 

출처: https://devcoding.tistory.com/44 [Coding:티스토리]

728x90
반응형