]> andersk Git - gssapi-openssh.git/blob - openssh/sshd_config
openssh-4.4p1-hpn12v13.diff
[gssapi-openssh.git] / openssh / sshd_config
1 #       $OpenBSD: sshd_config,v 1.74 2006/07/19 13:07:10 dtucker Exp $
2
3 # This is the sshd server system-wide configuration file.  See
4 # sshd_config(5) for more information.
5
6 # This sshd was compiled with PATH=/usr/bin:/bin:/usr/sbin:/sbin
7
8 # The strategy used for options in the default sshd_config shipped with
9 # OpenSSH is to specify options with their default value where
10 # possible, but leave them commented.  Uncommented options change a
11 # default value.
12
13 #Port 22
14 #Protocol 2,1
15 #AddressFamily any
16 #ListenAddress 0.0.0.0
17 #ListenAddress ::
18
19 # HostKey for protocol version 1
20 #HostKey /etc/ssh/ssh_host_key
21 # HostKeys for protocol version 2
22 #HostKey /etc/ssh/ssh_host_rsa_key
23 #HostKey /etc/ssh/ssh_host_dsa_key
24
25 # Lifetime and size of ephemeral version 1 server key
26 #KeyRegenerationInterval 1h
27 #ServerKeyBits 768
28
29 # Logging
30 # obsoletes QuietMode and FascistLogging
31 #SyslogFacility AUTH
32 #LogLevel INFO
33
34 # Authentication:
35
36 #LoginGraceTime 2m
37 #PermitRootLogin yes
38 #StrictModes yes
39 #MaxAuthTries 6
40
41 #RSAAuthentication yes
42 #PubkeyAuthentication yes
43 #AuthorizedKeysFile     .ssh/authorized_keys
44
45 # For this to work you will also need host keys in /etc/ssh/ssh_known_hosts
46 #RhostsRSAAuthentication no
47 # similar for protocol version 2
48 #HostbasedAuthentication no
49 # Change to yes if you don't trust ~/.ssh/known_hosts for
50 # RhostsRSAAuthentication and HostbasedAuthentication
51 #IgnoreUserKnownHosts no
52 # Don't read the user's ~/.rhosts and ~/.shosts files
53 #IgnoreRhosts yes
54
55 # To disable tunneled clear text passwords, change to no here!
56 #PasswordAuthentication yes
57 #PermitEmptyPasswords no
58
59 # Change to no to disable s/key passwords
60 #ChallengeResponseAuthentication yes
61
62 # Kerberos options
63 #KerberosAuthentication no
64 #KerberosOrLocalPasswd yes
65 #KerberosTicketCleanup yes
66 #KerberosGetAFSToken no
67
68 # GSSAPI options
69 #GSSAPIAuthentication no
70 #GSSAPICleanupCredentials yes
71 #GSSAPIStrictAcceptorCheck yes
72 #GSSAPIKeyExchange no
73
74 # Set this to 'yes' to enable PAM authentication, account processing, 
75 # and session processing. If this is enabled, PAM authentication will 
76 # be allowed through the ChallengeResponseAuthentication and
77 # PasswordAuthentication.  Depending on your PAM configuration,
78 # PAM authentication via ChallengeResponseAuthentication may bypass
79 # the setting of "PermitRootLogin without-password".
80 # If you just want the PAM account and session checks to run without
81 # PAM authentication, then enable this but set PasswordAuthentication
82 # and ChallengeResponseAuthentication to 'no'.
83 #UsePAM no
84
85 #AllowTcpForwarding yes
86 #GatewayPorts no
87 #X11Forwarding no
88 #X11DisplayOffset 10
89 #X11UseLocalhost yes
90 #PrintMotd yes
91 #PrintLastLog yes
92 #TCPKeepAlive yes
93 #UseLogin no
94 #UsePrivilegeSeparation yes
95 #PermitUserEnvironment no
96 #Compression delayed
97 #ClientAliveInterval 0
98 #ClientAliveCountMax 3
99 #UseDNS yes
100 #PidFile /var/run/sshd.pid
101 #MaxStartups 10
102 #PermitTunnel no
103
104 # no default banner path
105 #Banner /some/path
106
107 # override default of no subsystems
108 Subsystem       sftp    /usr/libexec/sftp-server
109
110 # the following are HPN related configuration options
111 # tcp receive buffer polling. enable in autotuning kernels
112 #TcpRcvBufPoll no
113  
114 # allow the use of the none cipher
115 #NoneEnabled no
116
117 # disable hpn performance boosts. 
118 #HPNDisabled no
119
120 # buffer size for hpn to non-hn connections
121 #HPNBufferSize 2048
122
123
124 # Example of overriding settings on a per-user basis
125 #Match User anoncvs
126 #       X11Forwarding no
127 #       AllowTcpForwarding no
128 #       ForceCommand cvs server
This page took 0.208262 seconds and 5 git commands to generate.