OpenSSH 7.0 이상에서 ssh를 사용해서 원격에 접속을 하려할 때 몇 몇 알고리듬은 보안상의 이유로 기본적으로 비활성화 되어 있다.
NAS와 무선 인터넷 공유기의 ssh를 접속을 하려 하는데 아래와 같이 에러가 나면서 원격 접속이 되질 않는다. -o 옵션을 줘서 알고리듬을 추가 해도 된다. 또는 ~/.ssh/config에 host 정보를 추가 해주면 자동으로 적용이 된다.
no matching host key type found. Their offer: ssh-dss
My Cloud NAS 접속시 문제
krazyeom@MBP:~$ ssh root@192.168.219.18 Unable to negotiate with 192.168.219.18 port 22: no matching host key type found. Their offer: ssh-dss |
ssh -oHostKeyAlgorithms=+ssh-dss root@192.168.219.18
~/.ssh/config
Host 192.168.219.18 HosKeyAlgorithms +ssh-dss |
no matching key exchange method found. Their offer: diffie-hellman-group1-sha1
ASUS 무선 공유기 접속 문제
krazyeom@MBP:~$ ssh admin@192.168.219.5 Unable to negotiate with 192.168.219.5 port 22: no matching key exchange method found. Their offer: diffie-hellman-group1-sha1 |
ssh -oKexAlgorithms=+diffie-hellman-group1-sha1 admin@192.168.219.5
~/.ssh/config
Host 192.168.219.5 KexAlgorithms +diffie-hellman-group1-sha1 |
출처: https://www.appilogue.kr/2844690?utm_source=weirdmeetup&utm_medium=original_link_on_post&utm_campaign=ssh+접속시+no+matching+key+문제+해결 [krazyeom's epilogue]
'Works > CentOS & RockyLinux' 카테고리의 다른 글
Centos7 브릿지 방화벽(iptables forward) 작동안할시 (0) | 2021.12.15 |
---|---|
gcc) pkg-config 사용법 / 인식이 안되는 경우 (0) | 2021.08.17 |
Cent OS 7에서 iptables 사용하기 (0) | 2021.02.03 |
m4 오류해결법 sendmail (1) | 2020.06.26 |
CentOS 7 network prefix (0) | 2020.06.24 |