10Sstevel@tonic-gate# 20Sstevel@tonic-gate# CDDL HEADER START 30Sstevel@tonic-gate# 40Sstevel@tonic-gate# The contents of this file are subject to the terms of the 5*4807Smp153739# Common Development and Distribution License (the "License"). 6*4807Smp153739# You may not use this file except in compliance with the License. 70Sstevel@tonic-gate# 80Sstevel@tonic-gate# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 90Sstevel@tonic-gate# or http://www.opensolaris.org/os/licensing. 100Sstevel@tonic-gate# See the License for the specific language governing permissions 110Sstevel@tonic-gate# and limitations under the License. 120Sstevel@tonic-gate# 130Sstevel@tonic-gate# When distributing Covered Code, include this CDDL HEADER in each 140Sstevel@tonic-gate# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 150Sstevel@tonic-gate# If applicable, add the following below this CDDL HEADER, with the 160Sstevel@tonic-gate# fields enclosed by brackets "[]" replaced with your own identifying 170Sstevel@tonic-gate# information: Portions Copyright [yyyy] [name of copyright owner] 180Sstevel@tonic-gate# 190Sstevel@tonic-gate# CDDL HEADER END 200Sstevel@tonic-gate# 210Sstevel@tonic-gate# 22*4807Smp153739# Copyright 2007 Sun Microsystems, Inc. All rights reserved. 230Sstevel@tonic-gate# Use is subject to license terms. 240Sstevel@tonic-gate# 250Sstevel@tonic-gate# ident "%Z%%M% %I% %E% SMI" 260Sstevel@tonic-gate# 270Sstevel@tonic-gate 280Sstevel@tonic-gate# krb5.conf template 290Sstevel@tonic-gate# In order to complete this configuration file 300Sstevel@tonic-gate# you will need to replace the __<name>__ placeholders 31*4807Smp153739# with appropriate values for your network and uncomment the 32*4807Smp153739# appropriate entries. 330Sstevel@tonic-gate# 340Sstevel@tonic-gate[libdefaults] 35*4807Smp153739# default_realm = ___default_realm___ 360Sstevel@tonic-gate 370Sstevel@tonic-gate[realms] 38*4807Smp153739# ___default_realm___ = { 39*4807Smp153739# kdc = ___master_kdc___ 40*4807Smp153739# kdc = ___slave_kdc1___ 41*4807Smp153739# kdc = ___slave_kdc2___ 42*4807Smp153739# kdc = ___slave_kdcN___ 43*4807Smp153739# admin_server = ___master_kdc___ 44*4807Smp153739# } 450Sstevel@tonic-gate 460Sstevel@tonic-gate[domain_realm] 47*4807Smp153739# ___domainname___ = ___default_realm___ 480Sstevel@tonic-gate 490Sstevel@tonic-gate[logging] 500Sstevel@tonic-gate default = FILE:/var/krb5/kdc.log 510Sstevel@tonic-gate kdc = FILE:/var/krb5/kdc.log 520Sstevel@tonic-gate kdc_rotate = { 530Sstevel@tonic-gate 540Sstevel@tonic-gate# How often to rotate kdc.log. Logs will get rotated no more 550Sstevel@tonic-gate# often than the period, and less often if the KDC is not used 560Sstevel@tonic-gate# frequently. 570Sstevel@tonic-gate 580Sstevel@tonic-gate period = 1d 590Sstevel@tonic-gate 600Sstevel@tonic-gate# how many versions of kdc.log to keep around (kdc.log.0, kdc.log.1, ...) 610Sstevel@tonic-gate 620Sstevel@tonic-gate versions = 10 630Sstevel@tonic-gate } 640Sstevel@tonic-gate 650Sstevel@tonic-gate[appdefaults] 660Sstevel@tonic-gate kinit = { 670Sstevel@tonic-gate renewable = true 680Sstevel@tonic-gate forwardable= true 690Sstevel@tonic-gate } 70