ssh_config 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. # $OpenBSD: ssh_config,v 1.34 2019/02/04 02:39:42 dtucker Exp $
  2. # This is the ssh client system-wide configuration file. See
  3. # ssh_config(5) for more information. This file provides defaults for
  4. # users, and the values can be changed in per-user configuration files
  5. # or on the command line.
  6. # Configuration data is parsed as follows:
  7. # 1. command line options
  8. # 2. user-specific file
  9. # 3. system-wide file
  10. # Any configuration value is only changed the first time it is set.
  11. # Thus, host-specific definitions should be at the beginning of the
  12. # configuration file, and defaults at the end.
  13. # Site-wide defaults for some commonly used options. For a comprehensive
  14. # list of available options, their meanings and defaults, please see the
  15. # ssh_config(5) man page.
  16. # Host *
  17. # ForwardAgent no
  18. # ForwardX11 no
  19. # PasswordAuthentication yes
  20. # HostbasedAuthentication no
  21. # GSSAPIAuthentication no
  22. # GSSAPIDelegateCredentials no
  23. # GSSAPIKeyExchange no
  24. # GSSAPITrustDNS no
  25. # BatchMode no
  26. # CheckHostIP yes
  27. # AddressFamily any
  28. # ConnectTimeout 0
  29. # StrictHostKeyChecking ask
  30. # IdentityFile ~/.ssh/id_rsa
  31. # IdentityFile ~/.ssh/id_dsa
  32. # IdentityFile ~/.ssh/id_ecdsa
  33. # IdentityFile ~/.ssh/id_ed25519
  34. # Port 22
  35. # Ciphers aes128-ctr,aes192-ctr,aes256-ctr,aes128-cbc,3des-cbc
  36. # MACs hmac-md5,hmac-sha1,umac-64@openssh.com
  37. # EscapeChar ~
  38. # Tunnel no
  39. # TunnelDevice any:any
  40. # PermitLocalCommand no
  41. # VisualHostKey no
  42. # ProxyCommand ssh -q -W %h:%p gateway.example.com
  43. # RekeyLimit 1G 1h
  44. #
  45. # This system is following system-wide crypto policy.
  46. # To modify the system-wide ssh configuration, create a *.conf file under
  47. # /etc/ssh/ssh_config.d/ which will be automatically included below
  48. Include /etc/ssh/ssh_config.d/*.conf