ssh_config 파일은?

ssh 사용시, 기타 설정을 할 수 있는 설정파일

ERROR

  • ssh 키를 정상적으로 발급받아 Git Remote에 등록했음
  • ssh 로 clone, fetch 시 no matching host key type found. Their offer: ssh-rsa,ssh-dss 에러 발생

error

15:41:51.254: [TestRepository] git -c credential.helper= -c core.quotepath=false -c log.showSignature=false fetch origin –recurse-submodules=no –progress –prune

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

SOLVE

  • ssh_config 파일에 HostKeyAlgorithm 추가

image

...
Host 61.109.169.13
    HostKeyAlgorithms +ssh-rsa,ssh-dss
...

연결문서

태그:

카테고리:

업데이트:

댓글남기기