About 50 results
Open links in new tab
  1. How do I change the allowed host key algorithms for SSH?

    May 22, 2020 · What is interesting there is the line: Skipping ssh-dss key /root/.ssh/id_dsa - not in PubkeyAcceptedKeyTypes. This variable sounds like what I am looking for, but it is not defined …

  2. ssh - How to tell git which private key to use? - Super User

    ssh has the -i option to tell which private key file to use when authenticating: -i identity_file Selects a file from which the identity (private key) for RSA or DSA authentication is read. The default is …

  3. How to force ssh to use a specific private key? - Super User

    With ssh -i <private key filename> you can instruct ssh to use an extra private key to try authentication. The documentation is not clear on how to explicitly use only that key.

  4. Trying to better understand SSH -n -N -f flags - Super User

    Nov 12, 2023 · The -f or -n options are backgrounding the ssh client to which they are given, ie. on your local laptop. (Option -f implies -n, so you actually only need one of the two.) Backgrounding is done …

  5. How to specify password in ssh command - Super User

    Nov 26, 2020 · From the terminal I type: ssh user@ip and then it prompts for a password. Is there a way to specify the password in the ssh command itself?

  6. linux - SSH Port forwarding - Super User

    This machine is refered to by "remote". Local port forwarding with ssh means you connect from your client to your server and thereby open a tunnel so that another program on your client can connect …

  7. How does SSH encryption work? - Super User

    But if I need to encrypt data on the client for sending to the server, how does it happen? The public key encrypts data on the client? But how can the server decrypt it, if it only has the public key? How does …

  8. What exactly does ssh-add do? - Super User

    ssh does use the key in the ~/.ssh directory, but if the key is protected by a passphrase, this passphrase must be entered at some point. If you use ssh-agent and ssh-add, you type this passphrase once.

  9. openssh - SSH connection reset on windows - Super User

    Apr 17, 2023 · I'm struggling to setup the OpenSSH on my Windows system. I tried to follow both a system installation (like this) and a manual installation from the binaries. I copied the OpenSSH files …

  10. An SSH tunnel via multiple hops - Super User

    Tunneling data over SSH is pretty straight-forward: ssh -D9999 [email protected] sets up port 9999 on your localhost as a tunnel to example.com, but I have a more specific need: I am working lo...