Aucune description
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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