.oO turn on ~ tune in ~ drop out Oo.
Configuring Linux as Kerberos client
Configuring Linux as Kerberos client

Configuring Linux as Kerberos client

Install the krb5-user package (Debian).
The package contains the basic programs to authenticate to MIT Kerberos, change passwords, and talk to the admin server (to create and delete principals, list principals, etc.).

apt-get install krb5-user

Edit the content of the /etc/krb5.conf configuration file

	[libdefaults]
		default_realm = DOMAIN.LOCAL
	#OPTIONAL	default_tgs_enctypes = arcfour-hmac-md5 des-cbc-crc des-cbc-md5
    #OPTIONAL   default_tkt_enctypes = arcfour-hmac-md5 des-cbc-crc des-cbc-md5
	
	[realms]
		DOMAIN.LOCAL = {
			kdc = dc.domain.local
		}