resurrect password change support again
[heimdal.git] / lib / krb5 / krb5.conf.5
bloba638cf1675b36e95b6c93296c19543520324996f
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
58 sections:
59         section sections
60         section
62 section:
63         '[' section_name ']' bindings
65 section_name:
66         STRING
68 bindings:
69         binding bindings
70         binding
72 binding:
73         name '=' STRING
74         name '=' '{' bindings '}'
76 name:
77         STRING
79 .Ed
80 .Li STRINGs
81 consists of one or more non-whitespace characters.
82 .Pp
83 STRINGs that are specified later in this man-page uses the following
84 notation.
85 .Bl -tag -width "xxx" -offset indent
86 .It boolean
87 values can be either yes/true or no/false.
88 .It time
89 values can be a list of year, month, day, hour, min, second.
90 Example: 1 month 2 days 30 min.
91 If no unit is given, seconds is assumed.
92 .It etypes
93 valid encryption types are: des-cbc-crc, des-cbc-md4, des-cbc-md5,
94 des3-cbc-sha1, arcfour-hmac-md5, aes128-cts-hmac-sha1-96, and
95 aes256-cts-hmac-sha1-96 .
96 .It address
97 an address can be either a IPv4 or a IPv6 address.
98 .El
99 .Pp
100 Currently recognised sections and bindings are:
101 .Bl -tag -width "xxx" -offset indent
102 .It Li [appdefaults]
103 Specifies the default values to be used for Kerberos applications.
104 You can specify defaults per application, realm, or a combination of
105 these.
106 The preference order is:
107 .Bl -enum -compact
109 .Va application Va realm Va option
111 .Va application Va option
113 .Va realm Va option
115 .Va option
118 The supported options are:
119 .Bl -tag -width "xxx" -offset indent
120 .It Li forwardable = Va boolean
121 When obtaining initial credentials, make the credentials forwardable.
122 .It Li proxiable = Va boolean
123 When obtaining initial credentials, make the credentials proxiable.
124 .It Li no-addresses = Va boolean
125 When obtaining initial credentials, request them for an empty set of
126 addresses, making the tickets valid from any address.
127 .It Li ticket_lifetime = Va time
128 Default ticket lifetime.
129 .It Li renew_lifetime = Va time
130 Default renewable ticket lifetime.
131 .It Li encrypt = Va boolean
132 Use encryption, when available.
133 .It Li forward = Va boolean
134 Forward credentials to remote host (for
135 .Xr rsh 1 ,
136 .Xr telnet 1 ,
137 etc).
139 .It Li [libdefaults]
140 .Bl -tag -width "xxx" -offset indent
141 .It Li default_realm = Va REALM
142 Default realm to use, this is also known as your
143 .Dq local realm .
144 The default is the result of
145 .Fn krb5_get_host_realm "local hostname" .
146 .It Li allow_weak_crypto = Va boolean
147 is weaks crypto algorithms allowed to be used, among others, DES is
148 considered weak.
149 .It Li clockskew = Va time
150 Maximum time differential (in seconds) allowed when comparing
151 times.
152 Default is 300 seconds (five minutes).
153 .It Li kdc_timeout = Va time
154 Maximum time to wait for a reply from the kdc, default is 3 seconds.
155 .It Li capath = {
156 .Bl -tag -width "xxx" -offset indent
157 .It Va destination-realm Li = Va next-hop-realm
158 .It ...
159 .It Li }
161 This is deprecated, see the
162 .Li capaths
163 section below.
164 .It Li default_cc_type = Va cctype
165 sets the default credentials type.
166 .It Li default_cc_name = Va ccname
167 the default credentials cache name.
168 If you want to change the type only use
169 .Li default_cc_type .
170 The string can contain variables that are expanded on runtime.
171 Only support variable now is
172 .Li %{uid}
173 that expands to the current user id.
174 .It Li default_etypes = Va etypes ...
175 A list of default encryption types to use. (Default: all enctypes if
176 allow_weak_crypto = TRUE, else all enctypes except single DES enctypes.)
177 .It Li default_as_etypes = Va etypes ...
178 A list of default encryption types to use in AS requests.  (Default: the
179 value of default_etypes.)
180 .It Li default_tgs_etypes = Va etypes ...
181 A list of default encryption types to use in TGS requests.  (Default:
182 the value of default_etypes.)
183 .It Li default_etypes_des = Va etypes ...
184 A list of default encryption types to use when requesting a DES credential.
185 .It Li default_keytab_name = Va keytab
186 The keytab to use if no other is specified, default is
187 .Dq FILE:/etc/krb5.keytab .
188 .It Li dns_lookup_kdc = Va boolean
189 Use DNS SRV records to lookup KDC services location.
190 .It Li dns_lookup_realm = Va boolean
191 Use DNS TXT records to lookup domain to realm mappings.
192 .It Li kdc_timesync = Va boolean
193 Try to keep track of the time differential between the local machine
194 and the KDC, and then compensate for that when issuing requests.
195 .It Li max_retries = Va number
196 The max number of times to try to contact each KDC.
197 .It Li large_msg_size = Va number
198 The threshold where protocols with tiny maximum message sizes are not
199 considered usable to send messages to the KDC.
200 .It Li ticket_lifetime = Va time
201 Default ticket lifetime.
202 .It Li renew_lifetime = Va time
203 Default renewable ticket lifetime.
204 .It Li forwardable = Va boolean
205 When obtaining initial credentials, make the credentials forwardable.
206 This option is also valid in the [realms] section.
207 .It Li proxiable = Va boolean
208 When obtaining initial credentials, make the credentials proxiable.
209 This option is also valid in the [realms] section.
210 .It Li verify_ap_req_nofail = Va boolean
211 If enabled, failure to verify credentials against a local key is a
212 fatal error.
213 The application has to be able to read the corresponding service key
214 for this to work.
215 Some applications, like
216 .Xr su 1 ,
217 enable this option unconditionally.
218 .It Li warn_pwexpire = Va time
219 How soon to warn for expiring password.
220 Default is seven days.
221 .It Li http_proxy = Va proxy-spec
222 A HTTP-proxy to use when talking to the KDC via HTTP.
223 .It Li dns_proxy = Va proxy-spec
224 Enable using DNS via HTTP.
225 .It Li extra_addresses = Va address ...
226 A list of addresses to get tickets for along with all local addresses.
227 .It Li time_format = Va string
228 How to print time strings in logs, this string is passed to
229 .Xr strftime 3 .
230 .It Li date_format = Va string
231 How to print date strings in logs, this string is passed to
232 .Xr strftime 3 .
233 .It Li log_utc = Va boolean
234 Write log-entries using UTC instead of your local time zone.
235 .It Li scan_interfaces = Va boolean
236 Scan all network interfaces for addresses, as opposed to simply using
237 the address associated with the system's host name.
238 .It Li fcache_version = Va int
239 Use file credential cache format version specified.
240 .It Li fcc-mit-ticketflags = Va boolean
241 Use MIT compatible format for file credential cache.
242 It's the field ticketflags that is stored in reverse bit order for
243 older than Heimdal 0.7.
244 Setting this flag to
245 .Dv TRUE
246 make it store the MIT way, this is default for Heimdal 0.7.
247 .It Li check-rd-req-server
248 If set to "ignore", the framework will ignore any the server input to
249 .Xr krb5_rd_req 3,
250 this is very useful when the GSS-API server input the
251 wrong server name into the gss_accept_sec_context call.
252 .It Li k5login_directory = Va directory
253 Alternative location for user .k5login files. This option is provided
254 for compatibility with MIT krb5 configuration files.
255 .It Li k5login_authoritative = Va boolean
256 If true then if a principal is not found in k5login files then
257 .Xr krb5_userok 3
258 will not fallback on principal to username mapping. This option is
259 provided for compatibility with MIT krb5 configuration files.
260 .It Li kuserok = Va rule ...
261 Specifies
262 .Xr krb5_userok 3
263 behavior.  If multiple values are given, then
264 .Xr krb5_userok 3
265 will evaluate them in order until one succeeds or all fail.  Rules are
266 implemented by plugins, with three built-in plugins
267 described below. Default: USER-K5LOGIN SIMPLE DENY.
268 .It Li kuserok = Va DENY
269 If set and evaluated then
270 .Xr krb5_userok 3
271 will deny access to the given username no matter what the principal name
272 might be.
273 .It Li kuserok = Va SIMPLE
274 If set and evaluated then
275 .Xr krb5_userok 3
276 will use principal to username mapping (see auth_to_local below).  If
277 the principal maps to the requested username then access is allowed.
278 .It Li kuserok = Va SYSTEM-K5LOGIN[:directory]
279 If set and evaluated then
280 .Xr krb5_userok 3
281 will use k5login files named after the
282 .Va luser
283 argument to
284 .Xr krb5_userok 3
285 in the given directory or in
286 .Pa /etc/k5login.d/ .
287 K5login files are text files, with each line containing just a principal
288 name; principals apearing in a user's k5login file are permitted access
289 to the user's account. Note: this rule performs no ownership nor
290 permissions checks on k5login files; proper ownership and
291 permissions/ACLs are expected due to the system k5login location being a
292 system location.
293 .It Li kuserok = Va USER-K5LOGIN
294 If set and evaluated then
295 .Xr krb5_userok 3
296 will use
297 .Pa ~luser/.k5login
299 .Pa ~luser/.k5login.d/* .
300 User k5login files and directories must be owned by the user and must
301 not have world nor group write permissions.
302 .It Li aname2lname-text-db = Va filename
303 The named file must be a sorted (in increasing order) text file where
304 every line consists of an unparsed principal name optionally followed by
305 whitespace and a username.  The aname2lname function will do a binary
306 search on this file, if configured, looking for lines that match the
307 given principal name, and if found the given username will be used, or,
308 if the username is missing, an error will be returned.  If the file
309 doesn't exist, or if no matching line is found then other plugins will
310 be allowed to run.
311 .It Li fcache_strict_checking
312 strict checking in FILE credential caches that owner, no symlink and
313 permissions is correct.
315 .It Li [domain_realm]
316 This is a list of mappings from DNS domain to Kerberos realm.
317 Each binding in this section looks like:
319 .Dl domain = realm
321 The domain can be either a full name of a host or a trailing
322 component, in the latter case the domain-string should start with a
323 period.
324 The trailing component only matches hosts that are in the same domain, ie
325 .Dq .example.com
326 matches
327 .Dq foo.example.com ,
328 but not
329 .Dq foo.test.example.com .
331 The realm may be the token `dns_locate', in which case the actual
332 realm will be determined using DNS (independently of the setting
333 of the `dns_lookup_realm' option).
334 .It Li [realms]
335 .Bl -tag -width "xxx" -offset indent
336 .It Va REALM Li = {
337 .Bl -tag -width "xxx" -offset indent
338 .It Li kdc = Va [service/]host[:port]
339 Specifies a list of kdcs for this realm.
340 If the optional
341 .Va port
342 is absent, the
343 default value for the
344 .Dq kerberos/udp
345 .Dq kerberos/tcp ,
347 .Dq http/tcp
348 port (depending on service) will be used.
349 The kdcs will be used in the order that they are specified.
351 The optional
352 .Va service
353 specifies over what medium the kdc should be
354 contacted.
355 Possible services are
356 .Dq udp ,
357 .Dq tcp ,
359 .Dq http .
360 Http can also be written as
361 .Dq http:// .
362 Default service is
363 .Dq udp
365 .Dq tcp .
366 .It Li admin_server = Va host[:port]
367 Specifies the admin server for this realm, where all the modifications
368 to the database are performed.
369 .It Li kpasswd_server = Va host[:port]
370 Points to the server where all the password changes are performed.
371 If there is no such entry, the kpasswd port on the admin_server host
372 will be tried.
373 .It Li tgs_require_subkey
374 a boolan variable that defaults to false.
375 Old DCE secd (pre 1.1) might need this to be true.
376 .It Li auth_to_local_names = {
377 .Bl -tag -width "xxx" -offset indent
378 .It Va principal_name = Va username
379 The given
380 .Va principal_name
381 will be mapped to the given
382 .Va username
383 if the
384 .Va REALM
385 is a default realm.
387 .It Li }
388 .It Li auth_to_local = HEIMDAL_DEFAULT
389 Use the Heimdal default principal to username mapping.
390 Applies to principals from the
391 .Va REALM
392 if and only if
393 .Va REALM
394 is a default realm.
395 .It Li auth_to_local = DEFAULT
396 Use the MIT default principal to username mapping.
397 Applies to principals from the
398 .Va REALM
399 if and only if
400 .Va REALM
401 is a default realm.
402 .It Li auth_to_local = DB:/path/to/db.txt
403 Use a binary search of the given DB.  The DB must be a flat-text
404 file sortedf in the "C" locale, with each record being a line
405 (separated by either LF or CRLF) consisting of a principal name
406 followed by whitespace followed by a username.
407 Applies to principals from the
408 .Va REALM
409 if and only if
410 .Va REALM
411 is a default realm.
412 .It Li auth_to_local = DB:/path/to/db
413 Use the given DB, if there's a plugin for it.
414 Applies to principals from the
415 .Va REALM
416 if and only if
417 .Va REALM
418 is a default realm.
419 .It Li auth_to_local = RULE:...
420 Use the given rule, if there's a plugin for it.
421 Applies to principals from the
422 .Va REALM
423 if and only if
424 .Va REALM
425 is a default realm.
426 .It Li auth_to_local = NONE
427 No additional principal to username mapping is done. Note that
428 .Va auth_to_local_names
429 and any preceding
430 .Va auth_to_local
431 rules have precedence.
433 .It Li }
435 .It Li [capaths]
436 .Bl -tag -width "xxx" -offset indent
437 .It Va client-realm Li = {
438 .Bl -tag -width "xxx" -offset indent
439 .It Va server-realm Li = Va hop-realm ...
440 This serves two purposes. First the first listed
441 .Va hop-realm
442 tells a client which realm it should contact in order to ultimately
443 obtain credentials for a service in the
444 .Va server-realm .
445 Secondly, it tells the KDC (and other servers) which realms are
446 allowed in a multi-hop traversal from
447 .Va client-realm
449 .Va server-realm .
450 Except for the client case, the order of the realms are not important.
452 .It Va }
454 .It Li [logging]
455 .Bl -tag -width "xxx" -offset indent
456 .It Va entity Li = Va destination
457 Specifies that
458 .Va entity
459 should use the specified
460 .Li destination
461 for logging.
462 See the
463 .Xr krb5_openlog 3
464 manual page for a list of defined destinations.
466 .It Li [kdc]
467 .Bl -tag -width "xxx" -offset indent
468 .It Li database Li = {
469 .Bl -tag -width "xxx" -offset indent
470 .It Li dbname Li = Va DATABASENAME
471 Use this database for this realm.
472 See the info documetation how to configure different database backends.
473 .It Li realm Li = Va REALM
474 Specifies the realm that will be stored in this database.
475 It realm isn't set, it will used as the default database, there can
476 only be one entry that doesn't have a
477 .Li realm
478 stanza.
479 .It Li mkey_file Li = Pa FILENAME
480 Use this keytab file for the master key of this database.
481 If not specified
482 .Va DATABASENAME Ns .mkey
483 will be used.
484 .It Li acl_file Li = PA FILENAME
485 Use this file for the ACL list of this database.
486 .It Li log_file Li = Pa FILENAME
487 Use this file as the log of changes performed to the database.
488 This file is used by
489 .Nm ipropd-master
490 for propagating changes to slaves.
492 .It Li }
493 .It Li max-request = Va SIZE
494 Maximum size of a kdc request.
495 .It Li require-preauth = Va BOOL
496 If set pre-authentication is required.
497 .It Li ports = Va "list of ports"
498 List of ports the kdc should listen to.
499 .It Li addresses = Va "list of interfaces"
500 List of addresses the kdc should bind to.
501 .It Li enable-http = Va BOOL
502 Should the kdc answer kdc-requests over http.
503 .It Li tgt-use-strongest-session-key = Va BOOL
504 If this is TRUE then the KDC will prefer the strongest key from the
505 client's AS-REQ or TGS-REQ enctype list for the ticket session key that
506 is supported by the KDC and the target principal when the target
507 principal is a krbtgt principal.  Else it will prefer the first key from
508 the client's AS-REQ enctype list that is also supported by the KDC and
509 the target principal.  Defaults to FALSE.
510 .It Li svc-use-strongest-session-key = Va BOOL
511 Like tgt-use-strongest-session-key, but applies to the session key
512 enctype of tickets for services other than krbtgt principals. Defaults
513 to FALSE.
514 .It Li preauth-use-strongest-session-key = Va BOOL
515 If TRUE then select the strongest possible enctype from the client's
516 AS-REQ for PA-ETYPE-INFO2 (i.e., for password-based pre-authentication).
517 Else pick the first supported enctype from the client's AS-REQ.  Defaults
518 to FALSE.
519 .It Li use-strongest-server-key = Va BOOL
520 If TRUE then the KDC picks, for the ticket encrypted part's key, the
521 first supported enctype from the target service principal's hdb entry's
522 current keyset. Else the KDC picks the first supported enctype from the
523 target service principal's hdb entry's current keyset.  Defaults to TRUE.
524 .It Li check-ticket-addresses = Va BOOL
525 Verify the addresses in the tickets used in tgs requests.
526 .\" XXX
527 .It Li allow-null-ticket-addresses = Va BOOL
528 Allow address-less tickets.
529 .\" XXX
530 .It Li allow-anonymous = Va BOOL
531 If the kdc is allowed to hand out anonymous tickets.
532 .It Li encode_as_rep_as_tgs_rep = Va BOOL
533 Encode as-rep as tgs-rep tobe compatible with mistakes older DCE secd did.
534 .\" XXX
535 .It Li kdc_warn_pwexpire = Va TIME
536 The time before expiration that the user should be warned that her
537 password is about to expire.
538 .It Li logging = Va Logging
539 What type of logging the kdc should use, see also [logging]/kdc.
540 .It Li hdb-ldap-structural-object Va structural object
541 If the LDAP backend is used for storing principals, this is the
542 structural object that will be used when creating and when reading
543 objects.
544 The default value is account .
545 .It Li hdb-ldap-create-base Va creation dn
546 is the dn that will be appended to the principal when creating entries.
547 Default value is the search dn.
548 .It Li enable-digest = Va BOOL
549 Should the kdc answer digest requests. The default is FALSE.
550 .It Li digests_allowed = Va list of digests
551 Specifies the digests the kdc will reply to. The default is
552 .Li ntlm-v2 .
553 .It Li kx509_ca = Va file
554 Specifies the PEM credentials for the kx509 certification authority.
555 .It Li require_initial_kca_tickets = Va boolean
556 Specified whether to require that tickets for the
557 .Li kca_service
558 service principal be INITIAL.
559 This may be set on a per-realm basis as well as globally.
560 Defaults to true for the global setting.
561 .It Li kx509_include_pkinit_san = Va boolean
562 If true then the kx509 client principal's name and realm will be
563 included in an
564 .Li id-pkinit-san
565 certificate extension.
566 This can be set on a per-realm basis as well as globally.
567 Defaults to true for the global setting.
568 .It Li kx509_template = Va file
569 Specifies the PEM file with a template for the certificates to be
570 issued.
571 The following variables can be interpolated in the subject name using
572 ${variable} syntax:
573 .Bl -tag -width "xxx" -offset indent
574 .It principal-name
575 The full name of the kx509 client principal.
576 .It principal-name-without-realm
577 The full name of the kx509 client principal, excluding the realm name.
578 .It principal-name-realm
579 The name of the client principal's realm.
582 The 
583 .Li kx509 ,
584 .Li kx509_template ,
585 .Li kx509_include_pkinit_san ,
587 .Li require_initial_kca_tickets
588 parameters may be set on a per-realm basis as well.
589 .It Li [kadmin]
590 .Bl -tag -width "xxx" -offset indent
591 .It Li password_lifetime = Va time
592 If a principal already have its password set for expiration, this is
593 the time it will be valid for after a change.
594 .It Li default_keys = Va keytypes...
595 For each entry in
596 .Va default_keys
597 try to parse it as a sequence of
598 .Va etype:salttype:salt
599 syntax of this if something like:
601 [(des|des3|etype):](pw-salt|afs3-salt)[:string]
604 .Ar etype
605 is omitted it means everything, and if string is omitted it means the
606 default salt string (for that principal and encryption type).
607 Additional special values of keytypes are:
608 .Bl -tag -width "xxx" -offset indent
609 .It Li v5
610 The Kerberos 5 salt
611 .Va pw-salt
613 .It Li default_key_rules = Va {
614 .Bl -tag -width "xxx" -offset indent
615 .It Va globing-rule Li = Va keytypes...
616 a globbing rule to matching a principal, and when true, use the
617 keytypes as specified the same format as [kadmin]default_keys .
619 .It Li }
621 .It Li use_v4_salt = Va BOOL
622 When true, this is the same as
624 .Va default_keys = Va des3:pw-salt Va v4
626 and is only left for backwards compatibility.
627 .It Li [password_quality]
628 Check the Password quality assurance in the info documentation for
629 more information.
630 .Bl -tag -width "xxx" -offset indent
631 .It Li check_library = Va library-name
632 Library name that contains the password check_function
633 .It Li check_function = Va function-name
634 Function name for checking passwords in check_library
635 .It Li policy_libraries = Va library1 ... libraryN
636 List of libraries that can do password policy checks
637 .It Li policies = Va policy1 ... policyN
638 List of policy names to apply to the password. Builtin policies are
639 among other minimum-length, character-class, external-check.
642 .Sh ENVIRONMENT
643 .Ev KRB5_CONFIG
644 points to the configuration file to read.
645 .Sh FILES
646 .Bl -tag -width "/etc/krb5.conf"
647 .It Pa /etc/krb5.conf
648 configuration file for Kerberos 5.
650 .Sh EXAMPLES
651 .Bd -literal -offset indent
652 [libdefaults]
653         default_realm = FOO.SE
654 [domain_realm]
655         .foo.se = FOO.SE
656         .bar.se = FOO.SE
657 [realms]
658         FOO.SE = {
659                 kdc = kerberos.foo.se
660                 default_domain = foo.se
661         }
662 [logging]
663         kdc = FILE:/var/heimdal/kdc.log
664         kdc = SYSLOG:INFO
665         default = SYSLOG:INFO:USER
666 [kadmin]
667         default_key_rules = {
668                 */ppp@* = arcfour-hmac-md5:pw-salt
669         }
671 .Sh DIAGNOSTICS
672 Since
674 is read and parsed by the krb5 library, there is not a lot of
675 opportunities for programs to report parsing errors in any useful
676 format.
677 To help overcome this problem, there is a program
678 .Nm verify_krb5_conf
679 that reads
681 and tries to emit useful diagnostics from parsing errors.
682 Note that this program does not have any way of knowing what options
683 are actually used and thus cannot warn about unknown or misspelled
684 ones.
685 .Sh SEE ALSO
686 .Xr kinit 1 ,
687 .Xr krb5_openlog 3 ,
688 .Xr strftime 3 ,
689 .Xr verify_krb5_conf 8