-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Yftach Herzog <[email protected]>
- Loading branch information
1 parent
cc451c5
commit 0247a7e
Showing
2 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# https://gitlab.corp.redhat.com/it-iam/system-configs/-/raw/master/krb5/idm/linux-krb5.conf | ||
includedir /etc/krb5.conf.d/ | ||
|
||
# depending on your config, you may wish to uncomment the following: | ||
# includedir /var/lib/sss/pubconf/krb5.include.d/ | ||
|
||
[libdefaults] | ||
default_realm = IPA.REDHAT.COM | ||
dns_lookup_realm = true | ||
dns_lookup_kdc = true | ||
rdns = false | ||
dns_canonicalize_hostname = false | ||
ticket_lifetime = 24h | ||
forwardable = true | ||
udp_preference_limit = 0 | ||
default_ccache_name = KEYRING:persistent:%{uid} | ||
|
||
[realms] | ||
REDHAT.COM = { | ||
default_domain = redhat.com | ||
dns_lookup_kdc = true | ||
master_kdc = kerberos.corp.redhat.com | ||
admin_server = kerberos.corp.redhat.com | ||
} | ||
|
||
IPA.REDHAT.COM = { | ||
default_domain = ipa.redhat.com | ||
dns_lookup_kdc = true | ||
# Trust tickets issued by legacy realm on this host | ||
auth_to_local = RULE:[1:$1@$0](.*@REDHAT\.COM)s/@.*// | ||
auth_to_local = DEFAULT | ||
} | ||
|
||
#DO NOT ADD A [domain_realms] section | ||
#https://mojo.redhat.com/docs/DOC-1166841 |