-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json.example
67 lines (58 loc) · 2.14 KB
/
config.json.example
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
// bind-pri-records: Directory entry for all BIND records
"bind-pri-records": "/etc/bind/pri/",
// Kerberos Realm Information
"realm": "realm",
"realm-tld": "tld",
// domain-guid: Optional pre-defined domain GUID. If not defined, a random GUID will be assigned.
//"domain-guid": "00000000-0000-0000-00000000",
// Define individual domain controllers
"domain-controllers": [
{
// Set to DC FQDN
"fqdn": "dc.realm.tld",
// Set to DC static IP
"ip": "192.168.1.99"
// dsaGuid: Optional DsaGuid definition. If not defined, a random GUID will be assigned.
// "dsaGuid": ""
}
],
// global-catalog-location: Defines which entry should be set as the GC server
"global-catalog-location": 0,
// Define the FQDNs of your KDCs and secondary KDCs
"kerberos-kdc": [
{"fqdn": "dc.realm.tld"}
],
// primary-kdc: Defines which kerberos-kdc record is the primary KDC
"primary-kdc": 0,
// Define individual sites, assigning the domain controllers and matching kerberos servers to each
"sites": [
{
// name: MSDN denotes the valid character set for this field as: [a-zA-Z0-9-.]
// See the following URL for limitation: https://support.microsoft.com/en-us/kb/909264
"name": "Default-First-Site-Name",
// pdc: Index number of domain PDC
"pdc": 0,
// domain-controllers: Array of indexes of all site DCs
"domain-controllers": [0],
// kerberos-servers: Array of indexes of all site KDCs
"kerberos-servers": [0]
}
],
// Define all the defaults for the each zone's SOA
"soa": {
// ns: set to the FQDN of the name server
"ns": "ns.realm.tld",
"admin": "root.realm.tld",
"default-refresh": 3600,
"default-retry": 600,
"default-expires": 86400,
"default-min-ttl": 3600,
// serial: Set the serial number for all records
"serial": 1
},
"options": {
// create-zones: Inject zone entries in the BIND configuration
"create-zones": false
}
}