krb5.conf 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #
  2. # All rights reserved.
  3. #
  4. #pragma ident @(#)krb5.conf 1.1 00/12/08
  5. [libdefaults]
  6. default_realm = KDSV
  7. default_checksum = rsa-md5
  8. #default_checksum = crc32
  9. #Sets the maximum allowable amount of clockskew in seconds that the library will tolerate before assuming that a Kerberos message is invalid. The default value is 300 seconds, or five minutes.
  10. clockskew = 360
  11. # yourdomaincontroller is the name of the domain controller / active directory server acting as the KDC in your windows network
  12. [realms]
  13. KDSV = {
  14. kdc = 192.168.16.2
  15. }
  16. [domain_realm]
  17. .kdsv = KDSV
  18. [logging]
  19. default = FILE:E:/EAS4.1/apusic/logs/default.log
  20. kdc = FILE:E:/EAS4.1/apusic/logs/kdc.log
  21. admin_server = FILE:E:/EAS4.1/apusic/logs/kadmin.log
  22. kdc_rotate = {
  23. # How often to rotate kdc.log. Logs will get rotated no more
  24. # often than the period, and less often if the KDC is not used
  25. # frequently.
  26. period = 1d
  27. # how many versions of kdc.log to keep around (kdc.log.0, kdc.log.1, ...)
  28. versions = 10
  29. }