No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

etc_ssh_ssh_config.j2 450B

123456789101112131415
  1. # Github needs diffie-hellman-group-exchange-sha1 some of the time but not always.
  2. Host github.com
  3. KexAlgorithms {{ kex_algorithms }},diffie-hellman-group-exchange-sha1,diffie-hellman-group14-sha1
  4. Host *
  5. Ciphers {{ ciphers }}
  6. KexAlgorithms {{ kex_algorithms }}
  7. SendEnv LANG LC_*
  8. HashKnownHosts yes
  9. GSSAPIAuthentication yes
  10. GSSAPIDelegateCredentials no
  11. MACs {{ macs }}
  12. PasswordAuthentication no
  13. UseRoaming no