Questions tagged [ssh-agent]

'ssh-agent' is a program that used together with OpenSSH or similar SSH programs provides a secure way of storing the private key. Man Page https://www.freebsd.org/cgi/man.cgi?query=ssh-agent&apropos=0&sektion=0&manpath=FreeBSD+13.1-RELEASE+and+Ports&arch=default&format=html

A password-based authentication process (in the common example of OpenSSH) may be vulnerable to brute-force attacks, if no mechanism is in place to detect them. To mitigate this lack of security, ssh supports public key authentication.

In order to log in securely to a remote system via a secure shell, a private key/public key pair is generated. The private key is stored on the local machine. The public key is stored on the target machine in the $HOME/.ssh/authorized_keys file. Public keys are not sensitive information and may be known to anybody, whereas the private key needs to be protected very carefully by a strong passphrase.

ssh-agent remembers the decrypted private key so that the user does not need to type it every time he or she wants to connect or send data to the server.

Source: Wikipedia (ssh-agent)

348 questions
-2
votes
1 answer

Ubuntu 22.04 - ssh-agent error: Unable to load resident keys: device not found

I have just installed Ubuntu 22.04.1 LTS on a Desktop Computer with previous Windows 10. Now I want to connect to my server with ssh, but I don`t want to enter each time the password for the private key. On Windows I used Pagent from PuTTY (or…
franc
  • 548
  • 5
  • 16
-2
votes
1 answer

ssh-agent isn't running after system boot (Suse 12.1, KDE)

when I call ssh-add I get the following error message: Could not open a connection to your authentication agent. It looks like ssh-agent isn't running. I don't want to run it manually. I would like to have it running automatically. Does anybody…
-3
votes
2 answers

Problem with ssh-agent, or git config, or github, or any other reason

So I am trying to clone my repository via ssh. For that purpose, I have: created private and public keys using ssh-keygen. Added the private key using ssh-add. Added the public key to a GitHub account. And finally, when I try to git clone .. my…
user11141172
1 2 3
23
24