Advertisement
Guest User

Untitled

a guest
Nov 9th, 2014
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.04 KB | None | 0 0
  1. [logging]
  2.  default = FILE:/var/log/krb5/krb5libs.log
  3.  kdc = FILE:/var/log/krb5/krb5kdc.log
  4.  admin_server = FILE:/var/log/krb5/kadmind.log
  5.  
  6. [libdefaults]
  7.  default_realm = DOMAIN.LOC
  8.  clockskew = 300
  9.  dns_lookup_realm = false
  10.  dns_lookup_kdc = false
  11.  ticket_lifetime = 24h
  12.  renew_lifetime = 7d
  13.  forwardable = true
  14.  default_keytab_name = /etc/squid/HTTP7.keytab
  15.  
  16.  ; for Windows 2003
  17.  default_tgs_enctypes = rc4-hmac des-cbc-crc des-cbc-md5
  18.  default_tkt_enctypes = rc4-hmac des-cbc-crc des-cbc-md5
  19.  permitted_enctypes = rc4-hmac des-cbc-crc des-cbc-md5
  20.  
  21. [realms]
  22.  DOMAIN.LOC = {
  23.     kdc = 192.168.0.1
  24.     admin_server = 192.168.0.1
  25.     default_domain = domain.loc
  26.  }
  27.  
  28. [domain_realm]
  29.  .myorganization.nsk.su = DOMAIN.LOC
  30.  myorganization.nsk.su = DOMAIN.LOC
  31.  .domain.loc = DOMAIN.LOC
  32.  domain.loc = DOMAIN.LOC
  33.  .DOMAIN.LOC = DOMAIN.LOC
  34.  DOMAIN.LOC = DOMAIN.LOC
  35.  
  36. [appdefaults]
  37. pam = {
  38. ticket_lifetime = 1d
  39. renew_lifetime = 1d
  40. forwardable = true
  41. proxiable = false
  42. retain_after_close = false
  43. minimum_uid = 1
  44. use_shmem = sshd
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement