mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-26 17:01:14 -06:00
f769045f0a
Set `pkinit_pool` in `kdc.conf` to a CA certificate bundle of all CAs known to IPA. Make sure `cacert.pem` is exported in all installation code paths. Use the KDC certificate itself as a PKINIT anchor in `login_password`. https://pagure.io/freeipa/issue/6831 Reviewed-By: Stanislav Laznicka <slaznick@redhat.com> Reviewed-By: Martin Babinsky <mbabinsk@redhat.com>
20 lines
468 B
Plaintext
20 lines
468 B
Plaintext
[kdcdefaults]
|
|
kdc_ports = 88
|
|
kdc_tcp_ports = 88
|
|
restrict_anonymous_to_tgt = true
|
|
|
|
[realms]
|
|
$REALM = {
|
|
master_key_type = aes256-cts
|
|
max_life = 7d
|
|
max_renewable_life = 14d
|
|
acl_file = $KRB5KDC_KADM5_ACL
|
|
dict_file = $DICT_WORDS
|
|
default_principal_flags = +preauth
|
|
; admin_keytab = $KRB5KDC_KADM5_KEYTAB
|
|
pkinit_identity = FILE:$KDC_CERT,$KDC_KEY
|
|
pkinit_anchors = FILE:$KDC_CERT
|
|
pkinit_anchors = FILE:$CACERT_PEM
|
|
pkinit_pool = FILE:$CA_BUNDLE_PEM
|
|
}
|