12345678910111213141516171819202122232425262728293031323334353637383940 |
- #
- # All rights reserved.
- #
- #pragma ident @(#)krb5.conf 1.1 00/12/08
- [libdefaults]
- default_realm = KDSV
- default_checksum = rsa-md5
- #default_checksum = crc32
- #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.
- clockskew = 360
- # yourdomaincontroller is the name of the domain controller / active directory server acting as the KDC in your windows network
- [realms]
- KDSV = {
- kdc = 192.168.16.2
- }
- [domain_realm]
- .kdsv = KDSV
- [logging]
- default = FILE:E:/EAS4.1/apusic/logs/default.log
- kdc = FILE:E:/EAS4.1/apusic/logs/kdc.log
- admin_server = FILE:E:/EAS4.1/apusic/logs/kadmin.log
-
- kdc_rotate = {
- # How often to rotate kdc.log. Logs will get rotated no more
- # often than the period, and less often if the KDC is not used
- # frequently.
- period = 1d
- # how many versions of kdc.log to keep around (kdc.log.0, kdc.log.1, ...)
- versions = 10
- }
|