dev-os

[Mac] ssh 접속 시 no matching host key type found

검은바람 2022. 10. 28. 14:02
반응형

맥 업데이트 이후 외부서버 ssh 접속 시도 시 아래와 같은 문제 발생

Unable to negotiate with xxx.xxx.xxx.xxx port 22: no matching host key type found. Their offer: ssh-rsa,ssh-dss

 

$ sudo vim /etc/ssh/ssh_config

아래 주석 해제

 #   Ciphers aes128-ctr,aes192-ctr,aes256-ctr,aes128-cbc,3des-cbc
 #   MACs hmac-md5,hmac-sha1,umac-64@openssh.com

맨 아래 다음과 같이 2줄 추가

 Host *
     SendEnv LANG LC_*
     HostkeyAlgorithms ssh-dss,ssh-rsa
     KexAlgorithms +diffie-hellman-group1-sha1
반응형