[6271] in Kerberos
Re: Problem getting V4 working..
daemon@ATHENA.MIT.EDU (Derrick J. Brashear)
Tue Nov 21 14:23:29 1995
To: kerberos@MIT.EDU
Date: Mon, 20 Nov 1995 10:40:44 -0500
From: "Derrick J. Brashear" <shadow+@andrew.cmu.edu>
Excerpts from netnews.comp.protocols.kerberos: 18-Nov-95 Re: Problem
getting V4 work.. by Josh Wilmes@matisse.its.
> Excellent.. Thanks. Now, until I can get them to put in a patch, is there a
> workaround? I have noticed that other machines on campus are running
Kerberos
>
> 4 just fine, but it is a version that has been modified somewhat (using
> transarc string-to-key I believe). Is there any patch I can put into
mine tha
> t
> will help with this problem?
Sure, make aklog not try to get afs.your.cell.name@YOUR.CELL.NAME first,
or do something like this in aklog_main.c:
status = params.get_cred(name, instance, realm_of_cell, &c);
#ifdef BROKEN_KASERVERS
if ((status == KDC_PR_UNKNOWN)||(status == KDC_NAME_EXP)) {
#else
if (status == KDC_PR_UNKNOWN) {
#endif
(and define BROKEN_KASERVERS)
-D