About 2,440,000 results
Open links in new tab
  1. How to force ssh to use a specific private key? - Super User

    Mar 19, 2025 · 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.

  2. 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 within …

  3. git - SSH - How to add host to ssh/known_host file - Super User

    Dec 4, 2018 · To automatically add a key for a new host, just SSH to it. To manually add a key for a new host, 1) open the known_hosts file in your text editor and 2) add the key for a new host, following the …

  4. Location of OpenSSH configuration file on Windows - Super User

    Apr 1, 2020 · How do I set the host name and port in a config file for Windows, using OpenSSH through PowerShell? As on Unix/Linux: Edit or create the file now by typing: nano ~/.ssh/config In here,...

  5. 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 …

  6. ssh - How to upload local file to server through Linux terminal ...

    Dec 10, 2014 · want to transfer my local file to server by using Linux Terminal.Suppose we used to access server by putty or ssh but not able to transfer there file by on same terminal.

  7. How do I force SSH to use password instead of key?

    Nov 17, 2018 · The ssh command will attempt all ssh keys before asking for a password as one can see when using the -v flag. Anyway, after playing enough with SSH, I figured that you can also set up a …

  8. How to generate rsa-sha2-256 keys using ssh-keygen utility?

    Feb 17, 2023 · I want to generate rsa-sha2-256 ssh key pair using ssh-keygen utility. Can you please share the command for the same? For ssh-rsa, it's ssh-keygen -t rsa

  9. 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...

  10. How do I connect to SFTP with provided SSH Key? - Super User

    if your ssh private key is in the default directory, the software may find it automatically. if you use openssh (sftp is a part of it), you can use sftp -i <privateKey> [email protected] to connect to the …