s4:torture: Adapt KDC canon test to Heimdal upstream changes
[samba.git] / source4 / heimdal / lib / krb5 / krb5.conf.5
1 .\" Copyright (c) 1999 - 2005 Kungliga Tekniska Högskolan
2 .\" (Royal Institute of Technology, Stockholm, Sweden).
3 .\" All rights reserved.
4 .\"
5 .\" Redistribution and use in source and binary forms, with or without
6 .\" modification, are permitted provided that the following conditions
7 .\" are met:
8 .\"
9 .\" 1. Redistributions of source code must retain the above copyright
10 .\"    notice, this list of conditions and the following disclaimer.
11 .\"
12 .\" 2. Redistributions in binary form must reproduce the above copyright
13 .\"    notice, this list of conditions and the following disclaimer in the
14 .\"    documentation and/or other materials provided with the distribution.
15 .\"
16 .\" 3. Neither the name of the Institute nor the names of its contributors
17 .\"    may be used to endorse or promote products derived from this software
18 .\"    without specific prior written permission.
19 .\"
20 .\" THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 .\" SUCH DAMAGE.
31 .\"
32 .\" $Id$
33 .\"
34 .Dd May  4, 2005
35 .Dt KRB5.CONF 5
36 .Os HEIMDAL
37 .Sh NAME
38 .Nm krb5.conf
39 .Nd configuration file for Kerberos 5
40 .Sh SYNOPSIS
41 .In krb5.h
42 .Sh DESCRIPTION
43 The
44 .Nm
45 file specifies several configuration parameters for the Kerberos 5
46 library, as well as for some programs.
47 .Pp
48 The file consists of one or more sections, containing a number of
49 bindings.
50 The value of each binding can be either a string or a list of other
51 bindings.
52 The grammar looks like:
53 .Bd -literal -offset indent
54 file:
55         /* empty */
56         sections
57         includes
58
59 sections:
60         section sections
61         section
62
63 section:
64         '[' section_name ']' bindings
65
66 section_name:
67         STRING
68
69 bindings:
70         binding bindings
71         binding
72
73 binding:
74         name '=' STRING
75         name '=' '{' bindings '}'
76
77 name:
78         STRING
79
80 includes:
81         'include' path
82         'includedir' path
83
84 path: STRING
85
86 .Ed
87 .Li STRINGs
88 consists of one or more non-whitespace characters.
89 .Pp
90 Files and directories may be included by absolute path, with percent
91 token expansion (see the TOKEN EXPANSION section).  Including a
92 directory causes all files in the directory to be included as if each
93 file had been included separately, but only files whose names consist of
94 alphanumeric, hyphen, and underscore are included, though they may also
95 end in '.conf'.
96 .Pp
97 STRINGs that are specified later in this man-page uses the following
98 notation.
99 .Bl -tag -width "xxx" -offset indent
100 .It boolean
101 values can be either yes/true or no/false.
102 .It time
103 values can be a list of year, month, day, hour, min, second.
104 Example: 1 month 2 days 30 min.
105 If no unit is given, seconds is assumed.
106 .It etypes
107 valid encryption types are: des-cbc-crc, des-cbc-md4, des-cbc-md5,
108 des3-cbc-sha1, arcfour-hmac-md5, aes128-cts-hmac-sha1-96, aes256-cts-hmac-sha1-96,
109 aes128-cts-hmac-sha256-128, and aes256-cts-hmac-sha384-192.
110 .It address
111 an address can be either a IPv4 or a IPv6 address.
112 .El
113 .Pp
114 Currently recognised sections and bindings are:
115 .Bl -tag -width "xxx" -offset indent
116 .It Li [appdefaults]
117 Specifies the default values to be used for Kerberos applications.
118 You can specify defaults per application, realm, or a combination of
119 these.
120 The preference order is:
121 .Bl -enum -compact
122 .It
123 .Va application Va realm Va option
124 .It
125 .Va application Va option
126 .It
127 .Va realm Va option
128 .It
129 .Va option
130 .El
131 .Pp
132 The supported options are:
133 .Bl -tag -width "xxx" -offset indent
134 .It Li forwardable = Va boolean
135 When obtaining initial credentials, make the credentials forwardable.
136 .It Li proxiable = Va boolean
137 When obtaining initial credentials, make the credentials proxiable.
138 .It Li no-addresses = Va boolean
139 When obtaining initial credentials, request them for an empty set of
140 addresses, making the tickets valid from any address.
141 .It Li ticket_lifetime = Va time
142 Default ticket lifetime.
143 .It Li renew_lifetime = Va time
144 Default renewable ticket lifetime.
145 .It Li encrypt = Va boolean
146 Use encryption, when available.
147 .It Li forward = Va boolean
148 Forward credentials to remote host (for
149 .Xr rsh 1 ,
150 .Xr telnet 1 ,
151 etc).
152 .It Li historical_anon_pkinit = Va boolean
153 Enable legacy anonymous pkinit command-line syntax.
154 With this option set to
155 .Li true,
156 the
157 .Xr kinit 1
158 .Fl Fl anonymous
159 command with no principal argument specified will request an anonymous pkinit
160 ticket from the default realm.
161 If a principal argument is specified, it is used as an explicit realm name for
162 anonymous pkinit even without an
163 .Li @
164 prefix.
165 .It Li delegate-destination-tgt = Va boolean
166 When forwarding credentials to a remote host, forward a TGT for the
167 realm of the destination host rather than a TGT for the user's realm.
168 This is useful when hosts in the remote realm should not or cannot
169 (e.g. firewalled from user realm's KDC) obtain tickets for services
170 in the user's realm. When the user's realm and the host's realm are
171 the same, this parameter has no effect.  The setting can be applied
172 to a single realm as follows:
173 .Bd -literal -offset indent
174 EXAMPLE.COM = {
175         delegate-destination-tgt = true
176 }
177 .Ed
178 .El
179 .It Li [libdefaults]
180 .Bl -tag -width "xxx" -offset indent
181 .It Li default_realm = Va REALM
182 Default realm to use, this is also known as your
183 .Dq local realm .
184 The default is the result of
185 .Fn krb5_get_host_realm "local hostname" .
186 .It Li allow_weak_crypto = Va boolean
187 are weak crypto algorithms allowed to be used, among others, DES is
188 considered weak.
189 .It Li clockskew = Va time
190 Maximum time differential (in seconds) allowed when comparing
191 times.
192 Default is 300 seconds (five minutes).
193 .It Li kdc_timeout = Va time
194 Maximum time to wait for a reply from the kdc, default is 3 seconds.
195 .It Li capath = {
196 .Bl -tag -width "xxx" -offset indent
197 .It Va destination-realm Li = Va next-hop-realm
198 .It ...
199 .It Li }
200 .El
201 This is deprecated, see the
202 .Li capaths
203 section below.
204 .It Li default_cc_type = Va cctype
205 sets the default credentials type.
206 .It Li default_cc_name = Va ccname
207 the default credentials cache name.
208 If you want to change the type only use
209 .Li default_cc_type .
210 The string can contain variables that are expanded at runtime. See the TOKEN
211 EXPANSION section.
212 .It Li default_file_cache_collections = Va FILE:/path/with/tokens ...
213 This multi-valued parameter allows more than one path to be
214 configured for the FILE credentials cache type to look in.  The FILE
215 credentials cache type will also consider file names whose prefixes
216 match these and end in
217 .Va +name
218 as subsidiary caches in the collection.  The values of this
219 parameter are subject to token expansion.  See the TOKEN EXPANSION
220 section.
221 .It Li enable_file_cache_iteration = Va boolean
222 If enabled, the
223 .Va FILE
224 credential cache type will support iteration of all subsidiary
225 caches in the default collection, meaning that
226 .Xr kinit 1
227 .Va -l
228 option will list them.  This does require scanning the directory
229 containing a given
230 .Va FILE
231 ccache, which, if it is
232 .Va /tmp
233 may be a slow operation.  Defaults to false.
234 .It Li default_etypes = Va etypes ...
235 A list of default encryption types to use. (Default: all enctypes if
236 allow_weak_crypto = TRUE, else all enctypes except single DES enctypes.)
237 .It Li default_as_etypes = Va etypes ...
238 A list of default encryption types to use in AS requests.  (Default: the
239 value of default_etypes.)
240 .It Li default_tgs_etypes = Va etypes ...
241 A list of default encryption types to use in TGS requests.  (Default:
242 the value of default_etypes.)
243 .It Li default_etypes_des = Va etypes ...
244 A list of default encryption types to use when requesting a DES credential.
245 .It Li default_keytab_name = Va keytab
246 The keytab to use if no other is specified, default is
247 .Dq FILE:/etc/krb5.keytab .
248 .It Li default_client_keytab_name = Va keytab
249 The keytab to use for client credential acquisition if no other is
250 specified, default is
251 .Dq FILE:%{LOCALSTATEDIR}/user/%{euid}/client.keytab .
252 See the TOKEN EXPANSION section.
253 .It Li dns_lookup_kdc = Va boolean
254 Use DNS SRV records to lookup KDC services location.
255 .It Li dns_lookup_realm = Va boolean
256 Use DNS TXT records to lookup domain to realm mappings.
257 .It Li enforce_ok_as_delegate = Va boolean
258 If this flag to true, GSSAPI credential delegation will be
259 disabled when the 
260 .Ar ok-as-delegate
261 flag is not set in the service ticket.
262 If this flag is false, the 
263 .Ar ok-as-delegate
264 ticket flag is only enforced when an application specifically
265 requests enforcement.
266 The default value is false.
267 .It Li kdc_timesync = Va boolean
268 Try to keep track of the time differential between the local machine
269 and the KDC, and then compensate for that when issuing requests.
270 .It Li max_retries = Va number
271 The max number of times to try to contact each KDC.
272 .It Li large_msg_size = Va number
273 The threshold where protocols with tiny maximum message sizes are not
274 considered usable to send messages to the KDC.
275 .It Li ticket_lifetime = Va time
276 Default ticket lifetime.
277 .It Li renew_lifetime = Va time
278 Default renewable ticket lifetime.
279 .It Li forwardable = Va boolean
280 When obtaining initial credentials, make the credentials forwardable.
281 This option is also valid in the [realms] section.
282 .It Li proxiable = Va boolean
283 When obtaining initial credentials, make the credentials proxiable.
284 This option is also valid in the [realms] section.
285 .It Li verify_ap_req_nofail = Va boolean
286 If enabled, failure to verify credentials against a local key is a
287 fatal error.
288 The application has to be able to read the corresponding service key
289 for this to work.
290 Some applications, like
291 .Xr su 1 ,
292 enable this option unconditionally.
293 .It Li warn_pwexpire = Va time
294 How soon to warn for expiring password.
295 Default is seven days.
296 .It Li http_proxy = Va proxy-spec
297 A HTTP-proxy to use when talking to the KDC via HTTP.
298 .It Li dns_proxy = Va proxy-spec
299 Enable using DNS via HTTP.
300 .It Li extra_addresses = Va address ...
301 A list of addresses to get tickets for along with all local addresses.
302 .It Li time_format = Va string
303 How to print time strings in logs, this string is passed to
304 .Xr strftime 3 .
305 .It Li date_format = Va string
306 How to print date strings in logs, this string is passed to
307 .Xr strftime 3 .
308 .It Li log_utc = Va boolean
309 Write log-entries using UTC instead of your local time zone.
310 .It Li scan_interfaces = Va boolean
311 Scan all network interfaces for addresses, as opposed to simply using
312 the address associated with the system's host name.
313 .It Li fcache_version = Va int
314 Use file credential cache format version specified.
315 .It Li fcc-mit-ticketflags = Va boolean
316 Use MIT compatible format for file credential cache.
317 It's the field ticketflags that is stored in reverse bit order for
318 older than Heimdal 0.7.
319 Setting this flag to
320 .Dv TRUE
321 makes it store the MIT way, this is default for Heimdal 0.7.
322 .It Li check-rd-req-server
323 If set to "ignore", the framework will ignore any of the server input to
324 .Xr krb5_rd_req 3 ,
325 this is very useful when the GSS-API server input the
326 wrong server name into the gss_accept_sec_context call.
327 .It Li k5login_directory = Va directory
328 Alternative location for user .k5login files. This option is provided
329 for compatibility with MIT krb5 configuration files. This path is
330 subject to percent token expansion (see TOKEN EXPANSION).
331 .It Li k5login_authoritative = Va boolean
332 If true then if a principal is not found in k5login files then
333 .Xr krb5_userok 3
334 will not fallback on principal to username mapping. This option is
335 provided for compatibility with MIT krb5 configuration files.
336 .It Li kuserok = Va rule ...
337 Specifies
338 .Xr krb5_userok 3
339 behavior.  If multiple values are given, then
340 .Xr krb5_userok 3
341 will evaluate them in order until one succeeds or all fail.  Rules are
342 implemented by plugins, with three built-in plugins
343 described below. Default: USER-K5LOGIN SIMPLE DENY.
344 .It Li kuserok = Va DENY
345 If set and evaluated then
346 .Xr krb5_userok 3
347 will deny access to the given username no matter what the principal name
348 might be.
349 .It Li kuserok = Va SIMPLE
350 If set and evaluated then
351 .Xr krb5_userok 3
352 will use principal to username mapping (see auth_to_local below).  If
353 the principal maps to the requested username then access is allowed.
354 .It Li kuserok = Va SYSTEM-K5LOGIN[:directory]
355 If set and evaluated then
356 .Xr krb5_userok 3
357 will use k5login files named after the
358 .Va luser
359 argument to
360 .Xr krb5_userok 3
361 in the given directory or in
362 .Pa /etc/k5login.d/ .
363 K5login files are text files, with each line containing just a principal
364 name; principals apearing in a user's k5login file are permitted access
365 to the user's account. Note: this rule performs no ownership nor
366 permissions checks on k5login files; proper ownership and
367 permissions/ACLs are expected due to the k5login location being a
368 system location.
369 .It Li kuserok = Va USER-K5LOGIN
370 If set and evaluated then
371 .Xr krb5_userok 3
372 will use
373 .Pa ~luser/.k5login
374 and
375 .Pa ~luser/.k5login.d/* .
376 User k5login files and directories must be owned by the user and must
377 not have world nor group write permissions.
378 .It Li aname2lname-text-db = Va filename
379 The named file must be a sorted (in increasing order) text file where
380 every line consists of an unparsed principal name optionally followed by
381 whitespace and a username.  The aname2lname function will do a binary
382 search on this file, if configured, looking for lines that match the
383 given principal name, and if found the given username will be used, or,
384 if the username is missing, an error will be returned.  If the file
385 doesn't exist, or if no matching line is found then other plugins will
386 be allowed to run.
387 .It Li fcache_strict_checking
388 strict checking in FILE credential caches that owner, no symlink and
389 permissions is correct.
390 .It Li moduli = Va FILE
391 Names a file that contains acceptable modular Diffie-Hellman
392 groups for PKINIT.
393 The given file should contain lines with whitespace-separated
394 fields in this order:
395 .Va name, nbits, p, g, q .
396 Lines starting with a
397 .Va #
398 are comments.
399 .It Li pkinit_dh_min_bits = Va NUMBER
400 PKINIT client's minimum acceptable modular Diffie-Hellman public
401 key size in bits.
402 .It Li enable-kx509 = Va boolean
403 Enable use of kx509 so that every TGT that can has a corresponding
404 PKIX certificate.  Default: false.
405 .It Li kx509_gen_key_type = Va public-key-type
406 Type of public key for kx509 private key generation.  Defaults to
407 .Va rsa
408 and currently only
409 .Va rsa
410 is supported.
411 .It Li kx509_gen_rsa_key_size = Va number-of-bits
412 RSA key size for kx509.  Defaults to 2048.
413 .It Li kx509_store = path
414 A file path into which to write a certificate obtained with
415 kx509, and its private key, when attempting kx509 optimistically
416 using credentials from a default ccache.  Tokens will be
417 expanded.
418 .It Li kx509_hostname = Va hostname
419 If set, then the kx509 client will use this hostname for the
420 kx509 service.  This can also be set in the
421 .Li [realm]
422 section on a per-realm basis.  If not set then a TGS name will be
423 used.
424 .It Li name_canon_rules = Va rules
425 One or more service principal name canonicalization rules.  Each rule
426 consists of one or more tokens separated by colon (':').  Currently
427 these rules are used only for hostname canonicalization (usually when
428 getting a service ticket, from a ccache or a TGS, but also when
429 acquiring GSS initiator credentials from a keytab).  These rules can be
430 used to implement DNS resolver-like search lists without having to use
431 DNS.
432 .Pp
433 NOTE: Name canonicalization rules are an experimental feature.
434 .Pp
435 The first token is a rule type, one of:
436 .Va as-is,
437 .Va qualify, or
438 .Va nss.
439 .Pp
440 Any remaining tokens must be options tokens:
441 .Va use_fast
442 (use FAST to protect TGS exchanges; currently not supported),
443 .Va use_dnssec
444 (use DNSSEC to protect hostname lookups; currently not supported),
445 .Va ccache_only
446 ,
447 .Va use_referrals,
448 .Va no_referrals,
449 .Va lookup_realm,
450 .Va mindots=N,
451 .Va maxdots=N,
452 .Va order=N,
453 domain=
454 .Va domain,
455 realm=
456 .Va realm,
457 match_domain=
458 .Va domain,
459 and match_realm=
460 .Va realm.
461 .Pp
462 When trying to obtain a service ticket for a host-based service
463 principal name, name canonicalization rules are applied to that name in
464 the order given, one by one, until one succeds (a service ticket is
465 obtained), or all fail.  Similarly when acquiring GSS initiator
466 credentials from a keytab, and when comparing a non-canonical GSS name
467 to a canonical one.
468 .Pp
469 For each rule the system checks that the hostname has at least
470 .Va mindots
471 periods (if given) in it, at most
472 .Va maxdots
473 periods (if given), that the hostname ends in the given
474 .Va match_domain
475 (if given),
476 and that the realm of the principal matches the
477 .Va match_realm
478 (if given).
479 .Pp
480 .Va As-is
481 rules leave the hostname unmodified but may set a realm.
482 .Va Qualify
483 rules qualify the hostname with the given
484 .Va domain
485 and also may set the realm.
486 The
487 .Va nss
488 rule uses the system resolver to lookup the host's canonical name and is
489 usually not secure.  Note that using the
490 .Va nss
491 rule type implies having to have principal aliases in the HDB (though
492 not necessarily in keytabs).
493 .Pp
494 The empty realm denotes "ask the client's realm's TGS".  The empty realm
495 may be set as well as matched.
496 .Pp
497 The order in which rules are applied is as follows: first all the rules
498 with explicit
499 .Va order
500 then all other rules in the order in which they appear.  If any two
501 rules have the same explicit
502 .Va order ,
503 their order of appearance in krb5.conf breaks the tie.  Explicitly
504 specifying order can be useful where tools read and write the
505 configuration file without preserving parameter order.
506 .Pp
507 Malformed rules are ignored.
508 .It Li allow_hierarchical_capaths = Va boolean
509 When validating cross-realm transit paths, absent any explicit capath from the
510 client realm to the server realm, allow a hierarchical transit path via the
511 common ancestor domain of the two realms.
512 Defaults to true.
513 Note, absent an explicit setting, hierarchical capaths are always used by
514 the KDC when generating a referral to a destination with which is no direct
515 trust.
516 .It Li client_aware_channel_bindings = Va boolean
517 If this flag is true, then all application protocol authentication
518 requests will be flagged to indicate that the application supports
519 channel bindings when operating over a secure channel.
520 The default value is false.
521 .It Li check_pac = Va boolean
522 If this flag is true and a Windows Privilege Attribute Certificate (PAC)
523 is present in the ticket authorization data, then
524 .Xr krb5_rd_req 3
525 will validate the PAC before returning success. The default value is true.
526 .It Li report_canonical_client_name = Va boolean
527 If this flag is true, then the canonical client name from the PAC will
528 be used instead of the client name in the ticket. The default value is false.
529 Note that setting it to true implicitly sets
530 .Va check_pac
531 to true.
532 .El
533 .It Li [domain_realm]
534 This is a list of mappings from DNS domain to Kerberos realm.
535 .Pp
536 It is used by the client and the TGS both to determine the realm
537 of host-based service principal names based on the principal's
538 hostname component.
539 .Pp
540 The client may try DNS to determine a host's realm; see the
541 `dns_lookup_realm' parameter, and see below.
542 .Pp
543 The TGS will issue a referral when a host-based service does not
544 exist in the requested realm but can be mapped with these rules
545 to a different realm.
546 The TGS will also issue a referral when a host-based service
547 exists in the requested realm as an alias of a service in another
548 realm.
549 .Pp
550 Each binding in this section looks like:
551 .Pp
552 .Dl domain = realm
553 .Pp
554 The domain can be either a full name of a host or a trailing
555 component, in the latter case the domain-string should start with a
556 period.
557 The trailing component only matches hosts that are in the same domain, ie
558 .Dq .example.com
559 matches
560 .Dq foo.example.com ,
561 but not
562 .Dq foo.test.example.com .
563 .Pp
564 The realm may be the token `dns_locate', in which case the actual
565 realm will be determined using DNS (independently of the setting
566 of the `dns_lookup_realm' option).
567 .It Li [realms]
568 .Bl -tag -width "xxx" -offset indent
569 .It Va REALM Li = {
570 .Bl -tag -width "xxx" -offset indent
571 .It Li kdc = Va [service/]host[:port]
572 Specifies a list of kdcs for this realm.
573 If the optional
574 .Va port
575 is absent, the
576 default value for the
577 .Dq kerberos/udp
578 .Dq kerberos/tcp ,
579 and
580 .Dq http/tcp
581 port (depending on service) will be used.
582 The kdcs will be used in the order that they are specified.
583 .Pp
584 The optional
585 .Va service
586 specifies over what medium the kdc should be
587 contacted.
588 Possible services are
589 .Dq udp ,
590 .Dq tcp ,
591 and
592 .Dq http .
593 Http can also be written as
594 .Dq http:// .
595 Default service is
596 .Dq udp
597 and
598 .Dq tcp .
599 .It Li admin_server = Va host[:port]
600 Specifies the admin server for this realm, where all the modifications
601 to the database are performed.
602 .It Li kpasswd_server = Va host[:port]
603 Points to the server where all the password changes are performed.
604 If there is no such entry, the kpasswd port on the admin_server host
605 will be tried.
606 .It Li tgs_require_subkey
607 a boolan variable that defaults to false.
608 Old DCE secd (pre 1.1) might need this to be true.
609 .It Li auth_to_local_names = {
610 .Bl -tag -width "xxx" -offset indent
611 .It Va principal_name = Va username
612 The given
613 .Va principal_name
614 will be mapped to the given
615 .Va username
616 if the
617 .Va REALM
618 is a default realm.
619 .El
620 .It Li }
621 .It Li auth_to_local = HEIMDAL_DEFAULT
622 Use the Heimdal default principal to username mapping.
623 Applies to principals from the
624 .Va REALM
625 if and only if
626 .Va REALM
627 is a default realm.
628 .It Li auth_to_local = DEFAULT
629 Use the MIT default principal to username mapping.
630 Applies to principals from the
631 .Va REALM
632 if and only if
633 .Va REALM
634 is a default realm.
635 .It Li auth_to_local = DB:/path/to/db.txt
636 Use a binary search of the given DB.  The DB must be a flat-text
637 file sortedf in the "C" locale, with each record being a line
638 (separated by either LF or CRLF) consisting of a principal name
639 followed by whitespace followed by a username.
640 Applies to principals from the
641 .Va REALM
642 if and only if
643 .Va REALM
644 is a default realm.
645 .It Li auth_to_local = DB:/path/to/db
646 Use the given DB, if there's a plugin for it.
647 Applies to principals from the
648 .Va REALM
649 if and only if
650 .Va REALM
651 is a default realm.
652 .It Li auth_to_local = RULE:...
653 Use the given rule, if there's a plugin for it.
654 Applies to principals from the
655 .Va REALM
656 if and only if
657 .Va REALM
658 is a default realm.
659 .It Li auth_to_local = NONE
660 No additional principal to username mapping is done. Note that
661 .Va auth_to_local_names
662 and any preceding
663 .Va auth_to_local
664 rules have precedence.
665 .It Li pkinit_require_eku = BOOL
666 If
667 .Va true
668 then the KDC PKINIT Extended Key Usage (EKU) OID (1.3.6.5.2.3.5)
669 must be present in KDCs' PKINIT certificates.
670 Defaults to
671 .Va true .
672 .It Li pkinit_require_krbtgt_otherName = BOOL
673 If
674 .Va true
675 then the PKINIT Subject Alternative Name (SAN) for the TGS must
676 be present in KDCs' PKINIT certificates, and must match their
677 realm.
678 Defaults to
679 .Va true .
680 .It Li pkinit_require_hostname_match = BOOL
681 If
682 .Va true
683 then KDCs' PKINIT certificates must match their hostnames.
684 Defaults to
685 .Va false .
686 .It Li pkinit_trustedCertifiers = BOOL
687 If
688 .Va true
689 then PKINIT client will tell KDCs which trust anchors it trusts.
690 Defaults to
691 .Va true .
692 .It Li disable_pac = BOOL
693 If
694 .Va true
695 then the KDC will not sign tickets with PAC, which disables S4U2Proxy support.
696 Defaults to
697 .Va false .
698 .El
699 .It Li }
700 .El
701 .It Li [capaths]
702 .Bl -tag -width "xxx" -offset indent
703 .It Va client-realm Li = {
704 .Bl -tag -width "xxx" -offset indent
705 .It Va server-realm Li = Va hop-realm ...
706 This serves two purposes. First the first listed
707 .Va hop-realm
708 tells a client which realm it should contact in order to ultimately
709 obtain credentials for a service in the
710 .Va server-realm .
711 Secondly, it tells the KDC (and other servers) which realms are
712 allowed in a multi-hop traversal from
713 .Va client-realm
714 to
715 .Va server-realm .
716 Except for the client case, the order of the realms are not important.
717 .El
718 .It Va }
719 .El
720 .It Li [logging]
721 .Bl -tag -width "xxx" -offset indent
722 .It Va entity Li = Va destination
723 Specifies that
724 .Va entity
725 should use the specified
726 .Li destination
727 for logging.
728 See the
729 .Xr krb5_openlog 3
730 manual page for a list of defined destinations.
731 .El
732 .It Li [kdc]
733 .Bl -tag -width "xxx" -offset indent
734 .It Li database Li = {
735 .Bl -tag -width "xxx" -offset indent
736 .It Li dbname Li = Va [DATBASETYPE:]DATABASENAME
737 Use this database for this realm.  The
738 .Va DATABASETYPE
739 should be one of 'lmdb', 'db3', 'db1', 'db', 'sqlite', or 'ldap'.
740 See the info documetation how to configure different database backends.
741 .It Li realm Li = Va REALM
742 Specifies the realm that will be stored in this database.
743 It realm isn't set, it will used as the default database, there can
744 only be one entry that doesn't have a
745 .Li realm
746 stanza.
747 .It Li mkey_file Li = Pa FILENAME
748 Use this keytab file for the master key of this database.
749 If not specified
750 .Va DATABASENAME Ns .mkey
751 will be used.
752 .It Li acl_file Li = PA FILENAME
753 Use this file for the ACL list of this database.
754 .It Li log_file Li = Pa FILENAME
755 Use this file as the log of changes performed to the database.
756 This file is used by
757 .Nm ipropd-master
758 for propagating changes to slaves.  It is also used by
759 .Nm kadmind
760 and
761 .Nm kadmin
762 (when used with the
763 .Li -l
764 option), and by all applications using
765 .Nm libkadm5
766 with the local backend, for two-phase commit functionality.  Slaves also
767 use this.  Setting this to
768 .Nm /dev/null
769 disables two-phase commit and incremental propagation.  Use
770 .Nm iprop-log
771 to show the contents of this log file.
772 .It Li log-max-size = Pa number
773 When the log reaches this size (in bytes), the log will be truncated,
774 saving some entries, and keeping the latest version number so as to not
775 disrupt incremental propagation.  If set to a negative value then
776 automatic log truncation will be disabled.  Defaults to 52428800 (50MB).
777 .El
778 .It Li }
779 .It Li max-request = Va SIZE
780 Maximum size of a kdc request.
781 .It Li require-preauth = Va BOOL
782 If set pre-authentication is required.
783 .It Li ports = Va "list of ports"
784 List of ports the kdc should listen to.
785 .It Li addresses = Va "list of interfaces"
786 List of addresses the kdc should bind to.
787 .It Li enable-http = Va BOOL
788 Should the kdc answer kdc-requests over http.
789 .It Li tgt-use-strongest-session-key = Va BOOL
790 If this is TRUE then the KDC will prefer the strongest key from the
791 client's AS-REQ or TGS-REQ enctype list for the ticket session key that
792 is supported by the KDC and the target principal when the target
793 principal is a krbtgt principal.  Else it will prefer the first key from
794 the client's AS-REQ enctype list that is also supported by the KDC and
795 the target principal.  Defaults to FALSE.
796 .It Li svc-use-strongest-session-key = Va BOOL
797 Like tgt-use-strongest-session-key, but applies to the session key
798 enctype of tickets for services other than krbtgt principals. Defaults
799 to FALSE.
800 .It Li preauth-use-strongest-session-key = Va BOOL
801 If TRUE then select the strongest possible enctype from the client's
802 AS-REQ for PA-ETYPE-INFO2 (i.e., for password-based pre-authentication).
803 Else pick the first supported enctype from the client's AS-REQ.  Defaults
804 to FALSE.
805 .It Li use-strongest-server-key = Va BOOL
806 If TRUE then the KDC picks, for the ticket encrypted part's key, the
807 first supported enctype from the target service principal's hdb entry's
808 current keyset. Else the KDC picks the first supported enctype from the
809 target service principal's hdb entry's current keyset.  Defaults to TRUE.
810 .It Li check-ticket-addresses = Va BOOL
811 Verify the addresses in the tickets used in tgs requests.
812 .\" XXX
813 .It Li warn_ticket_addresses = Va BOOL
814 Warn about, but allow, usage of tickets from hosts that don't match the
815 addresses in the tickets.
816 .It Li allow-null-ticket-addresses = Va BOOL
817 Allow address-less tickets.
818 .\" XXX
819 .It Li enable_armored_pa_enc_timestamp = Va BOOL
820 Enable armored encrypted timestamp pre-authentication with key
821 strengthening.
822 RFC 6113 says not to use PA-ENC-TIMESTAMP in FAST armored tunnels
823 as there is a newer replacement, PA-ENC-CHALLENGE, but for
824 interoperability with earlier versions of Heimdal, this is
825 enabled by default for now.
826 .It Li enable_unarmored_pa_enc_timestamp = Va BOOL
827 Enable unarmored encrypted timestamp pre-authentication.
828 Enabled by default for now, but in a future release will be
829 disabled.
830 .It Li enable-pkinit = Va BOOL
831 Enable PKINIT (disabled by default).
832 .It Li allow-anonymous = Va BOOL
833 If the kdc is allowed to hand out anonymous tickets.
834 .It Li synthetic_clients = Va BOOL
835 If enabled then the KDC will issue tickets for clients that don't
836 exist in the HDB provided that they use PKINIT, that PKINIT is
837 enabled, and that the client's have certificates with PKINIT
838 subject alternative names (SANs).
839 .It Li synthetic_clients_max_life = Va TIME
840 Maximum ticket lifetime for synthetic clients.
841 Default: 5 minutes.
842 .It Li synthetic_clients_max_renew = Va TIME
843 Maximum ticket renewable lifetime for synthetic clients.
844 Default: 5 minutes.
845 .It Li pkinit_identity = Va HX509-STORE
846 This is an HX509 store containing the KDC's PKINIT credential
847 (private key and end-entity certificate).
848 This is single valued, though multiple stores can be specified by
849 separating them with commas.
850 An
851 .Va HX509-STORE
852 is of the form
853 .Va TYPE:name
854 where
855 .Va TYPE
856 is one of
857 .Va FILE, Va PEM-FILE, Va DER-FILE, Va PKCS12, Va PKCS11,
858 or on OX X,
859 .Va KEYCHAIN .
860 The form of the
861 .Va name
862 depends on the
863 .Va TYPE .
864 For
865 .Va FILE, Va PEM-FILE, Va DER-FILE,
866 and
867 .Va PKCS12
868 the
869 .Va name
870 is a file path.
871 See the Heimdal hx509 documentation for more information.
872 .It Li pkinit_pool = Va HX509-STORE
873 This is a multi-valued parameter naming one or more stores of
874 intermediate certification authority (CA) certificates for the
875 KDC's end entity certificate.
876 .It Li pkinit_anchors = Va HX509-STORE
877 This is a multi-valued parameter naming one or more stores of
878 anchors for PKINIT client certificates.
879 Note that the
880 .Va DIR
881 type of
882 .Va HX509-STORE
883 is also supported here.
884 .Va DIR
885 type stores are OpenSSL-style CA certificate hash directories.
886 .It Li pkinit_kdc_ocsp = Va PATH
887 This names a file whose contents is the DER encoding of an
888 OCSPResponse for the KDC's end entity certificate.
889 .It Li pkinit_kdc_friendly_name = Va NAME
890 This is an optional friendly name of the KDC's end entity
891 certificate.
892 This is only helpful when the
893 .Li pkinit_identity
894 store contains many credentials.
895 .It Li pkinit_principal_in_certificate = Va BOOL
896 If set to
897 .Va true
898 then the KDC will match AS-REQ client principal names to the
899 PKINIT
900 .Va subjectAlternativeName
901 values from the clients' certificates.
902 Defaults to
903 .Va true .
904 .It Li pkinit_dh_min_bits = Va NUMBER
905 Minimum acceptable modular Diffie-Hellman public key size in
906 bits.
907 .It Li pkinit_max_life_from_cert_extension = Va BOOL
908 If set to
909 .Va true
910 then the KDC will override the
911 .Va max_life
912 attribute of the client principal's HDB record with a maximum
913 ticket life taken from a certificate extension with OID
914 .Va { iso(1) member-body(2) se(752) su(43) heim-pkix(16) 4 }
915 and the DER encoding of an
916 .Va INTEGER
917 number of seconds.
918 Alternatively, if the extended key usage OID
919 .Va { iso(1) member-body(2) se(752) su(43) heim-pkix(16) 3 }
920 is included in the client's certificate, then the
921 .Va notAfter
922 minus the current time will be used.
923 .It Li pkinit_max_life_bound = Va TIME
924 If set, this will be a hard bound on the maximum ticket lifetime
925 taken from the client's certificate.
926 As usual,
927 .Va TIME
928 can be given as a number followed by a unit, such as
929 .Dq 2d
930 for
931 .Dq two days .
932 .It Li pkinit_max_life_from_cert = Va TIME
933 If set, this will override the
934 .Va max_life
935 attribute of the client principal's HDB record with the
936 .Va notAfter
937 of the client's certificate minus the current time, bounded to
938 the given relative
939 .Va TIME
940 unless the
941 .Li pkinit_max_life_from_cert_extension
942 parameter is set and the client's certificate has that extension.
943 As usual,
944 .Va TIME
945 can be given as a number followed by a unit, such as
946 .Dq 2d
947 for
948 .Dq two days .
949 .It Li enable_gss_preauth = Va boolean
950 Enables pre-authentication using a GSS-API mechanism supported by the client and KDC.
951 The GSS-API initiator and AS request client names must match, unless the
952 .Li WELLKNOWN/FEDERATED
953 name was used in the AS request, in which case the AS reply will contain the
954 GSS-API initiator name. Authorization and mapping behavior may be customized
955 by plugins. If synthetic clients are enabled, then the GSS-API initiator need
956 not exist in the local database. GSS-API pre-authentication is disabled by
957 default.
958 .It Li enable_gss_auth_data = Va boolean
959 When using GSS-API pre-authentication, includes a Kerberos authorization data
960 element containing naming attributes associated with the GSS-API initiator. This
961 is disabled by default as it may significantly increase the size of returned
962 tickets.
963 .It Li gss_mechanisms_allowed = Va mechs ...
964 A list of GSS-API mechanisms that may be used for GSS-API pre-authentication.
965 .It Li gss_cross_realm_mechanisms_allowed = Va mechs ...
966 A list of GSS-API mechanisms that, when using the default authorization
967 mechanism, will be permitted to map Kerberos principals in foreign realms. The
968 list is empty by default. Initiator names from mechanisms not on this list will
969 be mapped to an enterprise principal in the AS-REQ realm. This option is
970 intended to avoid conflating GSS-API pre-authentication and Kerberos
971 cross-realm authentication. The behavior is provided by the default
972 authorization mechanism and will be overridden by an authorization plugin.
973 Mechanisms may be identified by dot-separated OID or a short name.
974 .It Li historical_anon_realm = Va boolean
975 Enables pre-7.0 non-RFC-comformant KDC behavior.
976 With this option set to
977 .Li true
978 the client realm in anonymous pkinit AS replies will be the requested realm,
979 rather than the RFC-conformant
980 .Li WELLKNOWN:ANONYMOUS
981 realm.
982 This can have a security impact on servers that expect to grant access to
983 anonymous-but-authenticated to the KDC users of the realm in question:
984 they would also grant access to unauthenticated anonymous users.
985 As such, it is not recommend to set this option to
986 .Li true.
987 .It Li encode_as_rep_as_tgs_rep = Va BOOL
988 Encode as-rep as tgs-rep to be compatible with mistakes older DCE secd did.
989 .\" XXX
990 .It Li kdc_warn_pwexpire = Va TIME
991 The time before expiration that the user should be warned that her
992 password is about to expire.
993 .It Li logging = Va Logging
994 What type of logging the kdc should use, see also [logging]/kdc.
995 .It Li hdb-ldap-structural-object Va structural object
996 If the LDAP backend is used for storing principals, this is the
997 structural object that will be used when creating and when reading
998 objects.
999 The default value is account .
1000 .It Li hdb-ldap-create-base Va creation dn
1001 is the dn that will be appended to the principal when creating entries.
1002 Default value is the search dn.
1003 .It Li enable-digest = Va BOOL
1004 Should the kdc answer digest requests. The default is FALSE.
1005 .It Li digests_allowed = Va list of digests
1006 Specifies the digests the kdc will reply to. The default is
1007 .Li ntlm-v2 .
1008 .It Li enable-kx509 = Va boolean
1009 Enables kx509 service.
1010 .Pp
1011 The kx509 service is configurable for a number of cases:
1012 .Bl -tag -width "" -offset indent
1013 .It Li default certificates for user or service principals,
1014 .It Li non-default certificate requests including subject alternative names (SAN) and extended key usage (EKU) certificate extensions, for either client, server, or mixed usage.
1015 .El
1016 .Pp
1017 Distinct configurations are supported for all of these cases as
1018 shown below:
1019 .Bd -literal -offset indent
1020 [kdc]
1021     enable-kx509 = yes | no
1022     require_csr  = yes | no
1023     require_initial_kca_tickets = yes | no
1024     realm = {
1025         <REALM> = {
1026             kx509 = {
1027                 <label> = {
1028                     <param> = <value>
1029                 }
1030                 hostbased_service = {
1031                     <service> = {
1032                         <param> = <value>
1033                     }
1034                 }
1035             }
1036         }
1037     }
1038 .Ed
1039 where
1040 .Va label
1041 is one of:
1042 .Bl -tag -width "xxx" -offset indent
1043 .It Li user
1044 for default certificates for user principals,
1045 .It Li root_user
1046 for default certificates for root user principals,
1047 .It Li admin_user
1048 for default certificates for admin user principals,
1049 .It Li hostbased_service
1050 for default certificates for host-based service principals, in which case the
1051 service name is used as shown above,
1052 .It Li client
1053 for non-default client certificates,
1054 .It Li server
1055 for non-default server certificates,
1056 .It Li mixed
1057 for non-default client and server certificates.
1058 .El
1059 and where the parameters are as follows:
1060 .Bl -tag -width "xxx" -offset indent
1061 .It Li ca = Va file
1062 Specifies the PEM credentials for the kx509 / bx509d certification
1063 authority.
1064 If not specified for any specific use-case, then that use-case
1065 will be disabled.
1066 .It Li max_cert_lifetime = Va NUMunit
1067 Specifies the maximum certificate lifetime as a decimal number
1068 and an optional unit (the default unit is
1069 .Dq day
1070 ).
1071 .It Li force_cert_lifetime = Va NUMunit
1072 Specifies a minimum certificate lifetime as a decimal number and
1073 an optional unit (the default unit is
1074 .Dq day
1075 ).
1076 .It Li allow_extra_lifetime = Va boolean
1077 Indicates whether a client may request longer lifetimes than
1078 their authentication credentials.
1079 Defaults to false.
1080 If a
1081 .Li force_cert_lifetime
1082 is specified, then
1083 .Li allow_extra_lifetime
1084 is implicitly forced to
1085 .Va true .
1086 .It Li require_initial_kca_tickets = Va boolean
1087 Specified whether to require that tickets for the
1088 .Li kca_service
1089 service principal be INITIAL.
1090 This may be set on a per-realm basis as well as globally.
1091 Defaults to true for the global setting.
1092 .It Li include_pkinit_san = Va boolean
1093 If true then the kx509 client principal's name and realm will be
1094 included in an
1095 .Li id-pkinit-san
1096 subject alternative name certificate extension.
1097 This can be set on a per-realm basis as well as globally.
1098 Defaults to true for the global setting.
1099 .It Li email_domain = Va domain
1100 If set then the kx509 client user principal's name at the given
1101 domain will be included in an
1102 .Li rfc822Name
1103 subject alternative name certificate extension.
1104 This can be set on a per-realm basis as well as globally.
1105 Defaults to false for the global setting.
1106 .It Li include_dnsname_san = Va boolean
1107 If true then a kx509 host-based or domain-based client
1108 principal's hostname will be included in an
1109 .Li dNSName
1110 subject alternative name certificate extension, with the
1111 downcased realm as the domainname.  This can be set on a
1112 per-realm basis as well as
1113 globally.  Defaults to false for the global setting.
1114 .It Li ekus = Va OID
1115 List of OIDs to include as EKUs.
1116 .It Li subject_name = Va DN
1117 Specifies a subject name that should either be empty or contain
1118 variable interpolation as described below for
1119 .Va template_cert .
1120 The subject may be the empty string, causing the issued
1121 certificates' subject names to be empty.
1122 .It Li template_cert = Va store
1123 Specifies the hx509 store (e.g.,
1124 .Va PEM-FILE:path )
1125 with a template
1126 for the certificates to be issued to kx509 clients whose
1127 principal names have one component (i.e., are user principals).
1128 A template is a certificate with variables to be interpolated in
1129 the subjectName.  The following variables can be interpolated in
1130 the subject name using
1131 .Va ${variable}
1132 syntax:
1133 .Bl -tag -width "xxx" -offset indent
1134 .It principal-name
1135 The full name of the kx509 client principal.
1136 .It principal-name-without-realm
1137 The full name of the kx509 client principal, excluding the realm name.
1138 .It principal-name-realm
1139 The name of the client principal's realm.
1140 .It principal-component0
1141 The first component of the client principal.
1142 .It principal-component1
1143 The second component of the client principal.
1144 .It principal-component2
1145 The third component of the client principal.
1146 .It principal-service-name
1147 The name of the service.
1148 .It principal-host-name
1149 The name of the host.
1150 .El
1151 .Pp
1152 If a template and subject name are not specified and no default
1153 SANs are configured, then no certificate will be issued.
1154 Otherwise if a template and subject name are not specified, then
1155 subject of the certificate will be empty.
1156 .El
1157 .El
1158 .Pp
1159 .It Li [hdb]
1160 .Bl -tag -width "xxx" -offset indent
1161 .It Li db-dir = Va path
1162 This parameter defines a directory that can contain:
1163 .Bl -tag -width "xxx" -offset indent
1164 .It Va kdc.conf
1165 A configuration file with the same format as krb5.conf that will
1166 be included.
1167 .It Va m-key
1168 The master key file.
1169 .It Va kdc.log
1170 The default logfile for the KDC when a logfile is not specified in
1171 .Li [logging]
1172 .It Va kadm5.acl
1173 The access controls for
1174 .Nm kadmind .
1175 .It Va log
1176 The (binary) log of transactions used for
1177 .Nm HDB
1178 replication via the
1179 .Nm iprop
1180 protocol.
1181 See
1182 .Nm iprop-log(1)
1183 for more detail.
1184 .It Va pki-mapping
1185 The default PKINIT mapping file if one is not specified in
1186 .Va [kdc] pkinit_mappings_file .
1187 .El
1188 and other files related to
1189 .Nm iprop
1190 operation.
1191 .It Li new_service_key_delay = Va time
1192 Sets a bias such that new keys are not taken into service until
1193 after the given time has passed since they were set.
1194 This is useful for key rotation on concrete principals shared by
1195 multiple instances of an application: set this time to twice or
1196 more the keytab fetch period used by applications.
1197 .It Li enable_virtual_hostbased_princs = Va boolean
1198 Heimdal supports a notion of virtual host-based service
1199 principals whose keys are derived from those of a base namespace
1200 principal of the form
1201 .Nm WELLKNOWN/HOSTBASED-NAMESPACE/svc/hostname .
1202 The service name can be wild-carded as
1203 .Va _ .
1204 Non-wildcarded services have to be listed in the
1205 .Li virtual_hostbased_princ_svcs
1206 parameter (see below).
1207 This parameter enables this feature, which is disabled by
1208 default.
1209 .It Li virtual_hostbased_princ_ndots = Va Integer
1210 Minimum number of label-separating periods in virtual host-based
1211 service principals' hostname component.
1212 .It Li virtual_hostbased_princ_maxdots = Va Integer
1213 Maximum number of label-separating periods in namespaces'
1214 hostname component.
1215 .It Li virtual_hostbased_princ_svcs = Va service-name
1216 This multi-valued parameter lists service names not to wildcard
1217 when searching for a namespace for a virtual host-based service
1218 principal.
1219 Other service names will have keys derived from a matching
1220 namespace with a wild-carded service name.
1221 This allows one to have different attributes for different
1222 services.
1223 For example, the
1224 .Nm "host"
1225 service can be configured to have the ok-as-delegate flag while
1226 all others do not.
1227 .El
1228 .Pp
1229 .It Li [bx509]
1230 This section contains online certification authority configuration, much
1231 like
1232 .Li kx509
1233 in the
1234 .Li [kdc]
1235 section, but with the
1236 .Li kx509
1237 layer removed.
1238 .Bd -literal -offset indent
1239 [kdc]
1240     realm = {
1241         <REALM> = {
1242             ...
1243         }
1244     }
1245 .Ed
1246 .It Li [get-tgt]
1247 .Bl -tag -width "xxx" -offset indent
1248 .It Li no_addresses = Va BOOL
1249 If set to
1250 .Va true
1251 then the
1252 .Va /get-tgt
1253 end-point of the
1254 .Xr bx509d 8
1255 service will issue address-less TGTs.
1256 If set to
1257 .Va false
1258 then the
1259 .Va /get-tgt
1260 end-point of the
1261 .Xr bx509d 8
1262 service will include the client's IP address in the TGT it issues
1263 it.
1264 Defaults to
1265 .Va true .
1266 .It Li allow_addresses = Va BOOL
1267 If set to
1268 .Va true
1269 then the
1270 .Va /get-tgt
1271 end-point of the
1272 .Xr bx509d 8
1273 service will add arbitrary addresses requested by clients to the
1274 TGTs it issues them.
1275 Defaults to
1276 .Va false .
1277 .El
1278 .Pp
1279 Certification authority related parameters are as for
1280 .Va bx509 .
1281 .It Li [kadmin]
1282 .Bl -tag -width "xxx" -offset indent
1283 .It Li password_lifetime = Va time
1284 If a principal already have its password set for expiration, this is
1285 the time it will be valid for after a change.
1286 .It Li default_keys = Va keytypes...
1287 For each entry in
1288 .Va default_keys
1289 try to parse it as a sequence of
1290 .Va etype:salttype:salt
1291 syntax of this if something like:
1292 .Pp
1293 [(des|des3|etype):](pw-salt|afs3-salt)[:string]
1294 .Pp
1295 If
1296 .Ar etype
1297 is omitted it means everything, and if string is omitted it means the
1298 default salt string (for that principal and encryption type).
1299 Additional special values of keytypes are:
1300 .Bl -tag -width "xxx" -offset indent
1301 .It Li v5
1302 The Kerberos 5 salt
1303 .Va pw-salt
1304 .El
1305 .It Li default_key_rules = Va {
1306 .Bl -tag -width "xxx" -offset indent
1307 .It Va globing-rule Li = Va keytypes...
1308 a globbing rule to matching a principal, and when true, use the
1309 keytypes as specified the same format as [kadmin]default_keys .
1310 .El
1311 .It Li }
1312 .It Li prune-key-history = Va BOOL
1313 When adding keys to the key history, drop keys that are too old to match
1314 unexpired tickets (based on the principal's maximum ticket lifetime).
1315 If the KDC keystore is later compromised traffic protected with the
1316 discarded older keys may remain protected.  This also keeps the HDB
1317 records for principals with key history from growing without bound.
1318 The default (backwards compatible) value is "false".
1319 .It Li use_v4_salt = Va BOOL
1320 When true, this is the same as
1321 .Pp
1322 .Va default_keys = Va des3:pw-salt Va v4
1323 .Pp
1324 and is only left for backwards compatibility.
1325 .It Li [password_quality]
1326 Check the Password quality assurance in the info documentation for
1327 more information.
1328 .Bl -tag -width "xxx" -offset indent
1329 .It Li check_library = Va library-name
1330 Library name that contains the password check_function
1331 .It Li check_function = Va function-name
1332 Function name for checking passwords in check_library
1333 .It Li policy_libraries = Va library1 ... libraryN
1334 List of libraries that can do password policy checks
1335 .It Li policies = Va policy1 ... policyN
1336 List of policy names to apply to the password. Builtin policies are
1337 among other minimum-length, character-class, external-check.
1338 .El
1339 .El
1340 .El
1341 .Sh TOKEN EXPANSION
1342 The values of some parameters are subject to percent token expansion.
1343 Expansions supported on all platforms:
1344 .Bl -tag -width "xxx" -offset indent
1345 .It %{LIBDIR}
1346 The install location of Heimdal libraries.
1347 .It %{BINDIR}
1348 The install location of Heimdal user programs.
1349 .It %{LIBEXEC}
1350 The install location of Heimdal services.
1351 .It %{SBINDIR}
1352 The install location of Heimdal admin programs.
1353 .It %{username}
1354 The current username.
1355 .It %{TEMP}
1356 A temporary directory.
1357 .It %{USERID}
1358 The current user's SID (Windows) or effective user ID (POSIX).
1359 .It %{uid}
1360 The current user's SID (Windows) or real user ID (POSIX).  On POSIX it is best
1361 to use the
1362 .Va %{euid}
1363 token instead (see below).
1364 .It %{null}
1365 The empty string.
1366 .El
1367 .Pp
1368 Expansions supported on POSIX-like platforms:
1369 .Bl -tag -width "xxx" -offset indent
1370 .It %{euid}
1371 The current effective user ID.
1372 .It %{loginname}
1373 The username of the logged-in user for this terminal.
1374 .It %{LOCALSTATEDIR}
1375 The install location of Heimdal databases.
1376 .El
1377 .Pp
1378 On Windows, several additional tokens can also be expanded:
1379 .Bl -tag -width "xxx" -offset indent
1380 .It %{APPDATA}
1381 Roaming application data (for current user).
1382 .It %{COMMON_APPDATA}
1383 Application data (all users).
1384 .It %{LOCAL_APPDATA}
1385 Local application data (for current user).
1386 .It %{SYSTEM}
1387 Windows System folder.
1388 .It %{WINDOWS}
1389 Windows folder.
1390 .It %{USERCONFIG}
1391 Per user Heimdal configuration file path.
1392 .It %{COMMONCONFIG}
1393 Common Heimdal configuration file path.
1394 .El
1395 .Sh ENVIRONMENT
1396 .Ev KRB5_CONFIG
1397 points to the configuration file to read.
1398 .Sh FILES
1399 .Bl -tag -width "/etc/krb5.conf"
1400 .It Pa /etc/krb5.conf
1401 configuration file for Kerberos 5.
1402 .El
1403 .Sh EXAMPLES
1404 .Bd -literal -offset indent
1405 [libdefaults]
1406         default_realm = FOO.SE
1407         name_canon_rules = as-is:realm=FOO.SE
1408         name_canon_rules = qualify:domain=foo.se:realm=FOO.SE
1409         name_canon_rules = qualify:domain=bar.se:realm=FOO.SE
1410         name_canon_rules = nss
1411 [domain_realm]
1412         .foo.se = FOO.SE
1413         .bar.se = FOO.SE
1414 [realms]
1415         FOO.SE = {
1416                 kdc = kerberos.foo.se
1417                 default_domain = foo.se
1418         }
1419 [logging]
1420         kdc = FILE:/var/heimdal/kdc.log
1421         kdc = SYSLOG:INFO
1422         default = SYSLOG:INFO:USER
1423 [kadmin]
1424         default_key_rules = {
1425                 */ppp@* = arcfour-hmac-md5:pw-salt
1426         }
1427 .Ed
1428 .Sh DIAGNOSTICS
1429 Since
1430 .Nm
1431 is read and parsed by the krb5 library, there is not a lot of
1432 opportunities for programs to report parsing errors in any useful
1433 format.
1434 To help overcome this problem, there is a program
1435 .Nm verify_krb5_conf
1436 that reads
1437 .Nm
1438 and tries to emit useful diagnostics from parsing errors.
1439 Note that this program does not have any way of knowing what options
1440 are actually used and thus cannot warn about unknown or misspelled
1441 ones.
1442 .Sh SEE ALSO
1443 .Xr kinit 1 ,
1444 .Xr krb5_openlog 3 ,
1445 .Xr strftime 3 ,
1446 .Xr verify_krb5_conf 8