Update Servers & Workflows/Linux/Automation/Puppet/Puppet Bolt.md

This commit is contained in:
2024-11-14 21:53:57 -07:00
parent 355155794e
commit 1c7700ad9c

View File

@ -140,9 +140,9 @@ We need to configure Kerberos to know how to reach the domain, this is achieved
[realms]
BUNNY-LAB.IO = {
kdc = LAB-DC-01.bunny-lab.io
kdc = LAB-DC-02.bunny-lab.io
admin_server = LAB-DC-01.bunny-lab.io
kdc = LAB-DC-01.bunny-lab.io # (1)
kdc = LAB-DC-02.bunny-lab.io # (2)
admin_server = LAB-DC-01.bunny-lab.io # (3)
}
[domain_realm]
@ -150,6 +150,10 @@ We need to configure Kerberos to know how to reach the domain, this is achieved
bunny-lab.io = BUNNY-LAB.IO
```
1. Your primary domain controller
2. Your secondary domain controller (if applicable)
3. This is your Primary Domain Controller (PDC)
### Initialize Kerberos Connection
Now we need to log into the domain using (preferrably) domain administrator credentials, such as the example below. You will be prompted to enter your domain password.
``` sh