mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-25 08:21:05 -06:00
195a65d5c2
Use ipakdb instead of kldap and change install procedures accordingly Note that we do not need to store the master key in a keytab as we can read it off of ldap in our driver.
58 lines
1.6 KiB
Plaintext
58 lines
1.6 KiB
Plaintext
#kerberos user
|
|
dn: uid=kdc,cn=sysaccounts,cn=etc,$SUFFIX
|
|
changetype: add
|
|
objectclass: account
|
|
objectclass: simplesecurityobject
|
|
uid: kdc
|
|
userPassword: $PASSWORD
|
|
passwordExpirationTime: 20380119031407Z
|
|
nsIdleTimeout: 0
|
|
|
|
#kerberos base object
|
|
dn: cn=kerberos,$SUFFIX
|
|
changetype: add
|
|
objectClass: krbContainer
|
|
objectClass: top
|
|
cn: kerberos
|
|
aci: (targetattr="*")(version 3.0; acl "KDC System Account"; allow (all) userdn= "ldap:///uid=kdc,cn=sysaccounts,cn=etc,$SUFFIX";)
|
|
|
|
#Realm base object
|
|
dn: cn=$REALM,cn=kerberos,$SUFFIX
|
|
changetype: add
|
|
cn: $REALM
|
|
objectClass: top
|
|
objectClass: krbrealmcontainer
|
|
objectClass: krbticketpolicyaux
|
|
krbSubTrees: $SUFFIX
|
|
krbSearchScope: 2
|
|
krbSupportedEncSaltTypes: aes256-cts:normal
|
|
krbSupportedEncSaltTypes: aes256-cts:special
|
|
krbSupportedEncSaltTypes: aes128-cts:normal
|
|
krbSupportedEncSaltTypes: aes128-cts:special
|
|
krbSupportedEncSaltTypes: des3-hmac-sha1:normal
|
|
krbSupportedEncSaltTypes: des3-hmac-sha1:special
|
|
krbSupportedEncSaltTypes: arcfour-hmac:normal
|
|
krbSupportedEncSaltTypes: arcfour-hmac:special
|
|
krbMaxTicketLife: 86400
|
|
krbMaxRenewableAge: 604800
|
|
krbDefaultEncSaltTypes: aes256-cts:special
|
|
krbDefaultEncSaltTypes: aes128-cts:special
|
|
krbDefaultEncSaltTypes: des3-hmac-sha1:special
|
|
krbDefaultEncSaltTypes: arcfour-hmac:special
|
|
|
|
# Default password Policy
|
|
dn: cn=global_policy,cn=$REALM,cn=kerberos,$SUFFIX
|
|
changetype: add
|
|
objectClass: top
|
|
objectClass: nsContainer
|
|
objectClass: krbPwdPolicy
|
|
krbMinPwdLife: 3600
|
|
krbPwdMinDiffChars: 0
|
|
krbPwdMinLength: 8
|
|
krbPwdHistoryLength: 0
|
|
krbMaxPwdLife: 7776000
|
|
krbPwdMaxFailure: 6
|
|
krbPwdFailureCountInterval: 60
|
|
krbPwdLockoutDuration: 600
|
|
|