> 문제점
[root@theko ~]# ssh 192.168.122.176
Unable to negotiate with 192.168.122.176 port 22: no matching host key type found. Their offer: ssh-rsa,ssh-dss
> 해결방안
[root@theko .ssh]# cat /root/.ssh/config
HostKeyAlgorithms +ssh-rsa
PubkeyAcceptedKeyTypes +ssh-rsa
만약, 이걸 하고서 문제가 발생한다면.
[root@theko .ssh]# update-crypto-policies --set DEFAULT:SHA1
이렇게 하면 접속이 됩니다.
참고사이트 : https://sysdocu.tistory.com/1761