Unable to negotiate with xxxx: no matching key exchange method found. Their offer: diffie-hellman-gr

在win11上,使用git 命令pull 代码,报错如下

git pull
Unable to negotiate with 10.6.127.6 port 29418: no matching key exchange method found. Their offer: diffie-hellman-group14-sha1,diffie-hellman-group1-sha1
fatal: Could not read from remote repository.

 这是因为ssh 版本不同,加密方式不同

SSH有几种不同类型的密钥:RSA密钥 (ssh-rsa) 可以支持多种签名。签名类型sssh-rsa是指带有SHA-1的RSA,而签名类型rsa-sha2-256是带有SHA-256的RSA,rsa-sha2-512是带有SHA-512的RSA。

上面报错中提示,git服务端中使用的密钥是ssh-rsa类型的,而我本机的ssh(OpenSSH_for_Windows_8.6p1, LibreSSL 3.4.3)默认不支持这种算法,需要指定下算法

解决方案:

进入~/.ssh目录,打开config文件(没有的话新建一个),添加如下配置:
Host *
    KexAlgorithms +diffie-hellman-group1-sha1
    HostkeyAlgorithms +ssh-dss,ssh-rsa
    PubkeyAcceptedKeyTypes +ssh-dss,ssh-rsa
    Ciphers +aes128-cbc

 

你可能感兴趣的:(git)