About 50 results
Open links in new tab
  1. What is the difference between /etc/ssh/ and ~/.ssh?

    Apr 23, 2018 · When you connect to an SSH server, you identify yourself to the server (using either your login and password, or a key), and the server identifies itself to you, using its host key. This is …

  2. ssh tunneling - How do I use the ssh -i option to specify a ssh keypair ...

    Jan 2, 2018 · 6 I need to connect to a SSH proxy server using a ssh keypair that I created specifically for it (not my default id_rsa keypair). I see from the ssh manual that there is a -i option that I can use to …

  3. openssh - How to ssh to remote server using a private key? - Unix ...

    Oct 25, 2011 · However, I would be creating a bash script from server 1 that will execute some commands on server 2 via SSH. How do I SSH to Server 2 using my private key file from Server 1?

  4. SSH authentication issue with OpenSSH private key

    Apr 16, 2022 · ssh -oHostKeyAlgorithms=+ssh-dss -i id_rsa root@<ip> But with this command, it prompted me for a password even though I intended to use the id_rsa key for authentication.

  5. SSH- "Unable to negotiate ... no matching host key type found."

    Nov 27, 2022 · I have a shell server on an embedded system (It's a 32Bit ARMel system). When I go to login to it, I use: $ ssh root@ip Unable to negotiate with ip port 22: no matching host key type found. …

  6. Specifying an IdentityFile with SSH - Unix & Linux Stack Exchange

    If you are able to successfully use keypair authentication with ssh -i ~/.ssh/mykey user@host, you can easily automate this with your SSH client configuration. For example, if you add this to your …

  7. routing - Use ssh with a specific network interface - Unix & Linux ...

    Can you elaborate on your network configuration? With proper routing in place, any traffic destined for the network attached to tun0 will use that interface.

  8. ssh - How does OpenSSH determine the choose the host key algorithm ...

    The client can specify the hostkey algorithm it prefers with the option HostKeyAlgorithms in ssh_config or ~/.ssh/config or on the command line. man ssh_config on your system to see the default …

  9. bash shell - ssh remote script capture output and exit code?

    I wish to use shell to invoke a script on a remote server. I would like to capture the output of that script (its logging messages) and the exit code it returns. If I do this: ssh user@server /usr/

  10. How do I list available host key algorithms for an SSH client?

    Aug 15, 2015 · So ssh has the option HostKeyAlgorithms. Sample usage: ssh -o "HostKeyAlgorithms ssh-rsa" user@hostname I'm trying to get the client to connect using the servers ecdsa key, but I …