kerberos5.conf

来自「这是linux下ssl vpn的实现程序」· CONF 代码 · 共 53 行

CONF
53
字号
# 
# All rights reserved.
#
#pragma ident	@(#)krb5.conf	1.1 00/12/08

[libdefaults]
        default_realm = MYDOMAIN.COM
	default_checksum = rsa-md5
#default_checksum = crc32

# yourdomaincontroller is the name of the domain controller / active directory server acting as the KDC in your windows network
[realms]
        MYDOMAIN.COM = {
                kdc = pdc.mydomain.com
        }

[domain_realm]
	.mydomain.com = MYDOMAIN.COM

[logging]
        default = CONSOLE
	kdc_rotate = {

# How often to rotate kdc.log. Logs will get rotated no more
# often than the period, and less often if the KDC is not used
# frequently.

		period = 1d

# how many versions of kdc.log to keep around (kdc.log.0, kdc.log.1, ...)

		versions = 10
	}

[appdefaults]
	gkadmin = {
        	help_url = http://localhost:8888/ab2/coll.384.2/SEAM
	}
	kinit = {
		renewable = true
		forwardable= true
	}
	rlogin = {
		forwardable= true
	}
	rsh = {
		forwardable= true
	}
	telnet = {
        	autologin = true 
		forwardable= true
	}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?