web-dev-qa-db-ja.com

gpg-agentを使用してSSH経由でサーバーに接続できない

VMに接続しようとしています。SSHに使用する公開鍵を作成し、その鍵をクラウドインスタンスに追加しました。SSH_AUTH_SOCKが使用するファイルに設定gpg-agent

~/.gnupg/gpg-agent.conf

default-cache-ttl 600
max-cache-ttl 7200
enable-ssh-support
pinentry-program /usr/local/MacGPG2/libexec/pinentry-mac.app/Contents/MacOS/pinentry-mac
~/.zprofile

...

export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket)
gpgconf --launch gpg-agent

すべてが正常に動作しているようです:

% ssh-add -L
ssh-rsa AAAAB3NzaC1yc2EA... (none)

ただし、実際にVMに接続しようとすると...

debug1: Offering public key: (none) RSA SHA256:[REDACTED] agent
debug3: send packet: type 50
debug2: we sent a publickey packet, wait for reply
debug3: receive packet: type 51
debug1: Authentications that can continue: publickey
debug1: Trying private key: /Users/alice/.ssh/id_rsa
debug3: no such identity: /Users/alice/.ssh/id_rsa: No such file or directory
debug1: Trying private key: /Users/alice/.ssh/id_dsa
debug3: no such identity: /Users/alice/.ssh/id_dsa: No such file or directory
debug1: Trying private key: /Users/alice/.ssh/id_ecdsa
debug3: no such identity: /Users/alice/.ssh/id_ecdsa: No such file or directory
debug1: Trying private key: /Users/alice/.ssh/id_ed25519
debug3: no such identity: /Users/alice/.ssh/id_ed25519: No such file or directory
debug1: Trying private key: /Users/alice/.ssh/id_xmss
debug3: no such identity: /Users/alice/.ssh/id_xmss: No such file or directory
debug2: we did not send a packet, disable method
debug1: No more authentication methods to try.
[email protected]: Permission denied (publickey).
%
2
5nefarious

そのため、明らかにサーバー側の~/.ssh/authorized_keysに公開鍵を追加する必要がありました。最初に、Webベースの管理コンソールを使用して、「SSH Keys」というセクションの下にキーを追加しました。それがうまくいかなかった理由はまだわかりません。

0
5nefarious