blob: 5b9b4b9c16d25fcf055117c781c0cfd2505161d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# $OpenBSD: krb5.conf.example,v 1.7 2013/07/10 05:12:15 ajacoutot Exp $
#
# Kerberos 5 minimal configuration example.
# See krb5.conf(5) and the heimdal info(1) page for more information.
[libdefaults]
# local realm(s)
default_realm = DOMAIN.TLD
[realms]
DOMAIN.TLD = {
# list of KDC(s) for this realm
kdc = kerberos.domain.tld
# admin server for this realm
admin_server = kerberos.domain.tld
}
[kadmin]
# default salt string
default_keys = v5
[logging]
# log to syslog(3)
kdc = SYSLOG:INFO:DAEMON
kpasswdd = SYSLOG:INFO:AUTH
default = SYSLOG:INFO:DAEMON
|