Guest User

Untitled

a guest
Dec 15th, 2017
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. # This is an example of krb5.conf for authentication with Active Directory
  2. # Tested on libkrb5-3 1.15-1+deb9u1
  3.  
  4. [libdefaults]
  5. default_realm = EXAMPLE.COM
  6. dns_lookup_realm = true
  7. dns_lookup_kdc = true
  8. forwardable = true
  9.  
  10. # Values for next three parameters should be used from Default Domain Policy GPO
  11. # Default Domain Policy \ Computer Configuration \ Policies \ Windows Settings \ ...
  12. # ... \ Security Settings Account Policies \ Kerberos Policy
  13. # Maximum lifetime for user ticket
  14. ticket_lifetime = 10h
  15. # Maximum lifetime for user ticket renewal
  16. renew_lifetime = 7d
  17. # Maximum tolerance for computer clock synchronization
  18. clockskew = 300
  19.  
  20. [realms]
  21. EXAMPLE.COM = {
  22. admin_server = dc01.example.com
  23. kdc = dc01.example.com
  24. kdc = dc02.example.com
  25. kdc = dc03.example.com
  26. kdc = dc04.example.com
  27. kdc = dc05.example.com
  28. }
Add Comment
Please, Sign In to add comment