tj@openbsd.org | ebc8b46 | 2018-04-09 20:41:22 +0000 | [diff] [blame] | 1 | # $OpenBSD: sshd_config,v 1.103 2018/04/09 20:41:22 tj Exp $ |
Tim Rice | 59ea0a0 | 2001-03-10 13:50:45 -0800 | [diff] [blame] | 2 | |
Ben Lindstrom | 9721e92 | 2002-06-21 01:06:03 +0000 | [diff] [blame] | 3 | # This is the sshd server system-wide configuration file. See |
| 4 | # sshd_config(5) for more information. |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 5 | |
Tim Rice | 1e2c600 | 2002-01-30 22:14:03 -0800 | [diff] [blame] | 6 | # This sshd was compiled with PATH=/usr/bin:/bin:/usr/sbin:/sbin |
| 7 | |
Damien Miller | 95ca7e9 | 2002-02-19 15:29:02 +1100 | [diff] [blame] | 8 | # The strategy used for options in the default sshd_config shipped with |
Damien Miller | 2bec5c1 | 2002-01-22 23:32:07 +1100 | [diff] [blame] | 9 | # OpenSSH is to specify options with their default value where |
Damien Miller | fd53abd | 2011-05-15 08:36:02 +1000 | [diff] [blame] | 10 | # possible, but leave them commented. Uncommented options override the |
Damien Miller | 2bec5c1 | 2002-01-22 23:32:07 +1100 | [diff] [blame] | 11 | # default value. |
| 12 | |
| 13 | #Port 22 |
Darren Tucker | 0f38323 | 2005-01-20 10:57:56 +1100 | [diff] [blame] | 14 | #AddressFamily any |
Kevin Steves | 8ee4f69 | 2001-01-09 15:28:46 +0000 | [diff] [blame] | 15 | #ListenAddress 0.0.0.0 |
Damien Miller | 34132e5 | 2000-01-14 15:45:46 +1100 | [diff] [blame] | 16 | #ListenAddress :: |
Ben Lindstrom | c4b7225 | 2001-06-09 01:09:51 +0000 | [diff] [blame] | 17 | |
Damien Miller | 05eda43 | 2002-02-10 18:32:28 +1100 | [diff] [blame] | 18 | #HostKey /etc/ssh/ssh_host_rsa_key |
Damien Miller | 80ed82a | 2010-09-10 11:20:11 +1000 | [diff] [blame] | 19 | #HostKey /etc/ssh/ssh_host_ecdsa_key |
Damien Miller | af5d448 | 2014-01-12 19:20:47 +1100 | [diff] [blame] | 20 | #HostKey /etc/ssh/ssh_host_ed25519_key |
Ben Lindstrom | c4b7225 | 2001-06-09 01:09:51 +0000 | [diff] [blame] | 21 | |
Darren Tucker | 5f96f3b | 2013-05-16 20:29:28 +1000 | [diff] [blame] | 22 | # Ciphers and keying |
| 23 | #RekeyLimit default none |
| 24 | |
Damien Miller | 886c63a | 2000-01-20 23:13:36 +1100 | [diff] [blame] | 25 | # Logging |
Damien Miller | 2bec5c1 | 2002-01-22 23:32:07 +1100 | [diff] [blame] | 26 | #SyslogFacility AUTH |
| 27 | #LogLevel INFO |
Damien Miller | 9ba3024 | 1999-11-11 21:07:00 +1100 | [diff] [blame] | 28 | |
Ben Lindstrom | c4b7225 | 2001-06-09 01:09:51 +0000 | [diff] [blame] | 29 | # Authentication: |
| 30 | |
Darren Tucker | b8dae8e | 2003-06-22 20:48:45 +1000 | [diff] [blame] | 31 | #LoginGraceTime 2m |
deraadt@openbsd.org | 1dc8d93 | 2015-08-06 14:53:21 +0000 | [diff] [blame] | 32 | #PermitRootLogin prohibit-password |
Damien Miller | 2bec5c1 | 2002-01-22 23:32:07 +1100 | [diff] [blame] | 33 | #StrictModes yes |
Darren Tucker | 89413db | 2004-05-24 10:36:23 +1000 | [diff] [blame] | 34 | #MaxAuthTries 6 |
Damien Miller | 7207f64 | 2008-05-19 15:34:50 +1000 | [diff] [blame] | 35 | #MaxSessions 10 |
Ben Lindstrom | c4b7225 | 2001-06-09 01:09:51 +0000 | [diff] [blame] | 36 | |
Damien Miller | 2bec5c1 | 2002-01-22 23:32:07 +1100 | [diff] [blame] | 37 | #PubkeyAuthentication yes |
Damien Miller | d8478b6 | 2011-05-29 21:39:36 +1000 | [diff] [blame] | 38 | |
| 39 | # The default is to check both .ssh/authorized_keys and .ssh/authorized_keys2 |
| 40 | # but this is overridden so installations will only check .ssh/authorized_keys |
| 41 | AuthorizedKeysFile .ssh/authorized_keys |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 42 | |
Damien Miller | 8fef9eb | 2012-04-22 11:25:10 +1000 | [diff] [blame] | 43 | #AuthorizedPrincipalsFile none |
| 44 | |
Damien Miller | 09d3e12 | 2012-10-31 08:58:58 +1100 | [diff] [blame] | 45 | #AuthorizedKeysCommand none |
| 46 | #AuthorizedKeysCommandUser nobody |
| 47 | |
Damien Miller | 05eda43 | 2002-02-10 18:32:28 +1100 | [diff] [blame] | 48 | # For this to work you will also need host keys in /etc/ssh/ssh_known_hosts |
Damien Miller | 2bec5c1 | 2002-01-22 23:32:07 +1100 | [diff] [blame] | 49 | #HostbasedAuthentication no |
| 50 | # Change to yes if you don't trust ~/.ssh/known_hosts for |
naddy@openbsd.org | ffe6549 | 2016-08-15 12:32:04 +0000 | [diff] [blame] | 51 | # HostbasedAuthentication |
Damien Miller | 2bec5c1 | 2002-01-22 23:32:07 +1100 | [diff] [blame] | 52 | #IgnoreUserKnownHosts no |
Darren Tucker | ec960f2 | 2003-08-13 20:37:05 +1000 | [diff] [blame] | 53 | # Don't read the user's ~/.rhosts and ~/.shosts files |
| 54 | #IgnoreRhosts yes |
Ben Lindstrom | c4b7225 | 2001-06-09 01:09:51 +0000 | [diff] [blame] | 55 | |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 56 | # To disable tunneled clear text passwords, change to no here! |
Damien Miller | 2bec5c1 | 2002-01-22 23:32:07 +1100 | [diff] [blame] | 57 | #PasswordAuthentication yes |
| 58 | #PermitEmptyPasswords no |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 59 | |
Damien Miller | 2bec5c1 | 2002-01-22 23:32:07 +1100 | [diff] [blame] | 60 | # Change to no to disable s/key passwords |
| 61 | #ChallengeResponseAuthentication yes |
Damien Miller | f815442 | 2001-04-25 22:44:14 +1000 | [diff] [blame] | 62 | |
Damien Miller | 2bec5c1 | 2002-01-22 23:32:07 +1100 | [diff] [blame] | 63 | # Kerberos options |
Damien Miller | d7de14b | 2002-04-23 21:04:51 +1000 | [diff] [blame] | 64 | #KerberosAuthentication no |
Damien Miller | 2bec5c1 | 2002-01-22 23:32:07 +1100 | [diff] [blame] | 65 | #KerberosOrLocalPasswd yes |
| 66 | #KerberosTicketCleanup yes |
Darren Tucker | 22ef508 | 2003-12-31 11:37:34 +1100 | [diff] [blame] | 67 | #KerberosGetAFSToken no |
Damien Miller | 2bec5c1 | 2002-01-22 23:32:07 +1100 | [diff] [blame] | 68 | |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 69 | # GSSAPI options |
| 70 | #GSSAPIAuthentication no |
Darren Tucker | a49d36e | 2003-10-02 16:20:54 +1000 | [diff] [blame] | 71 | #GSSAPICleanupCredentials yes |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 72 | |
Darren Tucker | e90a06a | 2013-09-18 15:09:38 +1000 | [diff] [blame] | 73 | # Set this to 'yes' to enable PAM authentication, account processing, |
| 74 | # and session processing. If this is enabled, PAM authentication will |
Darren Tucker | a4904f7 | 2006-02-23 21:35:30 +1100 | [diff] [blame] | 75 | # be allowed through the ChallengeResponseAuthentication and |
| 76 | # PasswordAuthentication. Depending on your PAM configuration, |
| 77 | # PAM authentication via ChallengeResponseAuthentication may bypass |
| 78 | # the setting of "PermitRootLogin without-password". |
| 79 | # If you just want the PAM account and session checks to run without |
| 80 | # PAM authentication, then enable this but set PasswordAuthentication |
| 81 | # and ChallengeResponseAuthentication to 'no'. |
Tim Rice | d4d1815 | 2003-09-25 19:04:34 -0700 | [diff] [blame] | 82 | #UsePAM no |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 83 | |
Damien Miller | ba3a659 | 2008-05-19 14:58:22 +1000 | [diff] [blame] | 84 | #AllowAgentForwarding yes |
Darren Tucker | b8dae8e | 2003-06-22 20:48:45 +1000 | [diff] [blame] | 85 | #AllowTcpForwarding yes |
| 86 | #GatewayPorts no |
Damien Miller | 2bec5c1 | 2002-01-22 23:32:07 +1100 | [diff] [blame] | 87 | #X11Forwarding no |
| 88 | #X11DisplayOffset 10 |
Damien Miller | 95c249f | 2002-02-05 12:11:34 +1100 | [diff] [blame] | 89 | #X11UseLocalhost yes |
Damien Miller | 5ff30c6 | 2013-10-30 22:21:50 +1100 | [diff] [blame] | 90 | #PermitTTY yes |
Damien Miller | 2bec5c1 | 2002-01-22 23:32:07 +1100 | [diff] [blame] | 91 | #PrintMotd yes |
| 92 | #PrintLastLog yes |
Darren Tucker | 0b3b975 | 2003-12-31 11:38:32 +1100 | [diff] [blame] | 93 | #TCPKeepAlive yes |
Ben Lindstrom | 5d860f0 | 2002-08-01 01:28:38 +0000 | [diff] [blame] | 94 | #PermitUserEnvironment no |
Damien Miller | 9786e6e | 2005-07-26 21:54:56 +1000 | [diff] [blame] | 95 | #Compression delayed |
Darren Tucker | b8dae8e | 2003-06-22 20:48:45 +1000 | [diff] [blame] | 96 | #ClientAliveInterval 0 |
| 97 | #ClientAliveCountMax 3 |
deraadt@openbsd.org | 3cd5103 | 2015-02-02 01:57:44 +0000 | [diff] [blame] | 98 | #UseDNS no |
Darren Tucker | b8dae8e | 2003-06-22 20:48:45 +1000 | [diff] [blame] | 99 | #PidFile /var/run/sshd.pid |
Damien Miller | 1f583df | 2013-02-12 11:02:08 +1100 | [diff] [blame] | 100 | #MaxStartups 10:30:100 |
Damien Miller | d27b947 | 2005-12-13 19:29:02 +1100 | [diff] [blame] | 101 | #PermitTunnel no |
Damien Miller | d8cb1f1 | 2008-02-10 22:40:12 +1100 | [diff] [blame] | 102 | #ChrootDirectory none |
Damien Miller | 2352881 | 2012-04-22 11:24:43 +1000 | [diff] [blame] | 103 | #VersionAddendum none |
Darren Tucker | b8dae8e | 2003-06-22 20:48:45 +1000 | [diff] [blame] | 104 | |
Damien Miller | 2bec5c1 | 2002-01-22 23:32:07 +1100 | [diff] [blame] | 105 | # no default banner path |
Damien Miller | 4890e53 | 2007-09-17 11:57:38 +1000 | [diff] [blame] | 106 | #Banner none |
Ben Lindstrom | e9d0444 | 2001-02-10 23:26:35 +0000 | [diff] [blame] | 107 | |
Damien Miller | 2bec5c1 | 2002-01-22 23:32:07 +1100 | [diff] [blame] | 108 | # override default of no subsystems |
Ben Lindstrom | e9d0444 | 2001-02-10 23:26:35 +0000 | [diff] [blame] | 109 | Subsystem sftp /usr/libexec/sftp-server |
Damien Miller | e275443 | 2006-07-24 14:06:47 +1000 | [diff] [blame] | 110 | |
| 111 | # Example of overriding settings on a per-user basis |
| 112 | #Match User anoncvs |
| 113 | # X11Forwarding no |
| 114 | # AllowTcpForwarding no |
Damien Miller | 5ff30c6 | 2013-10-30 22:21:50 +1100 | [diff] [blame] | 115 | # PermitTTY no |
Damien Miller | e275443 | 2006-07-24 14:06:47 +1000 | [diff] [blame] | 116 | # ForceCommand cvs server |