반응형
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
마음에 드셨으면 아래 추천 버튼을 꾹 눌러주세요. :]
반응형
'iDev' 카테고리의 다른 글
윈도 10 버전 2004 업데이트 후 numpy 에러 발생 및 해결 (0) | 2020.08.30 |
---|---|
raywenderich 동영상 다운로드 받는 방법 (0) | 2018.07.17 |
iOS 9 Day By Day 한국어 번역 완성 (0) | 2016.02.12 |
프라이빗 Vimeo 동영상 다운로드 받기 (1) | 2016.02.05 |
UIAlertController 사용법 (0) | 2016.01.23 |