Advertisement
olegbo

Untitled

Jan 1st, 2024
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.02 KB | None | 0 0
  1. oleg@MacBook-Pro-3 ssh_config.d % cat /etc/ssh/ssh_config
  2. # $OpenBSD: ssh_config,v 1.36 2023/08/02 23:04:38 djm Exp $
  3.  
  4. # This is the ssh client system-wide configuration file. See
  5. # ssh_config(5) for more information. This file provides defaults for
  6. # users, and the values can be changed in per-user configuration files
  7. # or on the command line.
  8.  
  9. # Configuration data is parsed as follows:
  10. # 1. command line options
  11. # 2. user-specific file
  12. # 3. system-wide file
  13. # Any configuration value is only changed the first time it is set.
  14. # Thus, host-specific definitions should be at the beginning of the
  15. # configuration file, and defaults at the end.
  16.  
  17. # This Include directive is not part of the default ssh_config shipped with
  18. # OpenSSH. Options set in the included configuration files generally override
  19. # those that follow. The defaults only apply to options that have not been
  20. # explicitly set. Options that appear multiple times keep the first value set,
  21. # unless they are a multivalue option such as IdentityFile.
  22. Include /etc/ssh/ssh_config.d/*
  23.  
  24. # Site-wide defaults for some commonly used options. For a comprehensive
  25. # list of available options, their meanings and defaults, please see the
  26. # ssh_config(5) man page.
  27.  
  28. # Host *
  29. # ForwardAgent no
  30. # ForwardX11 no
  31. # PasswordAuthentication yes
  32. # HostbasedAuthentication no
  33. # GSSAPIAuthentication no
  34. # GSSAPIDelegateCredentials no
  35. # BatchMode no
  36. # CheckHostIP no
  37. # AddressFamily any
  38. # ConnectTimeout 0
  39. # StrictHostKeyChecking ask
  40. # IdentityFile ~/.ssh/id_rsa
  41. # IdentityFile ~/.ssh/id_dsa
  42. # IdentityFile ~/.ssh/id_ecdsa
  43. # IdentityFile ~/.ssh/id_ed25519
  44. # Port 22
  45. # Ciphers aes128-ctr,aes192-ctr,aes256-ctr,aes128-cbc,3des-cbc
  46. # MACs hmac-md5,hmac-sha1,umac-64@openssh.com
  47. # EscapeChar ~
  48. # Tunnel no
  49. # TunnelDevice any:any
  50. # PermitLocalCommand no
  51. # VisualHostKey no
  52. # ProxyCommand ssh -q -W %h:%p gateway.example.com
  53. # RekeyLimit 1G 1h
  54. # UserKnownHostsFile ~/.ssh/known_hosts.d/%k
  55. Host *
  56. SendEnv LANG LC_*
  57.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement