home *** CD-ROM | disk | FTP | other *** search
/ chilidog.highland.cc.ks.us / chilidog.highland.cc.ks.us.zip / chilidog.highland.cc.ks.us / backup / bradford.20120305.etc.tar.gz / bradford.20120305.etc.tar / etc / ssh / ssh_config < prev    next >
Text File  |  2006-11-10  |  3KB  |  64 lines

  1. #    $OpenBSD: ssh_config,v 1.20 2005/01/28 09:45:53 dtucker Exp $
  2.  
  3. # This is the ssh client system-wide configuration file.  See
  4. # ssh_config(5) for more information.  This file provides defaults for
  5. # users, and the values can be changed in per-user configuration files
  6. # or on the command line.
  7.  
  8. # Configuration data is parsed as follows:
  9. #  1. command line options
  10. #  2. user-specific file
  11. #  3. system-wide file
  12. # Any configuration value is only changed the first time it is set.
  13. # Thus, host-specific definitions should be at the beginning of the
  14. # configuration file, and defaults at the end.
  15.  
  16. # Site-wide defaults for some commonly used options.  For a comprehensive
  17. # list of available options, their meanings and defaults, please see the
  18. # ssh_config(5) man page.
  19.  
  20. Host *
  21. #   ForwardAgent no
  22. #   ForwardX11 no
  23.  
  24. # If you do not trust your remote host (or its administrator), you
  25. # should not forward X11 connections to your local X11-display for
  26. # security reasons: Someone stealing the authentification data on the
  27. # remote side (the "spoofed" X-server by the remote sshd) can read your
  28. # keystrokes as you type, just like any other X11 client could do.
  29. # Set this to "no" here for global effect or in your own ~/.ssh/config
  30. # file if you want to have the remote X11 authentification data to 
  31. # expire after two minutes after remote login.
  32. ForwardX11Trusted yes
  33.  
  34. #   RhostsRSAAuthentication no
  35. #   RSAAuthentication yes
  36. #   PasswordAuthentication yes
  37. #   HostbasedAuthentication no
  38. #   BatchMode no
  39. #   CheckHostIP yes
  40. #   AddressFamily any
  41. #   ConnectTimeout 0
  42. #   StrictHostKeyChecking ask
  43. #   IdentityFile ~/.ssh/identity
  44. #   IdentityFile ~/.ssh/id_rsa
  45. #   IdentityFile ~/.ssh/id_dsa
  46. #   Port 22
  47. #   Protocol 2,1
  48. #   Cipher 3des
  49. #   Ciphers aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes192-cbc,aes256-cbc
  50. #   EscapeChar ~
  51. #   GSSAPIAuthentication no
  52. #   GSSAPIDelegateCredentials no 
  53.  
  54. # Set this to 'yes' to enable support for the deprecated 'gssapi' authentication
  55. # mechanism to OpenSSH 3.8p1. The newer 'gssapi-with-mic' mechanism is included
  56. # in this release. The use of 'gssapi' is deprecated due to the presence of 
  57. # potential man-in-the-middle attacks, which 'gssapi-with-mic' is not susceptible to.
  58. #   GSSAPIEnableMITMAttack no
  59.  
  60. # This enables sending locale enviroment variables LC_* LANG, see ssh_config(5).
  61. SendEnv LANG LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE LC_MONETARY LC_MESSAGES 
  62. SendEnv LC_PAPER LC_NAME LC_ADDRESS LC_TELEPHONE LC_MEASUREMENT 
  63. SendEnv LC_IDENTIFICATION LC_ALL
  64.