不能对ssh使用公钥认证


1

我有一个已经运行了多年的脚本,运行在linux(ubuntu 14.04)上,ssh是我的iMac。

我为脚本设置公钥私钥对登录iMac。 我遇到了一个问题,所以我重新使用了公钥 ssh-keygen -t rsa -b 2048然后我把公钥放在〜/ .ssh / authorized_keys中 我确保.ssh的权限设置为0600

我在ubuntu上做了互惠密钥生成,imac可以登录到ubuntu 我已经更新了imac上的端口。

来自(ubuntu)的ssh -v 192.168.1.111(imac)的记录如下:

pete@ZEN:~$ ssh -v 192.168.1.111
OpenSSH_6.6.1, OpenSSL 1.0.1f 6 Jan 2014
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug1: Connecting to imac.local [192.168.1.111] port 22.
debug1: Connection established.
debug1: identity file /home/pete/.ssh/id_rsa type 1
debug1: identity file /home/pete/.ssh/id_rsa-cert type -1
debug1: identity file /home/pete/.ssh/id_dsa type -1
debug1: identity file /home/pete/.ssh/id_dsa-cert type -1
debug1: identity file /home/pete/.ssh/id_ecdsa type -1
debug1: identity file /home/pete/.ssh/id_ecdsa-cert type -1
debug1: identity file /home/pete/.ssh/id_ed25519 type -1
debug1: identity file /home/pete/.ssh/id_ed25519-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_6.6.1p1 Ubuntu-2ubuntu2.8
debug1: Remote protocol version 2.0, remote software version OpenSSH_7.2
debug1: match: OpenSSH_7.2 pat OpenSSH* compat 0x04000000
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-ctr hmac-sha1-etm@openssh.com none
debug1: kex: client->server aes128-ctr hmac-sha1-etm@openssh.com none
debug1: sending SSH2_MSG_KEX_ECDH_INIT
debug1: expecting SSH2_MSG_KEX_ECDH_REPLY
debug1: Server host key: RSA 19:dd:96:1d:99:9b:53:1a:71:b2:3f:2d:93:d0:c4:d9
debug1: Host 'imac.local' is known and matches the RSA host key.
debug1: Found key in /home/pete/.ssh/known_hosts:1
debug1: ssh_rsa_verify: signature correct
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey,password,keyboard-interactive
debug1: Next authentication method: publickey
debug1: Offering RSA public key: /home/pete/.ssh/id_rsa
debug1: Authentications that can continue: publickey,password,keyboard-interactive
debug1: Trying private key: /home/pete/.ssh/id_dsa
debug1: Trying private key: /home/pete/.ssh/id_ecdsa
debug1: Trying private key: /home/pete/.ssh/id_ed25519
debug1: Next authentication method: keyboard-interactive
Password:

Answers:


1

日志在提供公钥的第一次迭代中显示密钥(注意它表示“提供RSA公钥”)这一事实表明它来自ssh-agent或其他密钥源。

您是否检查过旧的id_rsa密钥是否仍然存储在ssh-agent中?

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.