blob: 72fbae37be65a4794211a63e8af364f69da57bdb [file] [log] [blame]
Darren Tuckerbad50762009-10-11 21:51:08 +11001# $OpenBSD: sshd_config,v 1.81 2009/10/08 14:03:41 markus Exp $
Tim Rice59ea0a02001-03-10 13:50:45 -08002
Ben Lindstrom9721e922002-06-21 01:06:03 +00003# This is the sshd server system-wide configuration file. See
4# sshd_config(5) for more information.
Damien Millerd4a8b7e1999-10-27 13:42:43 +10005
Tim Rice1e2c6002002-01-30 22:14:03 -08006# This sshd was compiled with PATH=/usr/bin:/bin:/usr/sbin:/sbin
7
Damien Miller95ca7e92002-02-19 15:29:02 +11008# The strategy used for options in the default sshd_config shipped with
Damien Miller2bec5c12002-01-22 23:32:07 +11009# 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
Darren Tucker0f383232005-01-20 10:57:56 +110014#AddressFamily any
Kevin Steves8ee4f692001-01-09 15:28:46 +000015#ListenAddress 0.0.0.0
Damien Miller34132e52000-01-14 15:45:46 +110016#ListenAddress ::
Ben Lindstromc4b72252001-06-09 01:09:51 +000017
Darren Tuckerbad50762009-10-11 21:51:08 +110018# The default requires explicit activation of protocol 1
19#Protocol 2
Darren Tucker506ed882007-03-21 20:42:24 +110020
Ben Lindstromc4b72252001-06-09 01:09:51 +000021# HostKey for protocol version 1
Damien Miller05eda432002-02-10 18:32:28 +110022#HostKey /etc/ssh/ssh_host_key
Ben Lindstromc4b72252001-06-09 01:09:51 +000023# HostKeys for protocol version 2
Damien Miller05eda432002-02-10 18:32:28 +110024#HostKey /etc/ssh/ssh_host_rsa_key
25#HostKey /etc/ssh/ssh_host_dsa_key
Ben Lindstromc4b72252001-06-09 01:09:51 +000026
27# Lifetime and size of ephemeral version 1 server key
Darren Tuckerb8dae8e2003-06-22 20:48:45 +100028#KeyRegenerationInterval 1h
Darren Tucker7499b0c2008-07-02 22:35:43 +100029#ServerKeyBits 1024
Damien Miller192bd011999-11-13 23:56:35 +110030
Damien Miller886c63a2000-01-20 23:13:36 +110031# Logging
Damien Miller06b75ad2005-05-26 12:12:37 +100032# obsoletes QuietMode and FascistLogging
Damien Miller2bec5c12002-01-22 23:32:07 +110033#SyslogFacility AUTH
34#LogLevel INFO
Damien Miller9ba30241999-11-11 21:07:00 +110035
Ben Lindstromc4b72252001-06-09 01:09:51 +000036# Authentication:
37
Darren Tuckerb8dae8e2003-06-22 20:48:45 +100038#LoginGraceTime 2m
Damien Miller2bec5c12002-01-22 23:32:07 +110039#PermitRootLogin yes
40#StrictModes yes
Darren Tucker89413db2004-05-24 10:36:23 +100041#MaxAuthTries 6
Damien Miller7207f642008-05-19 15:34:50 +100042#MaxSessions 10
Ben Lindstromc4b72252001-06-09 01:09:51 +000043
Damien Miller2bec5c12002-01-22 23:32:07 +110044#RSAAuthentication yes
45#PubkeyAuthentication yes
46#AuthorizedKeysFile .ssh/authorized_keys
Damien Millerd4a8b7e1999-10-27 13:42:43 +100047
Damien Miller05eda432002-02-10 18:32:28 +110048# For this to work you will also need host keys in /etc/ssh/ssh_known_hosts
Damien Miller2bec5c12002-01-22 23:32:07 +110049#RhostsRSAAuthentication no
Ben Lindstromc4b72252001-06-09 01:09:51 +000050# similar for protocol version 2
Damien Miller2bec5c12002-01-22 23:32:07 +110051#HostbasedAuthentication no
52# Change to yes if you don't trust ~/.ssh/known_hosts for
53# RhostsRSAAuthentication and HostbasedAuthentication
54#IgnoreUserKnownHosts no
Darren Tuckerec960f22003-08-13 20:37:05 +100055# Don't read the user's ~/.rhosts and ~/.shosts files
56#IgnoreRhosts yes
Ben Lindstromc4b72252001-06-09 01:09:51 +000057
Damien Millerd4a8b7e1999-10-27 13:42:43 +100058# To disable tunneled clear text passwords, change to no here!
Damien Miller2bec5c12002-01-22 23:32:07 +110059#PasswordAuthentication yes
60#PermitEmptyPasswords no
Damien Miller33804262001-02-04 23:20:18 +110061
Damien Miller2bec5c12002-01-22 23:32:07 +110062# Change to no to disable s/key passwords
63#ChallengeResponseAuthentication yes
Damien Millerf8154422001-04-25 22:44:14 +100064
Damien Miller2bec5c12002-01-22 23:32:07 +110065# Kerberos options
Damien Millerd7de14b2002-04-23 21:04:51 +100066#KerberosAuthentication no
Damien Miller2bec5c12002-01-22 23:32:07 +110067#KerberosOrLocalPasswd yes
68#KerberosTicketCleanup yes
Darren Tucker22ef5082003-12-31 11:37:34 +110069#KerberosGetAFSToken no
Damien Miller2bec5c12002-01-22 23:32:07 +110070
Darren Tucker0efd1552003-08-26 11:49:55 +100071# GSSAPI options
72#GSSAPIAuthentication no
Darren Tuckera49d36e2003-10-02 16:20:54 +100073#GSSAPICleanupCredentials yes
Darren Tucker0efd1552003-08-26 11:49:55 +100074
Damien Miller701d0512004-05-23 11:47:58 +100075# Set this to 'yes' to enable PAM authentication, account processing,
76# and session processing. If this is enabled, PAM authentication will
Darren Tuckera4904f72006-02-23 21:35:30 +110077# be allowed through the ChallengeResponseAuthentication and
78# PasswordAuthentication. Depending on your PAM configuration,
79# PAM authentication via ChallengeResponseAuthentication may bypass
80# the setting of "PermitRootLogin without-password".
81# If you just want the PAM account and session checks to run without
82# PAM authentication, then enable this but set PasswordAuthentication
83# and ChallengeResponseAuthentication to 'no'.
Tim Riced4d18152003-09-25 19:04:34 -070084#UsePAM no
Damien Millerd4a8b7e1999-10-27 13:42:43 +100085
Damien Millerba3a6592008-05-19 14:58:22 +100086#AllowAgentForwarding yes
Darren Tuckerb8dae8e2003-06-22 20:48:45 +100087#AllowTcpForwarding yes
88#GatewayPorts no
Damien Miller2bec5c12002-01-22 23:32:07 +110089#X11Forwarding no
90#X11DisplayOffset 10
Damien Miller95c249f2002-02-05 12:11:34 +110091#X11UseLocalhost yes
Damien Miller2bec5c12002-01-22 23:32:07 +110092#PrintMotd yes
93#PrintLastLog yes
Darren Tucker0b3b9752003-12-31 11:38:32 +110094#TCPKeepAlive yes
Damien Millerc30d35c2000-08-30 09:40:09 +110095#UseLogin no
Ben Lindstromfb62a692002-06-06 19:47:11 +000096#UsePrivilegeSeparation yes
Ben Lindstrom5d860f02002-08-01 01:28:38 +000097#PermitUserEnvironment no
Damien Miller9786e6e2005-07-26 21:54:56 +100098#Compression delayed
Darren Tuckerb8dae8e2003-06-22 20:48:45 +100099#ClientAliveInterval 0
100#ClientAliveCountMax 3
101#UseDNS yes
102#PidFile /var/run/sshd.pid
Damien Miller2bec5c12002-01-22 23:32:07 +1100103#MaxStartups 10
Damien Millerd27b9472005-12-13 19:29:02 +1100104#PermitTunnel no
Damien Millerd8cb1f12008-02-10 22:40:12 +1100105#ChrootDirectory none
Darren Tuckerb8dae8e2003-06-22 20:48:45 +1000106
Damien Miller2bec5c12002-01-22 23:32:07 +1100107# no default banner path
Damien Miller4890e532007-09-17 11:57:38 +1000108#Banner none
Ben Lindstrome9d04442001-02-10 23:26:35 +0000109
Damien Miller2bec5c12002-01-22 23:32:07 +1100110# override default of no subsystems
Ben Lindstrome9d04442001-02-10 23:26:35 +0000111Subsystem sftp /usr/libexec/sftp-server
Damien Millere2754432006-07-24 14:06:47 +1000112
113# Example of overriding settings on a per-user basis
114#Match User anoncvs
115# X11Forwarding no
116# AllowTcpForwarding no
117# ForceCommand cvs server