Advertisement
Guest User

Untitled

a guest
Apr 3rd, 2012
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.89 KB | None | 0 0
  1. [libdefaults]
  2. default_realm = DOMAIN.DOM
  3.  
  4. # The following krb5.conf variables are only for MIT Kerberos.
  5. krb4_config = /etc/krb.conf
  6. krb4_realms = /etc/krb.realms
  7. kdc_timesync = 1
  8. ccache_type = 4
  9. forwardable = true
  10. proxiable = true
  11.  
  12. ticket_lifetime = 24h
  13. dns_lookup_realm = false
  14. dns_lookup_kdc = false
  15.  
  16. # The following encryption type specification will be used by MIT Kerberos
  17. # if uncommented. In general, the defaults in the MIT Kerberos code are
  18. # correct and overriding these specifications only serves to disable new
  19. # encryption types as they are added, creating interoperability problems.
  20. #
  21. # Thie only time when you might need to uncomment these lines and change
  22. # the enctypes is if you have local software that will break on ticket
  23. # caches containing ticket encryption types it doesn't know about (such as
  24. # old versions of Sun Java).
  25.  
  26. # default_tgs_enctypes = des3-hmac-sha1
  27. # default_tkt_enctypes = des3-hmac-sha1
  28. # permitted_enctypes = des3-hmac-sha1
  29.  
  30. # The following libdefaults parameters are only for Heimdal Kerberos.
  31. v4_instance_resolve = false
  32. v4_name_convert = {
  33. host = {
  34. rcmd = host
  35. ftp = ftp
  36. }
  37. plain = {
  38. something = something-else
  39. }
  40. }
  41. fcc-mit-ticketflags = true
  42.  
  43. [realms]
  44. DKFX.STACK = {
  45. kdc = dc.domain.dom
  46. admin_server = dc.domain.dom
  47. }
  48.  
  49. [domain_realm]
  50. domain.dom = DOMAIN.DOM
  51. .domain.dom = DOMAIN.DOM
  52.  
  53. [login]
  54. krb4_get_tickets = false
  55.  
  56. [appdefaults]
  57. pam = {
  58. debug = false
  59. ticket_lifetime = 36000
  60. renew__lifetime = 36000
  61. forwardable = true
  62. krb4_convert = false
  63. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement