Replies: 1 comment 2 replies
-
@EchterAgo - I just pushed the new version openssh.9.5.0-beta20240403.nupkg (you would have to specify the version to access it before moderation is done) Here are my testing results from installing an older version and then upgrading with the new version with your command: |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I know this is an issue with the chocolatey package, but for some reason I can't comment there, so I just wanted to share this in case someone has the same issue:
I was diagnosing why my Yubikey FIDO2 did not work through the agent, but works when I explicitly specify the key to ssh on the command line.
The error I got is
sign_and_send_pubkey: signing failed for ECDSA-SK "yubikey-5-nfc-primary" from agent: agent refused operation
. I enabledLogLevel DEBUG3
insshd_config
and then saw these messages in event log:After some diagnosis I found out that my
ssh-agent
service does not have the correct privileges when installed through chocolatey.After installation from chocolatey:
But when I install the .msi package from this repo or using winget everything seems to work fine:
This can be fixed using this command:
One thing I noticed that is broken without these privileges is
ssh-agent
s ability to spawn thessh-sk-helper
for FIDO2 security keys as the current user.Beta Was this translation helpful? Give feedback.
All reactions