Created
December 22, 2014 01:08
-
-
Save scottslowe/3eb79dec00dc8e754b6c to your computer and use it in GitHub Desktop.
This is a krb5.conf file from a SLED 10 workstation configured to authenticate against Microsoft Active Directory.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
############### | |
# krb5.conf for connecting with Windows Server 2003# | |
############### | |
[logging] | |
kdc = FILE:/var/log/krb5/krb5kdc.log | |
admin_server = FILE:/var/log/krb5/kadmind.log | |
default = SYSLOG:NOTICE:DAEMON | |
[libdefaults] | |
ticket_lifetime = 24000 | |
default_realm = DOMAIN.COM | |
default_tkt_enctypes = des3-hmac-sha1 des-cbc-crc des-cbc-md5 aes256-cts arcfour-hmac-md5 | |
default_tgs_enctypes = des3-hmac-sha1 des-cbc-crc des-cbc-md5 aes256-cts arcfour-hmac-md5 | |
[realms] | |
DOMAIN.COM = { | |
kdc = windows-dc-hostname.domain.com | |
admin_server = windows-dc-hostname.domain.com | |
default_domain = DOMAIN.COM | |
} | |
[domain_realm] | |
.domain.com = DOMAIN.COM | |
domain.com = DOMAIN.COM |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment