About 560,000 results
Open links in new tab
  1. How to show the host/configured/default ssh "configuration"?

    Aug 27, 2015 · According to my ssh_config file... Configuration data is parsed as follows: command line options user-specific file system-wide file With that said, (and yes, I know, I …

  2. ssh agent - Pass password in ssh config - Server Fault

    Dec 1, 2021 · Is there any way to pass a password using .ssh/config? I'm trying to set up a way to login to a server under a specific user and then switch automatically to root when I connect …

  3. Correct configuration of the SSHD config file? - Server Fault

    Dec 9, 2019 · I am not sure, whether excluding all public key algorithms, except ed25519 is not being overzealous and it a good security strategy. Security StackExchange can certainly tell …

  4. How to configure ssh client to use private keys automatically

    You can change this in ~/.ssh/config (the IdentityFile parameter - the -i option to SSH actually overrides this. See man ssh_config for details). If you have multiple private keys to deal with …

  5. linux - adding password to .ssh/config - Server Fault

    Install sshpass Alter your .ssh/config file to include the username as listed in the question Add an alias to your terminal (I used .bashrc and would recommend against gloabl settings) Use alias …

  6. ssh is no longer using ~/.ssh/config - Server Fault

    I was able to workaround a problem. I copied contents of ~/.ssh to /nas/kuba/.ssh. So it's actually problem with ssh suddenly using the wrong home directory, which is probably not really an ssh …

  7. How can I set -X (X11Forwarding) in my ~/.ssh/config file for a ...

    Jan 9, 2016 · If you peek into the manual page for ssh_config, you will find an option ForwardX11, which can be put in your config such as: Host wk Hostname W.X.Y.Z ForwardX11 yes ...

  8. ssh - verify sshd configuration - Server Fault

    How I can verify the configuration of sshd? For example, I want to make sure that these settings are set and applied: AllowUsers user1 user2 PasswordAuthentication no PermitRootLogin no …

  9. SSH through multiple hosts using ProxyCommand? - Server Fault

    17 I have an entry in ~/.ssh/config on my computer at home that look like this: host foo bar ProxyCommand ssh -x -a -q gateway.example.com nc %h 22 where gateway.example.com is …

  10. How does ssh ProxyCommand actually work? - Server Fault

    Oct 8, 2013 · I am comfortable with using the ProxyCommand feature of ssh and can use it to hop through mulitple bastion hosts to reach the final host efficiently. But I just can't seem to …