]> andersk Git - openssh.git/blame - sshd_config
- (dtucker) [configure.ac sftp-client.c] Remove the gyrations required for
[openssh.git] / sshd_config
CommitLineData
39ceddb7 1# $OpenBSD: sshd_config,v 1.80 2008/07/02 02:24:18 djm Exp $
b2d818e6 2
54e5539d 3# This is the sshd server system-wide configuration file. See
4# sshd_config(5) for more information.
8efc0c15 5
70e2f2f3 6# This sshd was compiled with PATH=/usr/bin:/bin:/usr/sbin:/sbin
7
d9959c61 8# The strategy used for options in the default sshd_config shipped with
ac10636f 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
31b41ceb 14#AddressFamily any
adc83ebf 15#ListenAddress 0.0.0.0
48e671d5 16#ListenAddress ::
a98da4aa 17
e93309c3 18# Disable legacy (protocol version 1) support in the server for new
19# installations. In future the default will change to require explicit
20# activation of protocol 1
21Protocol 2
22
a98da4aa 23# HostKey for protocol version 1
2a8a6488 24#HostKey /etc/ssh/ssh_host_key
a98da4aa 25# HostKeys for protocol version 2
2a8a6488 26#HostKey /etc/ssh/ssh_host_rsa_key
27#HostKey /etc/ssh/ssh_host_dsa_key
a98da4aa 28
29# Lifetime and size of ephemeral version 1 server key
4db4d313 30#KeyRegenerationInterval 1h
39ceddb7 31#ServerKeyBits 1024
dd092f97 32
5f4fdfae 33# Logging
05ad7fe0 34# obsoletes QuietMode and FascistLogging
ac10636f 35#SyslogFacility AUTH
36#LogLevel INFO
272b7f60 37
a98da4aa 38# Authentication:
39
4db4d313 40#LoginGraceTime 2m
ac10636f 41#PermitRootLogin yes
42#StrictModes yes
af4bd935 43#MaxAuthTries 6
c6dca55e 44#MaxSessions 10
a98da4aa 45
ac10636f 46#RSAAuthentication yes
47#PubkeyAuthentication yes
48#AuthorizedKeysFile .ssh/authorized_keys
a98da4aa 49
2a8a6488 50# For this to work you will also need host keys in /etc/ssh/ssh_known_hosts
ac10636f 51#RhostsRSAAuthentication no
8002af61 52# similar for protocol version 2
ac10636f 53#HostbasedAuthentication no
54# Change to yes if you don't trust ~/.ssh/known_hosts for
55# RhostsRSAAuthentication and HostbasedAuthentication
56#IgnoreUserKnownHosts no
0598d99d 57# Don't read the user's ~/.rhosts and ~/.shosts files
58#IgnoreRhosts yes
8efc0c15 59
60# To disable tunneled clear text passwords, change to no here!
ac10636f 61#PasswordAuthentication yes
62#PermitEmptyPasswords no
10f72868 63
ac10636f 64# Change to no to disable s/key passwords
65#ChallengeResponseAuthentication yes
8efc0c15 66
ac10636f 67# Kerberos options
eadc806d 68#KerberosAuthentication no
8efc0c15 69#KerberosOrLocalPasswd yes
ac10636f 70#KerberosTicketCleanup yes
a1e30b47 71#KerberosGetAFSToken no
ac10636f 72
7364bd04 73# GSSAPI options
74#GSSAPIAuthentication no
e377c083 75#GSSAPICleanupCredentials yes
7364bd04 76
73e81988 77# Set this to 'yes' to enable PAM authentication, account processing,
78# and session processing. If this is enabled, PAM authentication will
05059810 79# be allowed through the ChallengeResponseAuthentication and
80# PasswordAuthentication. Depending on your PAM configuration,
81# PAM authentication via ChallengeResponseAuthentication may bypass
82# the setting of "PermitRootLogin without-password".
83# If you just want the PAM account and session checks to run without
84# PAM authentication, then enable this but set PasswordAuthentication
85# and ChallengeResponseAuthentication to 'no'.
1b4ba39b 86#UsePAM no
5f4fdfae 87
5c7e2b47 88#AllowAgentForwarding yes
4db4d313 89#AllowTcpForwarding yes
90#GatewayPorts no
ac10636f 91#X11Forwarding no
92#X11DisplayOffset 10
e6e573bd 93#X11UseLocalhost yes
ac10636f 94#PrintMotd yes
95#PrintLastLog yes
6bb49a16 96#TCPKeepAlive yes
10fa00c8 97#UseLogin no
2ee1b704 98#UsePrivilegeSeparation yes
f00bab84 99#PermitUserEnvironment no
07200973 100#Compression delayed
4db4d313 101#ClientAliveInterval 0
102#ClientAliveCountMax 3
103#UseDNS yes
104#PidFile /var/run/sshd.pid
ac10636f 105#MaxStartups 10
d20f3c9e 106#PermitTunnel no
db49deeb 107#ChrootDirectory none
4db4d313 108
ac10636f 109# no default banner path
ba8cfba6 110#Banner none
7bbcc167 111
ac10636f 112# override default of no subsystems
7bbcc167 113Subsystem sftp /usr/libexec/sftp-server
e7259e8d 114
115# Example of overriding settings on a per-user basis
116#Match User anoncvs
117# X11Forwarding no
118# AllowTcpForwarding no
119# ForceCommand cvs server
This page took 0.325582 seconds and 5 git commands to generate.