./categories/os
macOS Ventura SSH ssh-rsa 호스트키 오류
증상
Unable to negotiate ... no matching host key type found. Their offer: ssh-rsa,ssh-dss
조치
/etc/ssh/ssh_config에서 구형 Cipher/MAC 줄 제거 후 추가:
HostkeyAlgorithms ssh-dss,ssh-rsa
KexAlgorithms +diffie-hellman-group1-sha1
rm ~/.ssh/known_hosts
ssh user@remote.server.com
관련 링크: https://ngela.tistory.com/84
./comments