Advertisement
ffilz

krb5.conf

Apr 17th, 2019
396
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # To opt out of the system crypto-policies configuration of krb5, remove the
  2. # symlink at /etc/krb5.conf.d/crypto-policies which will not be recreated.
  3. includedir /etc/krb5.conf.d/
  4.  
  5. [logging]
  6.  default = FILE:/var/log/krb5libs.log
  7.  kdc = FILE:/var/log/krb5kdc.log
  8.  admin_server = FILE:/var/log/kadmind.log
  9.  
  10. [libdefaults]
  11.  dns_lookup_realm = false
  12.  ticket_lifetime = 24h
  13.  renew_lifetime = 7d
  14.  forwardable = true
  15.  rdns = false
  16. # default_realm = EXAMPLE.COM
  17.  default_realm = LOCALDOMAIN
  18.  default_ccache_name = KEYRING:persistent:%{uid}
  19.  
  20. [realms]
  21. # EXAMPLE.COM = {
  22. #  kdc = kerberos.example.com
  23. #  admin_server = kerberos.example.com
  24. # }
  25.  LOCALDOMAIN = {
  26.   kdc = localhost.localdomain
  27.   admin_server = localhost.localdomain
  28.  }
  29.  
  30. [domain_realm]
  31. # .example.com = EXAMPLE.COM
  32. # example.com = EXAMPLE.COM
  33. .localdomain = LOCALDOMAIN
  34. localdomain = LOCALDOMAIN
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement