无法将代码推送到gitee仓库故障处理(no mutual signature algorithm)

OpenSSH_8.8p1, OpenSSL 1.1.1l 24 Aug 2021
debug1: Reading configuration data /c/Users/28761/.ssh/config
debug1: /c/Users/28761/.ssh/config line 19: Applying options for gitee.com
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Connecting to gitee.com [180.97.125.228] port 22.
debug1: Connection established.
debug1: identity file C:/Users/28761/.ssh/gitee/id_rsa type 0
debug1: identity file C:/Users/28761/.ssh/gitee/id_rsa-cert type -1
debug1: Local version string SSH-2.0-OpenSSH_8.8
debug1: Remote protocol version 2.0, remote software version ssh-pilot-1.0.7
debug1: compat_banner: no match: ssh-pilot-1.0.7
debug1: Authenticating to gitee.com:22 as 'git'
debug1: load_hostkeys: fopen /c/Users/28761/.ssh/known_hosts2: No such file or directory
debug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory
debug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: algorithm: curve25519-sha256@libssh.org
debug1: kex: host key algorithm: ecdsa-sha2-nistp256
debug1: kex: server->client cipher: chacha20-poly1305@openssh.com MAC: compression: none
debug1: kex: client->server cipher: chacha20-poly1305@openssh.com MAC: compression: none
debug1: expecting SSH2_MSG_KEX_ECDH_REPLY
debug1: SSH2_MSG_KEX_ECDH_REPLY received
debug1: Server host key: ecdsa-sha2-nistp256 SHA256:FQGC9Kn/eye1W8icdBgrQp+KkGYoFgbVr17bmjey0Wc
debug1: load_hostkeys: fopen /c/Users/28761/.ssh/known_hosts2: No such file or directory
debug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory
debug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory
debug1: Host 'gitee.com' is known and matches the ECDSA host key.
debug1: Found key in /c/Users/28761/.ssh/known_hosts:8
debug1: rekey out after 134217728 blocks
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: rekey in after 134217728 blocks
debug1: Will attempt key: C:/Users/28761/.ssh/gitee/id_rsa RSA SHA256:gcyOVu3sPIanWpl61wR9 explicit
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey
debug1: Next authentication method: publickey
debug1: Offering public key: C:/Users/28761/.ssh/gitee/id_rsa RSA SHA256:gcyOVu3sPIanWpl61wR9NRmUFn+nM3+9o explicit
debug1: send_pubkey_test: no mutual signature algorithm
debug1: No more authentication methods to try.
git@gitee.com: Permission denied (publickey).

可以看到 no mutual signature algorithm(没有公共的签名算法),高版本OpenSSH没有启用ssh-rsa,

解决方案:
1、参考链接,添加 PubkeyAcceptedKeyTypes +ssh-rsa 配置即可
2、更换秘钥生成算法,使用 ed25519 算法生成
ssh-keygen -t ed25519 -C "your email"
3、降低 OpenSSH版本

posted @ 2021-10-18 14:14  ice_image  阅读(2269)  评论(1编辑  收藏  举报