Renumber signedticket to 512 since 142 was stolen.
[heimdal.git] / doc / setup.texi
blob6045a3bb1071dc8638abddf192aba91be2567875
1 @c $Id$
3 @node Setting up a realm, Applications, Building and Installing, Top
5 @chapter Setting up a realm
8 @cindex realm
9 realm is an administrative domain.  The name of a Kerberos realm is
10 usually the Internet domain name in uppercase.  Call your realm the same
11 as your Internet domain name if you do not have strong reasons for not
12 doing so.  It will make life easier for you and everyone else.
14 @menu
15 * Configuration file::
16 * Creating the database::
17 * Modifying the database::
18 * Checking the setup::
19 * keytabs::
20 * Serving Kerberos 4/524/kaserver::
21 * Remote administration::
22 * Password changing::
23 * Testing clients and servers::
24 * Slave Servers::
25 * Incremental propagation::
26 * Encryption types and salting::
27 * Cross realm::
28 * Transit policy::
29 * Setting up DNS::
30 * Using LDAP to store the database::
31 * Providing Kerberos credentials to servers and programs::
32 * Setting up PK-INIT::
33 @end menu
35 @node  Configuration file, Creating the database, Setting up a realm, Setting up a realm
36 @section Configuration file
38 To setup a realm you will first have to create a configuration file:
39 @file{/etc/krb5.conf}. The @file{krb5.conf} file can contain many
40 configuration options, some of which are described here.
42 There is a sample @file{krb5.conf} supplied with the distribution.
44 The configuration file is a hierarchical structure consisting of
45 sections, each containing a list of bindings (either variable
46 assignments or subsections). A section starts with
47 @samp{[@samp{section-name}]}.  A binding consists of a left hand side, an equal sign
48 (@samp{=}) and a right hand side (the left hand side tag must be
49 separated from the equal sign with some whitespace). Subsections have a
50 @samp{@{} as the first non-whitespace character after the equal sign. All
51 other bindings are treated as variable assignments. The value of a
52 variable extends to the end of the line.
54 @example
55 [section1]
56         a-subsection = @{
57                 var = value1
58                 other-var = value with @{@}
59                 sub-sub-section = @{
60                         var = 123
61                 @}
62         @}
63         var = some other value
64 [section2]
65         var = yet another value
66 @end example
68 In this manual, names of sections and bindings will be given as strings
69 separated by slashes (@samp{/}). The @samp{other-var} variable will thus
70 be @samp{section1/a-subsection/other-var}.
72 For in-depth information about the contents of the configuration file, refer to
73 the @file{krb5.conf} manual page. Some of the more important sections
74 are briefly described here.
76 The @samp{libdefaults} section contains a list of library configuration
77 parameters, such as the default realm and the timeout for KDC
78 responses. The @samp{realms} section contains information about specific
79 realms, such as where they hide their KDC@. This section serves the same
80 purpose as the Kerberos 4 @file{krb.conf} file, but can contain more
81 information. Finally the @samp{domain_realm} section contains a list of
82 mappings from domains to realms, equivalent to the Kerberos 4
83 @file{krb.realms} file.
85 To continue with the realm setup, you will have to create a configuration file,
86 with contents similar to the following.
88 @example
89 [libdefaults]
90         default_realm = MY.REALM
91 [realms]
92         MY.REALM = @{
93                 kdc = my.kdc my.slave.kdc
94                 kdc = my.third.kdc
95                 kdc = 130.237.237.17
96                 kdc = [2001:6b0:1:ea::100]:88
97         @}
98 [domain_realm]
99         .my.domain = MY.REALM
101 @end example
103 If you use a realm name equal to your domain name, you can omit the
104 @samp{libdefaults}, and @samp{domain_realm}, sections. If you have a DNS
105 SRV-record for your realm, or your Kerberos server has DNS CNAME
106 @samp{kerberos.my.realm}, you can omit the @samp{realms} section too.
108 @node Creating the database, Modifying the database, Configuration file, Setting up a realm
109 @section Creating the database
111 The database library will look for the database in the directory
112 @file{@value{dbdir}}, so you should probably create that directory.
113 Make sure the directory has restrictive permissions.
115 @example
116 # mkdir /var/heimdal
117 @end example
119 The keys of all the principals are stored in the database.  If you
120 choose to, these can be encrypted with a master key.  You do not have to
121 remember this key (or password), but just to enter it once and it will
122 be stored in a file (@file{/var/heimdal/m-key}).  If you want to have a
123 master key, run @samp{kstash} to create this master key:
125 @example
126 # kstash
127 Master key:
128 Verifying password - Master key:
129 @end example
131 If you want to generate a random master key you can use the
132 @kbd{--random-key} flag to kstash. This will make sure you have a good key
133 on which attackers can't do a dictionary attack.
135 If you have a master key, make sure you make a backup of your master
136 key file; without it backups of the database are of no use.
138 To initialise the database use the @command{kadmin} program, with the
139 @kbd{-l} option (to enable local database mode). First issue a
140 @kbd{init MY.REALM} command. This will create the database and insert
141 default principals for that realm. You can have more than one realm in
142 one database, so @samp{init} does not destroy any old database.
144 Before creating the database, @samp{init} will ask you some questions
145 about maximum ticket lifetimes.
147 After creating the database you should probably add yourself to it. You
148 do this with the @samp{add} command. It takes as argument the name of a
149 principal. The principal should contain a realm, so if you haven't set up
150 a default realm, you will need to explicitly include the realm.
152 @example
153 # kadmin -l
154 kadmin> init MY.REALM
155 Realm max ticket life [unlimited]:
156 Realm max renewable ticket life [unlimited]:
157 kadmin> add me
158 Max ticket life [unlimited]:
159 Max renewable life [unlimited]:
160 Attributes []:
161 Password:
162 Verifying password - Password:
163 @end example
165 Now start the KDC and try getting a ticket.
167 @example
168 # kdc &
169 # kinit me
170 me@@MY.REALMS's Password:
171 # klist
172 Credentials cache: /tmp/krb5cc_0
173         Principal: me@@MY.REALM
175   Issued           Expires          Principal
176 Aug 25 07:25:55  Aug 25 17:25:55  krbtgt/MY.REALM@@MY.REALM
177 @end example
179 If you are curious you can use the @samp{dump} command to list all the
180 entries in the database.  It should look something similar to the
181 following example (note that the entries here are truncated for
182 typographical reasons):
184 @smallexample
185 kadmin> dump
186 me@@MY.REALM 1:0:1:0b01d3cb7c293b57:-:0:7:8aec316b9d1629e3baf8 ...
187 kadmin/admin@@MY.REALM 1:0:1:e5c8a2675b37a443:-:0:7:cb913ebf85 ...
188 krbtgt/MY.REALM@@MY.REALM 1:0:1:52b53b61c875ce16:-:0:7:c8943be ...
189 kadmin/changepw@@MY.REALM 1:0:1:f48c8af2b340e9fb:-:0:7:e3e6088 ...
190 @end smallexample
192 @node Modifying the database, Checking the setup, Creating the database, Setting up a realm
193 @section Modifying the database
195 All modifications of principals are done with with kadmin.
197 A principal has several attributes and lifetimes associated with it.
199 Principals are added, renamed, modified, and deleted with the kadmin
200 commands @samp{add}, @samp{rename}, @samp{modify}, @samp{delete}.
201 Both interactive editing and command line flags can be used (use --help
202 to list the available options).
204 There are different kinds of types for the fields in the database;
205 attributes, absolute time times and relative times.
207 @subsection Attributes
209 When doing interactive editing, attributes are listed with @samp{?}.
211 The attributes are given in a comma (@samp{,}) separated list.
212 Attributes are removed from the list by prefixing them with @samp{-}.
214 @smallexample
215 kadmin> modify me
216 Max ticket life [1 day]:
217 Max renewable life [1 week]:
218 Principal expiration time [never]:
219 Password expiration time [never]:
220 Attributes [disallow-renewable]: requires-pre-auth,-disallow-renewable
221 kadmin> get me
222             Principal: me@@MY.REALM
223 [...]
224            Attributes: requires-pre-auth
225 @end smallexample
227 @subsection Absolute times
229 The format for absolute times are any of the following:
231 @smallexample
232 never
234 YYYY-mm-dd
235 YYYY-mm-dd HH:MM:SS
236 @end smallexample
239 @subsection Relative times
241 The format for relative times are any of the following combined:
243 @smallexample
244 N year
245 M month
246 O day
247 P hour
248 Q minute
249 R second
250 @end smallexample
252 @c Describe more of kadmin commands here...
254 @node Checking the setup, keytabs, Modifying the database, Setting up a realm
255 @section Checking the setup
257 There are two tools that can check the consistency of the Kerberos
258 configuration file and the Kerberos database.
260 The Kerberos configuration file is checked using
261 @command{verify_krb5_conf}. The tool checks for common errors, but
262 commonly there are several uncommon configuration entries that are
263 never added to the tool and thus generates ``unknown entry'' warnings.
264 This is usually nothing to worry about.
266 The database check is built into the kadmin tool. It will check for
267 common configuration error that will cause problems later. Common
268 check are for existence and flags on important principals. The
269 database check by run by the following command :
271 @example
272 kadmin check REALM.EXAMPLE.ORG
273 @end example
275 @node keytabs, Serving Kerberos 4/524/kaserver, Checking the setup, Setting up a realm
276 @section keytabs
278 To extract a service ticket from the database and put it in a keytab, you
279 need to first create the principal in the database with @samp{ank}
280 (using the @kbd{--random-key} flag to get a random key) and then
281 extract it with @samp{ext_keytab}.
283 @example
284 kadmin> add --random-key host/my.host.name
285 Max ticket life [unlimited]:
286 Max renewable life [unlimited]:
287 Attributes []:
288 kadmin> ext host/my.host.name
289 kadmin> exit
290 # ktutil list
291 Version  Type             Principal
292      1   des-cbc-md5      host/my.host.name@@MY.REALM
293      1   des-cbc-md4      host/my.host.name@@MY.REALM
294      1   des-cbc-crc      host/my.host.name@@MY.REALM
295      1   des3-cbc-sha1    host/my.host.name@@MY.REALM
296 @end example
298 @node Serving Kerberos 4/524/kaserver, Remote administration, keytabs, Setting up a realm
299 @section Serving Kerberos 4/524/kaserver
301 Heimdal can be configured to support 524, Kerberos 4 or kaserver. All
302 these services are turned off by default. Kerberos 4 is always
303 supported by the KDC, but the Kerberos 4 client support also depends
304 on Kerberos 4 support having been included at compile-time, using
305 @kbd{--with-krb4=dir}.
307 @subsection 524
309 524 is a service that allows the KDC to convert Kerberos 5 tickets to
310 Kerberos 4 tickets for backward compatibility. See also Using 2b
311 tokens with AFS in @xref{AFS}.
313 524 can be turned on by adding this to the configuration file
315 @example
316 [kdc]
317         enable-524 = yes
318 @end example
320 @subsection Kerberos 4
322 Kerberos 4 is the predecessor to to Kerberos 5. It only supports
323 single DES@. You should only enable Kerberos 4 support if you have
324 needs for compatibility with an installed base of Kerberos 4
325 clients/servers.
327 Kerberos 4 can be turned on by adding this to the configuration file
329 @example
330 [kdc]
331         enable-kerberos4 = yes
332 @end example
334 @subsection kaserver
336 Kaserver is a Kerberos 4 that is used in AFS@.  The protocol has some
337 extra features over plain Kerberos 4, but like Kerberos 4, only uses
338 single DES@.
340 You should only enable Kaserver support if you have needs for
341 compatibility with an installed base of AFS machines.
343 Kaserver can be turned on by adding this to the configuration file
345 @example
346 [kdc]
347         enable-kaserver = yes
348 @end example
350 @node Remote administration, Password changing, Serving Kerberos 4/524/kaserver, Setting up a realm
351 @section Remote administration
353 The administration server, @command{kadmind}, can be started by
354 @command{inetd} (which isn't recommended) or run as a normal daemon. If you
355 want to start it from @command{inetd} you should add a line similar to the
356 one below to your @file{/etc/inetd.conf}.
358 @example
359 kerberos-adm stream     tcp     nowait  root /usr/heimdal/libexec/kadmind kadmind
360 @end example
362 You might need to add @samp{kerberos-adm} to your @file{/etc/services}
363 as @samp{749/tcp}.
365 Access to the administration server is controlled by an ACL file,
366 (default @file{/var/heimdal/kadmind.acl}.) The file has the following
367 syntax:
368 @smallexample
369 principal       [priv1,priv2,...]       [glob-pattern]
370 @end smallexample
372 The matching is from top to bottom for matching principals (and if given,
373 glob-pattern).  When there is a match, the access rights of that line are
374 applied.
376 The privileges you can assign to a principal are: @samp{add},
377 @samp{change-password} (or @samp{cpw} for short), @samp{delete},
378 @samp{get}, @samp{list}, and @samp{modify}, or the special privilege
379 @samp{all}. All of these roughly correspond to the different commands
380 in @command{kadmin}.
382 If a @var{glob-pattern} is given on a line, it restricts the access
383 rights for the principal to only apply for subjects that match the
384 pattern.  The patterns are of the same type as those used in shell
385 globbing, see @url{none,,fnmatch(3)}.
387 In the example below @samp{lha/admin} can change every principal in the
388 database. @samp{jimmy/admin} can only modify principals that belong to
389 the realm @samp{E.KTH.SE}. @samp{mille/admin} is working at the
390 help desk, so he should only be able to change the passwords for single
391 component principals (ordinary users). He will not be able to change any
392 @samp{/admin} principal.
394 @example
395 lha/admin@@E.KTH.SE     all
396 jimmy/admin@@E.KTH.SE   all             *@@E.KTH.SE
397 jimmy/admin@@E.KTH.SE   all             */*@@E.KTH.SE
398 mille/admin@@E.KTH.SE   change-password *@@E.KTH.SE
399 @end example
401 @node Password changing, Testing clients and servers, Remote administration, Setting up a realm
402 @section Password changing
404 To allow users to change their passwords, you should run @command{kpasswdd}.
405 It is not run from @command{inetd}.
407 You might need to add @samp{kpasswd} to your @file{/etc/services} as
408 @samp{464/udp}.
410 @subsection Password quality assurance
412 It is important that users have good passwords, both to make it harder
413 to guess them and to avoid off-line attacks (although
414 pre-authentication provides some defence against off-line attacks).
415 To ensure that the users choose good passwords, you can enable
416 password quality controls in @command{kpasswdd} and @command{kadmind}.
417 The controls themselves are done in a shared library or an external
418 program that is used by @command{kpasswdd}.  To configure in these
419 controls, add lines similar to the following to your
420 @file{/etc/krb5.conf}:
422 @example
423 [password_quality]
424         policies = external-check builtin:minimum-length modulename:policyname
425         external_program = /bin/false
426         policy_libraries = @var{library1.so} @var{library2.so}
427 @end example
429 In @samp{[password_quality]policies} the module name is optional if
430 the policy name is unique in all modules (members of
431 @samp{policy_libraries}).  All built-in policies can be qualified with
432 a module name of @samp{builtin} to unambiguously specify the built-in
433 policy and not a policy by the same name from a loaded module.
435 The built-in policies are
437 @itemize @bullet
439 @item external-check
441 Executes the program specified by @samp{[password_quality]external_program}.
443 A number of key/value pairs are passed as input to the program, one per
444 line, ending with the string @samp{end}.  The key/value lines are of
445 the form
446 @example
447 principal: @var{principal}
448 new-password: @var{password}
449 @end example
450 where @var{password} is the password to check for the previous
451 @var{principal}.
453 If the external application approves the password, it should return
454 @samp{APPROVED} on standard out and exit with exit code 0.  If it
455 doesn't approve the password, an one line error message explaining the
456 problem should be returned on standard error and the application
457 should exit with exit code 0.  In case of a fatal error, the
458 application should, if possible, print an error message on standard
459 error and exit with a non-zero error code.
461 @item minimum-length
463 The minimum length password quality check reads the configuration file
464 stanza @samp{[password_quality]min_length} and requires the password
465 to be at least this length.
467 @item character-class
469 The character-class password quality check reads the configuration
470 file stanza @samp{[password_quality]min_classes}. The policy requires
471 the password to have characters from at least that many character
472 classes. Default value if not given is 3.
474 The four different characters classes are, uppercase, lowercase,
475 number, special characters.
477 @end itemize
479 If you want to write your own shared object to check password
480 policies, see the manual page @manpage{kadm5_pwcheck,3}.
482 Code for a password quality checking function that uses the cracklib
483 library can be found in @file{lib/kadm5/sample_password_check.c} in
484 the source code distribution.  It requires that the cracklib library
485 be built with the patch available at
486 @url{ftp://ftp.pdc.kth.se/pub/krb/src/cracklib.patch}.
488 A sample policy external program is included in
489 @file{lib/kadm5/check-cracklib.pl}.
491 If no password quality checking function is configured, the only check
492 performed is that the password is at least six characters long.
494 To check the password policy settings, use the command
495 @command{password-quality} in @command{kadmin} program. The password
496 verification is only performed locally, on the client.  It may be
497 convenient to set the environment variable @samp{KRB5_CONFIG} to point
498 to a test version of @file{krb5.conf} while you're testing the
499 @samp{[password_quality]} stanza that way.
501 @node Testing clients and servers, Slave Servers, Password changing, Setting up a realm
502 @section Testing clients and servers
504 Now you should be able to run all the clients and servers.  Refer to the
505 appropriate man pages for information on how to use them.
507 @node Slave Servers, Incremental propagation, Testing clients and servers, Setting up a realm
508 @section Slave servers, Incremental propagation, Testing clients and servers, Setting up a realm
510 It is desirable to have at least one backup (slave) server in case the
511 master server fails. It is possible to have any number of such slave
512 servers but more than three usually doesn't buy much more redundancy.
514 All Kerberos servers for a realm must have the same database so that
515 they present the same service to the users.  The
516 @pindex hprop
517 @command{hprop} program, running on the master, will propagate the database
518 to the slaves, running
519 @pindex hpropd
520 @command{hpropd} processes.
522 Every slave needs a database directory, the master key (if it was used
523 for the database) and a keytab with the principal
524 @samp{hprop/@var{hostname}}.  Add the principal with the
525 @pindex ktutil
526 @command{ktutil} command and start
527 @pindex hpropd
528 @command{hpropd}, as follows:
530 @example
531 slave# ktutil get -p foo/admin hprop/`hostname`
532 slave# mkdir /var/heimdal
533 slave# hpropd
534 @end example
536 The master will use the principal @samp{kadmin/hprop} to authenticate to
537 the slaves.  This principal should be added when running @kbd{kadmin -l
538 init} but if you do not have it in your database for whatever reason,
539 please add it with @kbd{kadmin -l add}.
541 Then run
542 @pindex hprop
543 @code{hprop} on the master:
545 @example
546 master# hprop slave
547 @end example
549 This was just an hands-on example to make sure that everything was
550 working properly.  Doing it manually is of course the wrong way, and to
551 automate this you will want to start
552 @pindex hpropd
553 @command{hpropd} from @command{inetd} on the slave(s) and regularly run
554 @pindex hprop
555 @command{hprop} on the master to regularly propagate the database.
556 Starting the propagation once an hour from @command{cron} is probably a
557 good idea.
559 @node Incremental propagation, Encryption types and salting, Slave Servers, Setting up a realm
560 @section Incremental propagation
562 There is also a newer mechanism for
563 doing incremental propagation in Heimdal.  Instead of sending the whole
564 database regularly, it sends the changes as they happen on the master to
565 the slaves.  The master keeps track of all the changes by assigning a
566 version number to every change to the database.  The slaves know which
567 was the latest version they saw and in this way it can be determined if
568 they are in sync or not.  A log of all the changes is kept on the master,
569 and when a slave is at an older version than the oldest one in the
570 log, the whole database has to be sent.
572 Protocol-wise, all the slaves connect to the master and as a greeting
573 tell it the latest version that they have (@samp{IHAVE} message).  The
574 master then responds by sending all the changes between that version and
575 the current version at the master (a series of @samp{FORYOU} messages)
576 or the whole database in a @samp{TELLYOUEVERYTHING} message.  There is
577 also a keep-alive protocol that makes sure all slaves are up and running.
579 In addition on listening on the network to get connection from new
580 slaves, the ipropd-master also listens on a status unix
581 socket. kadmind and kpasswdd both open that socket when a transation
582 is done and written a notification to the socket. That cause
583 ipropd-master to check for new version in the log file. As a fallback in
584 case a notification is lost by the unix socket, the log file is
585 checked after 30 seconds of no event.
587 @subsection Configuring incremental propagation
589 The program that runs on the master is @command{ipropd-master} and all
590 clients run @command{ipropd-slave}.
592 Create the file @file{/var/heimdal/slaves} on the master containing all
593 the slaves that the database should be propagated to.  Each line contains
594 the full name of the principal (for example
595 @samp{iprop/hemligare.foo.se@@FOO.SE}).
597 You should already have @samp{iprop/tcp} defined as 2121, in your
598 @file{/etc/services}.  Otherwise, or if you need to use a different port
599 for some peculiar reason, you can use the @kbd{--port} option.  This is
600 useful when you have multiple realms to distribute from one server.
602 Then you need to create those principals that you added in the
603 configuration file.  Create one @samp{iprop/hostname} for the master and
604 for every slave.
607 @example
608 master# /usr/heimdal/sbin/ktutil get iprop/`hostname`
609 @end example
611 @example
612 slave# /usr/heimdal/sbin/ktutil get iprop/`hostname`
613 @end example
616 The next step is to start the @command{ipropd-master} process on the master
617 server.  The @command{ipropd-master} listens on the UNIX domain socket
618 @file{/var/heimdal/signal} to know when changes have been made to the
619 database so they can be propagated to the slaves.  There is also a
620 safety feature of testing the version number regularly (every 30
621 seconds) to see if it has been modified by some means that do not raise
622 this signal.  Then, start @command{ipropd-slave} on all the slaves:
624 @example
625 master# /usr/heimdal/libexec/ipropd-master &
626 slave#  /usr/heimdal/libexec/ipropd-slave master &
627 @end example
629 To manage the iprop log file you should use the @command{iprop-log}
630 command. With it you can dump, truncate and replay the logfile.
632 @node Encryption types and salting, Cross realm, Incremental propagation, Setting up a realm
633 @section Encryption types and salting
634 @cindex Salting
635 @cindex Encryption types
637 The encryption types that the KDC is going to assign by default is
638 possible to change. Since the keys used for user authentication is
639 salted the encryption types are described together with the salt
640 strings.
642 Salting is used to make it harder to pre-calculate all possible
643 keys. Using a salt increases the search space to make it almost
644 impossible to pre-calculate all keys. Salting is the process of mixing a
645 public string (the salt) with the password, then sending it through an
646 encryption type specific string-to-key function that will output the
647 fixed size encryption key.
649 In Kerberos 5 the salt is determined by the encryption type, except in
650 some special cases.
652 In @code{des} there is the Kerberos 4 salt
653 (none at all) or the afs-salt (using the cell (realm in
654 AFS lingo)).
656 In @code{arcfour} (the encryption type that Microsoft Windows 2000 uses)
657 there is no salt. This is to be compatible with NTLM keys in Windows
658 NT 4.
660 @code{[kadmin]default_keys} in @file{krb5.conf} controls
661 what salting to use.
663 The syntax of @code{[kadmin]default_keys} is
664 @samp{[etype:]salt-type[:salt-string]}. @samp{etype} is the encryption
665 type (des-cbc-crc, arcfour-hmac-md5, aes256-cts-hmac-sha1-96),
666 @code{salt-type} is the type of salt (pw-salt or afs3-salt), and the
667 salt-string is the string that will be used as salt (remember that if
668 the salt is appended/prepended, the empty salt "" is the same thing as
669 no salt at all).
671 Common types of salting include
673 @itemize @bullet
674 @item @code{v4} (or @code{des:pw-salt:})
676 The Kerberos 4 salting is using no salt at all. Reason there is colon
677 at the end of the salt string is that it makes the salt the empty
678 string (same as no salt).
680 @item @code{v5} (or @code{pw-salt})
682 @code{pw-salt} uses the default salt for each encryption type is
683 specified for. If the encryption type @samp{etype} isn't given, all
684 default encryption will be used.
686 @item @code{afs3-salt}
688 @code{afs3-salt} is the salt that is used with Transarc kaserver. It's
689 the cell name appended to the password.
691 @end itemize
693 @node Cross realm, Transit policy, Encryption types and salting, Setting up a realm
694 @section Cross realm
695 @cindex Cross realm
697 Suppose you reside in the realm @samp{MY.REALM}, how do you
698 authenticate to a server in @samp{OTHER.REALM}? Having valid tickets in
699 @samp{MY.REALM} allows you to communicate with Kerberised services in that
700 realm. However, the computer in the other realm does not have a secret
701 key shared with the Kerberos server in your realm.
703 It is possible to share keys between two realms that trust each
704 other. When a client program, such as @command{telnet} or @command{ssh},
705 finds that the other computer is in a different realm, it will try to
706 get a ticket granting ticket for that other realm, but from the local
707 Kerberos server. With that ticket granting ticket, it will then obtain
708 service tickets from the Kerberos server in the other realm.
710 For a two way trust between @samp{MY.REALM} and @samp{OTHER.REALM}
711 add the following principals to each realm. The principals should be
712 @samp{krbtgt/OTHER.REALM@@MY.REALM} and
713 @samp{krbtgt/MY.REALM@@OTHER.REALM} in @samp{MY.REALM}, and
714 @samp{krbtgt/MY.REALM@@OTHER.REALM} and
715 @samp{krbtgt/OTHER.REALM@@MY.REALM}in @samp{OTHER.REALM}.
717 In Kerberos 5 the trust can be configured to be one way. So that
718 users from @samp{MY.REALM} can authenticate to services in
719 @samp{OTHER.REALM}, but not the opposite. In the example above, the
720 @samp{krbtgt/MY.REALM@@OTHER.REALM} then should be removed.
722 The two principals must have the same key, key version number, and the
723 same set of encryption types. Remember to transfer the two keys in a
724 safe manner.
726 @example
727 vr$ klist
728 Credentials cache: FILE:/tmp/krb5cc_913.console
729         Principal: lha@@E.KTH.SE
731   Issued           Expires          Principal
732 May  3 13:55:52  May  3 23:55:54  krbtgt/E.KTH.SE@@E.KTH.SE
734 vr$ telnet -l lha hummel.it.su.se
735 Trying 2001:6b0:5:1095:250:fcff:fe24:dbf...
736 Connected to hummel.it.su.se.
737 Escape character is '^]'.
738 Waiting for encryption to be negotiated...
739 [ Trying mutual KERBEROS5 (host/hummel.it.su.se@@SU.SE)... ]
740 [ Kerberos V5 accepts you as ``lha@@E.KTH.SE'' ]
741 Encryption negotiated.
742 Last login: Sat May  3 14:11:47 from vr.l.nxs.se
743 hummel$ exit
745 vr$ klist
746 Credentials cache: FILE:/tmp/krb5cc_913.console
747         Principal: lha@@E.KTH.SE
749   Issued           Expires          Principal
750 May  3 13:55:52  May  3 23:55:54  krbtgt/E.KTH.SE@@E.KTH.SE
751 May  3 13:55:56  May  3 23:55:54  krbtgt/SU.SE@@E.KTH.SE
752 May  3 14:10:54  May  3 23:55:54  host/hummel.it.su.se@@SU.SE
754 @end example
756 @node Transit policy, Setting up DNS, Cross realm, Setting up a realm
757 @section Transit policy
758 @cindex Transit policy
760 If you want to use cross realm authentication through an intermediate
761 realm, it must be explicitly allowed by either the KDCs or the server
762 receiving the request. This is done in @file{krb5.conf} in the
763 @code{[capaths]} section.
765 When the ticket transits through a realm to another realm, the
766 destination realm adds its peer to the "transited-realms" field in the
767 ticket. The field is unordered, since there is no way to know if
768 know if one of the transited-realms changed the order of the list.
770 The syntax for @code{[capaths]} section:
772 @example
773 [capaths]
774         CLIENT-REALM = @{
775                 SERVER-REALM = PERMITTED-CROSS-REALMS ...
776         @}
777 @end example
779 The realm @code{STACKEN.KTH.SE} allows clients from @code{SU.SE} and
780 @code{DSV.SU.SE} to cross it. Since @code{STACKEN.KTH.SE} only has
781 direct cross realm setup with @code{KTH.SE}, and @code{DSV.SU.SE} only
782 has direct cross realm setup with @code{SU.SE} they need to use both
783 @code{SU.SE} and @code{KTH.SE} as transit realms.
785 @example
786 [capaths]
787         SU.SE = @{
788                     STACKEN.KTH.SE = KTH.SE
789         @}
790         DSV.SU.SE = @{
791                     STACKEN.KTH.SE = SU.SE KTH.SE
792         @}
794 @end example
796 The order of the @code{PERMITTED-CROSS-REALMS} is not important when
797 doing transit cross realm verification.
799 However, the order is important when the @code{[capaths]} section is used
800 to figure out the intermediate realm to go to when doing multi-realm
801 transit. When figuring out the next realm, the first realm of the list
802 of @code{PERMITTED-CROSS-REALMS} is chosen. This is done in both the
803 client kerberos library and the KDC.
805 @c To test the cross realm configuration, use:
806 @c    kmumble transit-check client server transit-realms ...
808 @node Setting up DNS, Using LDAP to store the database, Transit policy, Setting up a realm
809 @section Setting up DNS
810 @cindex Setting up DNS
812 @subsection Using DNS to find KDC
814 If there is information about where to find the KDC or kadmind for a
815 realm in the @file{krb5.conf} for a realm, that information will be
816 preferred, and DNS will not be queried.
818 Heimdal will try to use DNS to find the KDCs for a realm. First it
819 will try to find a @code{SRV} resource record (RR) for the realm. If no
820 SRV RRs are found, it will fall back to looking for an @code{A} RR for
821 a machine named kerberos.REALM, and then kerberos-1.REALM, etc
823 Adding this information to DNS minimises the client configuration (in
824 the common case, resulting in no configuration needed) and allows the
825 system administrator to change the number of KDCs and on what machines
826 they are running without caring about clients.
828 The downside of using DNS is that the client might be fooled to use the
829 wrong server if someone fakes DNS replies/data, but storing the IP
830 addresses of the KDC on all the clients makes it very hard to change
831 the infrastructure.
833 An example of the configuration for the realm @code{EXAMPLE.COM}:
835 @example
837 $ORIGIN example.com.
838 _kerberos._tcp          SRV     10 1 88 kerberos.example.com.
839 _kerberos._udp          SRV     10 1 88 kerberos.example.com.
840 _kerberos._tcp          SRV     10 1 88 kerberos-1.example.com.
841 _kerberos._udp          SRV     10 1 88 kerberos-1.example.com.
842 _kpasswd._udp           SRV     10 1 464 kerberos.example.com.
843 _kerberos-adm._tcp      SRV     10 1 749 kerberos.example.com.
845 @end example
847 More information about DNS SRV resource records can be found in
848 RFC-2782 (A DNS RR for specifying the location of services (DNS SRV)).
850 @subsection Using DNS to map hostname to Kerberos realm
852 Heimdal also supports a way to lookup a realm from a hostname. This to
853 minimise configuration needed on clients. Using this has the drawback
854 that clients can be redirected by an attacker to realms within the
855 same cross realm trust and made to believe they are talking to the
856 right server (since Kerberos authentication will succeed).
858 An example configuration that informs clients that for the realms
859 it.example.com and srv.example.com, they should use the realm
860 EXAMPLE.COM:
862 @example
864 $ORIGIN example.com.
865 _kerberos.it            TXT     "EXAMPLE.COM"
866 _kerberos.srv           TXT     "EXAMPLE.COM"
868 @end example
870 @node Using LDAP to store the database, Providing Kerberos credentials to servers and programs, Setting up DNS, Setting up a realm
871 @section Using LDAP to store the database
872 @cindex Using the LDAP backend
874 This document describes how to install the LDAP backend for
875 Heimdal. Note that before attempting to configure such an
876 installation, you should be aware of the implications of storing
877 private information (such as users' keys) in a directory service
878 primarily designed for public information. Nonetheless, with a
879 suitable authorisation policy, it is possible to set this up in a
880 secure fashion. A knowledge of LDAP, Kerberos, and C is necessary to
881 install this backend. The HDB schema was devised by Leif Johansson.
883 This assumes, OpenLDAP 2.3 or later.
885 Requirements:
887 @itemize @bullet
889 @item
890 A current release of Heimdal, configured with
891 @code{--with-openldap=/usr/local} (adjust according to where you have
892 installed OpenLDAP).
894 You can verify that you manage to configure LDAP support by running
895 @file{kdc --builtin-hdb}, and checking that @samp{ldap:} is one entry
896 in the list.
898 Its also possible to configure the ldap backend as a shared module,
899 see option --hdb-openldap-module to configure.
901 @item
902 Configure OpenLDAP with @kbd{--enable-local} to enable the local transport.
904 @item
905 Add the hdb schema to the LDAP server, it's included in the source-tree
906 in @file{lib/hdb/hdb.schema}. Example from slapd.conf:
908 @example
909 include /usr/local/etc/openldap/schema/hdb.schema
910 @end example
912 @item
913 Configure the LDAP server ACLs to accept writes from clients over the
914 local transport. For example:
916 @example
917 access to *
918         by dn.exact="uid=heimdal,dc=services,dc=example,dc=com" write
919         ...
921 authz-regexp "gidNumber=.*\\\+uidNumber=0,cn=peercred,cn=external,cn=auth''
922         "uid=heimdal,dc=services,dc=example,dc=com"
924 @end example
926 The sasl-regexp is for mapping between the SASL/EXTERNAL and a user in
927 a tree.  The user that the key is mapped to should be have a
928 krb5Principal aux object with krb5PrincipalName set so that the
929 ``creator'' and ``modifier'' is right in @file{kadmin}.
931 Another option is to create an admins group and add the dn to that
932 group.
934 Since Heimdal talks to the LDAP server over a UNIX domain socket, and
935 uses external sasl authentication, it's not possible to require
936 security layer quality (ssf in cyrus-sasl lingo). So that requirement
937 has to be turned off in OpenLDAP @command{slapd} configuration file
938 @file{slapd.conf}.
940 @example
941 sasl-secprops minssf=0
942 @end example
944 @item
946 Start @command{slapd} with the local listener (as well as the default TCP/IP
947 listener on port 389) as follows:
949 @example
950     slapd -h "ldapi:/// ldap:///"
951 @end example
953 Note: These is a bug in @command{slapd} where it appears to corrupt the krb5Key
954 binary attribute on shutdown. This may be related to our use of the V3
955 schema definition syntax instead of the old UMich-style, V2 syntax.
957 @item
958 You should specify the distinguished name under which your
959 principals will be stored in @file{krb5.conf}. Also you need to
960 enter the path to the kadmin acl file:
963 @example
964 [kdc]
965         database = @{
966                 dbname = ldap:ou=KerberosPrincipals,dc=example,dc=com
967                 hdb-ldap-structural-object = inetOrgPerson
968                 acl_file = /path/to/kadmind.acl
969                 mkey_file = /path/to/mkey
970         @}
971 @end example
973 @samp{mkey_file} can be excluded if you feel that you trust your ldap
974 directory to have the raw keys inside it.  The
975 hdb-ldap-structural-object is not necessary if you do not need Samba
976 comatibility.
980 @item
981 Once you have built Heimdal and started the LDAP server, run kadmin
982 (as usual) to initialise the database. Note that the instructions for
983 stashing a master key are as per any Heimdal installation.
985 @example
986 kdc# kadmin -l
987 kadmin> init EXAMPLE.COM
988 Realm max ticket life [unlimited]:
989 Realm max renewable ticket life [unlimited]:
990 kadmin> ank lukeh
991 Max ticket life [1 day]:
992 Max renewable life [1 week]:
993 Principal expiration time [never]:
994 Password expiration time [never]:
995 Attributes []:
996 lukeh@@EXAMPLE.COM's Password:
997 Verifying password - lukeh@@EXAMPLE.COM's Password:
998 kadmin> exit
999 @end example
1001 Verify that the principal database has indeed been stored in the
1002 directory with the following command:
1004 @example
1005 kdc# ldapsearch -L -h localhost -D cn=manager \
1006  -w secret -b ou=KerberosPrincipals,dc=example,dc=com \
1007  'objectclass=krb5KDCEntry'
1008 @end example
1010 @item
1011 Now consider adding indexes to the database to speed up the access, at
1012 least theses should be added to slapd.conf.
1014 @example
1015 index   objectClass             eq
1016 index   cn                      eq,sub,pres
1017 index   uid                     eq,sub,pres
1018 index   displayName             eq,sub,pres
1019 index   krb5PrincipalName       eq
1020 @end example
1022 @end itemize
1024 @subsection smbk5pwd overlay
1026 The smbk5pwd overlay, updates the krb5Key and krb5KeyVersionNumber
1027 appropriately when it receives an LDAP Password change Extended
1028 Operation:
1030 @url{http://www.openldap.org/devel/cvsweb.cgi/contrib/slapd-modules/smbk5pwd/README?hideattic=1&sortbydate=0}
1032 @subsection Troubleshooting guide
1034 @url{https://sec.miljovern.no/bin/view/Info/TroubleshootingGuide}
1037 @subsection Using Samba LDAP password database
1038 @cindex Samba
1040 @c @node Using Samba LDAP password database, Providing Kerberos credentials to servers and programs, Using LDAP to store the database, Setting up a realm
1041 @c @section Using Samba LDAP password database
1043 The Samba domain and the Kerberos realm can have different names since
1044 arcfour's string to key functions principal/realm independent.  So now
1045 will be your first and only chance name your Kerberos realm without
1046 needing to deal with old configuration files.
1048 First, you should set up Samba and get that working with LDAP backend.
1050 Now you can proceed as in @xref{Using LDAP to store the database}.
1051 Heimdal will pick up the Samba LDAP entries if they are in the same
1052 search space as the Kerberos entries.
1054 @node Providing Kerberos credentials to servers and programs, Setting up PK-INIT, Using LDAP to store the database, Setting up a realm
1055 @section Providing Kerberos credentials to servers and programs
1057 Some services require Kerberos credentials when they start to make
1058 connections to other services or need to use them when they have started.
1060 The easiest way to get tickets for a service is to store the key in a
1061 keytab. Both ktutil get and kadmin ext can be used to get a
1062 keytab. ktutil get is better in that way it changes the key/password
1063 for the user. This is also the problem with ktutil. If ktutil is used
1064 for the same service principal on several hosts, they keytab will only
1065 be useful on the last host. In that case, run the extract command on
1066 one host and then securely copy the keytab around to all other hosts
1067 that need it.
1069 @example
1070 host# ktutil -k /etc/krb5-service.keytab \
1071       get -p lha/admin@@EXAMPLE.ORG service-principal@@EXAMPLE.ORG
1072 lha/admin@@EXAMPLE.ORG's Password:
1073 @end example
1075 To get a Kerberos credential file for the service, use kinit in the
1076 @kbd{--keytab} mode. This will not ask for a password but instead fetch the
1077 key from the keytab.
1079 @example
1080 service@@host$ kinit --cache=/var/run/service_krb5_cache \
1081                --keytab=/etc/krb5-service.keytab \
1082        service-principal@@EXAMPLE.ORG
1083 @end example
1085 Long running services might need credentials longer then the
1086 expiration time of the tickets. kinit can run in a mode that refreshes
1087 the tickets before they expire. This is useful for services that write
1088 into AFS and other distributed file systems using Kerberos. To run the
1089 long running script, just append the program and arguments (if any)
1090 after the principal. kinit will stop refreshing credentials and remove
1091 the credentials when the script-to-start-service exits.
1093 @example
1094 service@@host$ kinit --cache=/var/run/service_krb5_cache \
1095        --keytab=/etc/krb5-service.keytab \
1096        service-principal@@EXAMPLE.ORG \
1097        script-to-start-service argument1 argument2
1098 @end example
1101 @node Setting up PK-INIT, , Providing Kerberos credentials to servers and programs, Setting up a realm
1102 @section Setting up PK-INIT
1104 PK-INIT is levering the existing PKI infrastructure to use
1105 certificates to get the initial ticket, that is usually the krbtgt.
1107 To use PK-INIT you must first have a PKI, so if you don't have one,
1108 it is time to create it. Note that you should read the whole chapter
1109 of the document to see the requirements on the CA software.
1111 There needs to exist a mapping between the certificate and what
1112 principals that certificate is allowed to use. There are several ways
1113 to do this. The administrator can use a configuration file, storing
1114 the principal in the SubjectAltName extension of the certificate, or store the
1115 mapping in the principals entry in the kerberos database.
1117 @section Certificates
1119 This section documents the requirements on the KDC and client
1120 certificates and the format used in the id-pkinit-san OtherName
1121 extention.
1123 @subsection KDC certificate
1125 The certificate for the KDC have serveral requirements.
1127 First the certificate should have an Extended Key Usage (EKU)
1128 id-pkkdcekuoid (1.3.6.1.5.2.3.5) set. Second there must be a
1129 subjectAltName otherName using oid id-pkinit-san (1.3.6.1.5.2.2) in
1130 the type field and a DER encoded KRB5PrincipalName that matches the
1131 name of the TGS of the target realm.
1133 Both of these two requirements are not required by the standard to be
1134 checked by the client if it have external information what the
1135 certificate the KDC is supposed to be used. So it's in the interest of
1136 minimum amount of configuration on the clients they should be included.
1138 Remember that if the client would accept any certificate as the KDC's
1139 certificate, the client could be fooled into trusting something that
1140 isn't a KDC and thus expose the user to giving away information (like
1141 password or other private information) that it is supposed to secret.
1143 Also, if the certificate has a nameConstraints extention with a
1144 Generalname with dNSName or iPAdress it must match the hostname or
1145 adress of the KDC.
1147 @subsection Client certificate
1149 The client certificate may need to have a EKU id-pkekuoid
1150 (1.3.6.1.5.2.3.4) set depending on the certifiate on the KDC.
1152 It possible to store the principal (if allowed by the KDC) in the
1153 certificate and thus delegate responsibility to do the mapping between
1154 certificates and principals to the CA.
1156 This behavior is controlled by KDC configuration option:
1158 @example
1159 [kdc]
1160         pkinit_principal_in_certificate = yes
1161 @end example
1164 @subsubsection Using KRB5PrincipalName in id-pkinit-san
1166 OtherName extention in the GeneralName is used to do the
1167 mapping between certifiate and principal in the certifiate or storing
1168 the krbtgt principal in the KDC certificate.
1170 The principal is stored in a SubjectAltName in the certificate using
1171 OtherName. The oid in the type is id-pkinit-san.
1173 @example
1174 id-pkinit-san OBJECT IDENTIFIER ::= @{ iso (1) org (3) dod (6)
1175 internet (1) security (5) kerberosv5 (2) 2 @}
1176 @end example
1178 The data part of the OtherName is filled with the following DER
1179 encoded ASN.1 structure:
1181 @example
1182 KRB5PrincipalName ::= SEQUENCE @{
1183         realm [0] Realm,
1184         principalName [1] PrincipalName
1186 @end example
1188 where Realm and PrincipalName is defined by the Kerberos ASN.1 specification.
1190 @section Naming certificate using hx509
1192 hx509 is the X.509 software used in Heimdal to handle
1193 certificates. hx509 uses different syntaxes to specify the different
1194 formats the certificates are stored in and what formats they exist in.
1196 There are several formats that can be used, PEM, embedded into PKCS12
1197 files, embedded into PKCS11 devices and raw DER encoded certificates.
1198 Below is a list of types to use.
1201 @table @asis
1203 @item DIR:
1205 DIR is reading all certificates in a directory that is DER or PEM
1206 formatted.
1208 The main feature of DIR is that the directory is read on demand when
1209 iterating over certificates, that way applictions can for some cases
1210 avoid to store all certificates in memory. It's very useful for tests
1211 that iterate over larger amount of certificates.
1213 Syntax is:
1215 @example
1216 DIR:/path/to/der/files
1217 @end example
1219 @item FILE:
1221 FILE: is used to have the lib pick up a certificate chain and a
1222 private key. The file can be either a PEM (openssl) file or a raw DER
1223 encoded certificate. If it's a PEM file it can contain several keys and
1224 certificates and the code will try to match the private key and
1225 certificate together.
1227 Its useful to have one PEM file that contains all the trust anchors.
1229 Syntax is:
1231 @example
1232 FILE:certificate.pem,private-key.key,other-cert.pem,....
1233 @end example
1235 @item PKCS11:
1237 PKCS11: is used to handle smartcards via PKCS11 drivers, for example
1238 soft-token, opensc, or muscle. The default is to use all slots on the
1239 device/token.
1241 Syntax is:
1243 @example
1244 PKCS11:shared-object.so
1245 @end example
1247 @item PKCS12:
1249 PKCS12: is used to handle PKCS12 files. PKCS12 files commonly have the
1250 extension pfx or p12.
1252 Syntax is:
1254 @example
1255 PKCS12:/path/to/file.pfx
1256 @end example
1258 @end table
1260 @section Configure the Kerberos software
1262 First configure the client's trust anchors and what parameters to
1263 verify, see subsection below how to do that. Now you can use kinit to
1264 get yourself tickets. One example how that can look like is:
1266 @example
1267 $ kinit -C FILE:$HOME/.certs/lha.crt,$HOME/.certs/lha.key lha@@EXAMPLE.ORG
1268 Enter your private key passphrase:
1269 : lha@@nutcracker ; klist
1270 Credentials cache: FILE:/tmp/krb5cc_19100a
1271         Principal: lha@@EXAMPLE.ORG
1273   Issued           Expires          Principal
1274 Apr 20 02:08:08  Apr 20 12:08:08  krbtgt/EXAMPLE.ORG@@EXAMPLE.ORG
1275 @end example
1277 Using PKCS11 it can look like this instead:
1279 @example
1280 $ kinit -C PKCS11:/usr/heimdal/lib/hx509.so lha@@EXAMPLE.ORG
1281 PIN code for SoftToken (slot):
1282 $ klist
1283 Credentials cache: API:4
1284         Principal: lha@@EXAMPLE.ORG
1286   Issued           Expires          Principal
1287 Mar 26 23:40:10  Mar 27 09:40:10  krbtgt/EXAMPLE.ORG@@EXAMPLE.ORG
1288 @end example
1291 Write about the kdc.
1293 @section Configure the client
1295 @example
1296 [appdefaults]
1297         pkinit_anchors = FILE:/path/to/trust-anchors.pem
1299 [realms]
1300         EXAMPLE.COM = @{
1301                 pkinit_require_eku = true
1302                 pkinit_require_krbtgt_otherName = true
1303                 pkinit_win2k = no
1304                 pkinit_win2k_require_binding = yes
1305         @}
1307 @end example
1309 @section Configure the KDC
1311 @example
1312 [kdc]
1313         enable-pkinit = yes
1314         pkinit_identity = FILE:/secure/kdc.crt,/secure/kdc.key
1315         pkinit_anchors = FILE:/path/to/trust-anchors.pem
1316         pkinit_pool = PKCS12:/path/to/useful-intermediate-certs.pfx
1317         pkinit_pool = FILE:/path/to/other-useful-intermediate-certs.pem
1318         pkinit_allow_proxy_certificate = no
1319         pkinit_win2k_require_binding = yes
1320         pkinit_principal_in_certificate = no
1321 @end example
1323 @subsection Using pki-mapping file
1325 Note that the file name is space sensitive.
1327 @example
1328 # cat /var/heimdal/pki-mapping
1329 # comments starts with #
1330 lha@@EXAMPLE.ORG:C=SE,O=Stockholm universitet,CN=Love,UID=lha
1331 lha@@EXAMPLE.ORG:CN=Love,UID=lha
1332 @end example
1334 @subsection Using the Kerberos database
1336 @section Use hxtool to create certificates
1338 @subsection Generate certificates
1340 First you need to generate a CA certificate, change the --subject to
1341 something appropriate, the CA certificate will be valid for 10 years.
1343 You need to change --subject in the command below.
1345 @example
1346 hxtool issue-certificate \
1347     --self-signed \
1348     --issue-ca \
1349     --generate-key=rsa \
1350     --subject="CN=CA,DC=test,DC=h5l,DC=se" \
1351     --lifetime=10years \
1352     --certificate="FILE:ca.pem"
1353 @end example
1355 The KDC needs to have a certificate, so generate a certificate of the
1356 type ``pkinit-kdc'' and set the PK-INIT specifial SubjectAltName to the
1357 name of the krbtgt of the realm.
1359 You need to change --subject and --pk-init-principal in the command below.
1361 @example
1362 hxtool issue-certificate \
1363     --ca-certificate=FILE:ca.pem \
1364     --generate-key=rsa \
1365     --type="pkinit-kdc" \
1366     --pk-init-principal="krbtgt/TEST.H5L.SE@@TEST.H5L.SE" \
1367     --subject="uid=kdc,DC=test,DC=h5l,DC=se" \
1368     --certificate="FILE:kdc.pem"
1369 @end example
1371 The users also needs to have a certificate, so generate a certificate
1372 of the type ``pkinit-client''. The client doesn't need to have the PK-INIT
1373 SubjectAltName set, you can have the Subject DN in the ACL file
1374 (pki-mapping) instead.
1376 You need to change --subject and --pk-init-principal in the command below.
1378 @example
1379 hxtool issue-certificate \
1380     --ca-certificate=FILE:ca.pem \
1381     --generate-key=rsa \
1382     --type="pkinit-client" \
1383     --pk-init-principal="lha@@TEST.H5L.SE" \
1384     --subject="uid=lha,DC=test,DC=h5l,DC=se" \
1385     --certificate="FILE:user.pem"
1386 @end example
1388 @subsection Validate the certificate
1390 hxtool also contains a tool that will validate certificates according to
1391 rules from the PKIX document. These checks are not complete, but a good test
1392 to check if you got all of the basic bits right in your certificates.
1394 @example
1395 hxtool validate FILE:user.pem
1396 @end example
1398 @section Use OpenSSL to create certificates
1400 This section tries to give the CA owners hints how to create
1401 certificates using OpenSSL (or CA software based on OpenSSL).
1403 @subsection Using OpenSSL to create certificates with krb5PrincipalName
1405 To make OpenSSL create certificates with krb5PrincipalName use
1406 @file{openssl.cnf} as described below. To see a complete example of
1407 creating client and KDC certificates, see the test-data generation
1408 script @file{lib/hx509/data/gen-req.sh} in the source-tree. The
1409 certicates it creates are used to test the PK-INIT functionality in
1410 @file{tests/kdc/check-kdc.in}.
1412 To use this example you have to use OpenSSL 0.9.8a or later.
1414 @example
1416 [user_certificate]
1417 subjectAltName=otherName:1.3.6.1.5.2.2;SEQUENCE:princ_name
1419 [princ_name]
1420 realm = EXP:0, GeneralString:MY.REALM
1421 principal_name = EXP:1, SEQUENCE:principal_seq
1423 [principal_seq]
1424 name_type = EXP:0, INTEGER:1
1425 name_string = EXP:1, SEQUENCE:principals
1427 [principals]
1428 princ1 = GeneralString:userid
1430 @end example
1432 Command usage
1434 @example
1435 openssl x509 -extensions user_certificate
1436 openssl ca -extensions user_certificate
1437 @end example
1440 @c --- ms certificate
1442 @c [ new_oids ]
1443 @c msCertificateTemplateName       = 1.3.6.1.4.1.311.20.2
1446 @c [ req_smartcard ]
1447 @c keyUsage                = digitalSignature, keyEncipherment
1448 @c extendedKeyUsage        = msSmartcardLogin, clientAuth
1449 @c msCertificateTemplateName       = ASN1:BMP:SmartcardLogon
1450 @c subjectAltName          = otherName:msUPN;UTF8:lukeh@dsg.padl.com
1451 @c #subjectAltName         = email:copy
1454 @section Using PK-INIT with Windows
1456 @subsection Client configration
1458 Clients using a Windows KDC with PK-INIT need configuration since
1459 windows uses pre-standard format and this can't be autodetected.
1461 The pkinit_win2k_require_binding option requires the reply for the KDC
1462 to be of the new, secure, type that binds the request to reply. Before
1463 clients should fake the reply from the KDC. To use this option you
1464 have to apply a fix from Microsoft.
1466 @example
1467 [realms]
1468         MY.MS.REALM = @{
1469                 pkinit_win2k = yes
1470                 pkinit_win2k_require_binding = no
1471         @}
1472 @end example
1474 @subsection Certificates
1476 The client certificates need to have the extended keyusage ``Microsoft
1477 Smartcardlogin'' (openssl have the oid shortname msSmartcardLogin).
1479 See Microsoft Knowledge Base Article - 281245 ``Guidelines for Enabling
1480 Smart Card Logon with Third-Party Certification Authorities'' for a
1481 more extensive description of how set setup an external CA to it
1482 includes all information that will make a Windows KDC happy.
1484 @subsection Configure Windows 2000 CA
1486 To enable Microsoft Smartcardlogin> for certificates in your Windows
1487 2000 CA, you want to look at Microsoft Knowledge Base Article -
1488 313274 ``HOW TO: Configure a Certification Authority to Issue
1489 Smart Card Certificates in Windows''.