non può utilizzare l'autenticazione publickey per ssh con sierra

1

Ho avuto uno script che ha funzionato per un certo numero di anni su Linux (ubuntu 14.04) che ssh è sul mio iMac.

Ho impostato coppie di chiavi pubbliche private per lo script per accedere a iMac. Ho riscontrato un problema quindi ho rigenerato le coppie di chiavi pubbliche private utilizzando ssh-keygen -t rsa -b 2048 poi ho messo la chiave pubblica in ~ / .ssh / authorized_keys ho fatto in modo che le autorizzazioni di .ssh fossero impostate su 0600

Ho fatto la generazione della chiave reciproca su ubuntu e l'imac può accedere a ubuntu ho aggiornato le porte su imac.

una trascrizione di ssh -v 192.168.1.111 (imac) da (ubuntu) segue:

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 [email protected] none
debug1: kex: client->server aes128-ctr [email protected] 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:
    
posta pgee70 27.09.2016 - 02:03
fonte

1 risposta

1

Il fatto che il log mostri la chiave in una prima iterazione dell'offerta di chiavi pubbliche (si noti che "offre la chiave pubblica RSA") indica che proviene da ssh-agent o da un'altra fonte di chiavi.

Hai controllato se la vecchia chiave id_rsa è forse ancora memorizzata nell'ssh-agent?

    
risposta data 07.10.2016 - 04:26
fonte

Leggi altre domande sui tag