sshd_config revision 1.30 1 1.30 riastrad # $NetBSD: sshd_config,v 1.30 2026/06/30 04:13:47 riastradh Exp $
2 1.29 christos # $OpenBSD: sshd_config,v 1.105 2024/12/03 14:12:47 dtucker Exp $
3 1.1 christos
4 1.1 christos # This is the sshd server system-wide configuration file. See
5 1.1 christos # sshd_config(5) for more information.
6 1.1 christos
7 1.1 christos # The strategy used for options in the default sshd_config shipped with
8 1.1 christos # OpenSSH is to specify options with their default value where
9 1.8 christos # possible, but leave them commented. Uncommented options override the
10 1.1 christos # default value.
11 1.1 christos
12 1.1 christos #Port 22
13 1.1 christos #AddressFamily any
14 1.1 christos #ListenAddress 0.0.0.0
15 1.1 christos #ListenAddress ::
16 1.1 christos
17 1.1 christos #HostKey /etc/ssh/ssh_host_rsa_key
18 1.7 christos #HostKey /etc/ssh/ssh_host_ecdsa_key
19 1.12 christos #HostKey /etc/ssh/ssh_host_ed25519_key
20 1.1 christos
21 1.11 christos # Ciphers and keying
22 1.11 christos #RekeyLimit default none
23 1.11 christos
24 1.1 christos # Logging
25 1.1 christos #SyslogFacility AUTH
26 1.1 christos #LogLevel INFO
27 1.1 christos
28 1.1 christos # Authentication:
29 1.1 christos
30 1.19 christos # For slow CPUs, bumped from 2 minutes to 10
31 1.19 christos LoginGraceTime 600
32 1.15 christos #PermitRootLogin prohibit-password
33 1.1 christos #StrictModes yes
34 1.1 christos #MaxAuthTries 6
35 1.1 christos #MaxSessions 10
36 1.1 christos
37 1.1 christos #PubkeyAuthentication yes
38 1.8 christos
39 1.8 christos # The default is to check both .ssh/authorized_keys and .ssh/authorized_keys2
40 1.8 christos # but this is overridden so installations will only check .ssh/authorized_keys
41 1.8 christos AuthorizedKeysFile .ssh/authorized_keys
42 1.1 christos
43 1.9 christos #AuthorizedPrincipalsFile none
44 1.9 christos
45 1.10 christos #AuthorizedKeysCommand none
46 1.10 christos #AuthorizedKeysCommandUser nobody
47 1.10 christos
48 1.1 christos # For this to work you will also need host keys in /etc/ssh/ssh_known_hosts
49 1.1 christos #HostbasedAuthentication no
50 1.1 christos # Change to yes if you don't trust ~/.ssh/known_hosts for
51 1.18 christos # HostbasedAuthentication
52 1.1 christos #IgnoreUserKnownHosts no
53 1.1 christos # Don't read the user's ~/.rhosts and ~/.shosts files
54 1.1 christos #IgnoreRhosts yes
55 1.1 christos
56 1.30 riastrad # To disable password authentication, you must BOTH
57 1.30 riastrad # (a) set PasswordAuthentication to "no", AND
58 1.30 riastrad # (b) set KbdInteractiveAuthentication to "no", or set UsePAM to "no",
59 1.30 riastrad # or disable all password-based auth modules in /etc/pam.d/sshd.
60 1.30 riastrad # Alternatively, you can configure AuthenticationMethods with a
61 1.30 riastrad # specific list of methods excluding "password" and
62 1.30 riastrad # "keyboard-interactive".
63 1.1 christos #PasswordAuthentication yes
64 1.1 christos #PermitEmptyPasswords no
65 1.1 christos
66 1.29 christos # Change to "no" to disable keyboard-interactive authentication. Depending on
67 1.29 christos # the system's configuration, this may involve passwords, challenge-response,
68 1.29 christos # one-time passwords or some combination of these and other methods.
69 1.26 christos #KbdInteractiveAuthentication yes
70 1.1 christos
71 1.25 kim # Kerberos options
72 1.25 kim #KerberosAuthentication no
73 1.25 kim #KerberosOrLocalPasswd yes
74 1.25 kim #KerberosTicketCleanup yes
75 1.25 kim #KerberosGetAFSToken no
76 1.25 kim
77 1.25 kim # GSSAPI options
78 1.25 kim #GSSAPIAuthentication no
79 1.25 kim #GSSAPICleanupCredentials yes
80 1.25 kim
81 1.25 kim # Set this to 'yes' to enable PAM authentication, account processing,
82 1.25 kim # and session processing. If this is enabled, PAM authentication will
83 1.27 he # be allowed through the KbdInteractiveAuthentication and
84 1.27 he # PasswordAuthentication settings. Depending on your PAM configuration,
85 1.27 he # PAM authentication via KbdInteractiveAuthentication may bypass
86 1.25 kim # the setting of "PermitRootLogin without-password".
87 1.25 kim # If you just want the PAM account and session checks to run without
88 1.25 kim # PAM authentication, then enable this but set PasswordAuthentication
89 1.27 he # and KbdInteractiveAuthentication to 'no'.
90 1.25 kim UsePAM yes
91 1.25 kim
92 1.1 christos #AllowAgentForwarding yes
93 1.1 christos #AllowTcpForwarding yes
94 1.1 christos #GatewayPorts no
95 1.1 christos #X11Forwarding no
96 1.2 christos # If you use xorg from pkgsrc then uncomment the following line.
97 1.2 christos #XAuthLocation /usr/pkg/bin/xauth
98 1.1 christos #X11DisplayOffset 10
99 1.1 christos #X11UseLocalhost yes
100 1.12 christos #PermitTTY yes
101 1.1 christos #PrintMotd yes
102 1.1 christos #PrintLastLog yes
103 1.1 christos #TCPKeepAlive yes
104 1.1 christos #PermitUserEnvironment no
105 1.1 christos #Compression delayed
106 1.1 christos #ClientAliveInterval 0
107 1.1 christos #ClientAliveCountMax 3
108 1.13 christos #UseDNS no
109 1.1 christos #PidFile /var/run/sshd.pid
110 1.10 christos #MaxStartups 10:30:100
111 1.1 christos #PermitTunnel no
112 1.1 christos #ChrootDirectory none
113 1.9 christos #VersionAddendum none
114 1.1 christos
115 1.1 christos # no default banner path
116 1.1 christos #Banner none
117 1.1 christos
118 1.5 adam # here are the new patched ldap related tokens
119 1.5 adam # entries in your LDAP must have posixAccount & ldapPublicKey objectclass
120 1.5 adam #UseLPK yes
121 1.5 adam #LpkLdapConf /etc/ldap.conf
122 1.5 adam #LpkServers ldap://10.1.7.1/ ldap://10.1.7.2/
123 1.5 adam #LpkUserDN ou=users,dc=phear,dc=org
124 1.5 adam #LpkGroupDN ou=groups,dc=phear,dc=org
125 1.5 adam #LpkBindDN cn=Manager,dc=phear,dc=org
126 1.5 adam #LpkBindPw secret
127 1.5 adam #LpkServerGroup mail
128 1.5 adam #LpkFilter (hostAccess=master.phear.org)
129 1.5 adam #LpkForceTLS no
130 1.5 adam #LpkSearchTimelimit 3
131 1.5 adam #LpkBindTimelimit 3
132 1.5 adam #LpkPubKeyAttr sshPublicKey
133 1.5 adam
134 1.1 christos # override default of no subsystems
135 1.1 christos Subsystem sftp /usr/libexec/sftp-server
136 1.1 christos
137 1.2 christos # the following are HPN related configuration options
138 1.2 christos # tcp receive buffer polling. disable in non autotuning kernels
139 1.2 christos #TcpRcvBufPoll yes
140 1.3 dyoung
141 1.2 christos # allow the use of the none cipher
142 1.2 christos #NoneEnabled no
143 1.2 christos
144 1.3 dyoung # disable hpn performance boosts.
145 1.28 nia HPNDisabled yes
146 1.2 christos
147 1.2 christos # buffer size for hpn to non-hpn connections
148 1.2 christos #HPNBufferSize 2048
149 1.2 christos
150 1.1 christos # Example of overriding settings on a per-user basis
151 1.1 christos #Match User anoncvs
152 1.1 christos # X11Forwarding no
153 1.1 christos # AllowTcpForwarding no
154 1.12 christos # PermitTTY no
155 1.1 christos # ForceCommand cvs server
156