[BACK]Return to sshd_config CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / crypto / dist / ssh

Annotation of src/crypto/dist/ssh/sshd_config, Revision 1.4

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

CVSweb <webmaster@jp.NetBSD.org>