home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / boot / i386 / root / etc / ssh / sshd_config < prev   
Text File  |  2006-11-29  |  2KB  |  72 lines

  1. #    $OpenBSD: sshd_config,v 1.38 2001/04/15 21:41:29 deraadt Exp $
  2.  
  3. # This sshd was compiled with PATH=/usr/bin:/bin:/usr/sbin:/sbin
  4.  
  5. # This is the sshd server system-wide configuration file.  See sshd(8)
  6. # for more information.
  7.  
  8. Port 22
  9. Protocol 1,2
  10. #ListenAddress 0.0.0.0
  11. #ListenAddress ::
  12. HostKey /etc/ssh/ssh_host_key
  13. #HostKey /etc/ssh/ssh_host_rsa_key
  14. HostKey /etc/ssh/ssh_host_dsa_key
  15. ServerKeyBits 768
  16. LoginGraceTime 600
  17. KeyRegenerationInterval 3600
  18. PermitRootLogin yes
  19. #
  20. # Don't read ~/.rhosts and ~/.shosts files
  21. IgnoreRhosts yes
  22. # Uncomment if you don't trust ~/.ssh/known_hosts for RhostsRSAAuthentication
  23. #IgnoreUserKnownHosts yes
  24. StrictModes yes
  25. X11Forwarding yes
  26. X11DisplayOffset 10
  27. PrintMotd yes
  28. #PrintLastLog no
  29. KeepAlive yes
  30.  
  31. # Logging
  32. SyslogFacility AUTH
  33. LogLevel INFO
  34. #obsoletes QuietMode and FascistLogging
  35.  
  36. #
  37. # For this to work you will also need host keys in /etc/ssh/ssh_known_hosts
  38. RhostsRSAAuthentication no
  39. # similar for protocol version 2
  40. HostbasedAuthentication no
  41. #
  42. RSAAuthentication yes
  43.  
  44. # To disable tunneled clear text passwords, change to no here!
  45. PasswordAuthentication yes
  46. PermitEmptyPasswords no
  47.  
  48. # Uncomment to disable s/key passwords 
  49. ChallengeResponseAuthentication no
  50.  
  51. # Uncomment to enable PAM keyboard-interactive authentication 
  52. # Warning: enabling this may bypass the setting of 'PasswordAuthentication'
  53. #PAMAuthenticationViaKbdInt yes
  54.  
  55. # To change Kerberos options
  56. #KerberosAuthentication no
  57. #KerberosOrLocalPasswd yes
  58. #AFSTokenPassing no
  59. #KerberosTicketCleanup no
  60.  
  61. # Kerberos TGT Passing does only work with the AFS kaserver
  62. #KerberosTgtPassing yes
  63.  
  64. #CheckMail yes
  65. #UseLogin no
  66.  
  67. #MaxStartups 10:30:60
  68. #Banner /etc/issue.net
  69. #ReverseMappingCheck yes
  70.  
  71. Subsystem    sftp    /usr/lib/ssh/sftp-server
  72.