Re: Can kinit but not kvno
John Gilbertson wrote:[color=blue]
> Hi, I'm trying to set up MIT Kerberos so that we can authenticate
> against an Active Directory service (Windows Server 2003 I believe) and
> most things seem to be working, I just can't get kvno to work or keytab
> files (Probably because of the kvno issue)[/color]
....[color=blue]
>
> So as you can see everything seems to work fine, I just can't use kvno.
> What things should I be looking at to try to fix this? Could it be a
> setting on the AD end denying such requests?
>[/color]
kvno is requesting a service ticket. But user accounts in AD don't
normally have a servicePrincipalName attribute.
kvno should work for actual service principals like:
kvno host/livad.liv.ac.uk
Why do you need to use kvno with a user account?
If you need to know the kvno for the user, you can use ldap or ADSI Edit
and search for the user and read the msDS-KeyVersionNumber attribute.
You might be able to add a servicePrincipalName to the user account if
you really need to get a service ticket for the user.
--
Douglas E. Engert <DEEngert@anl.gov>
Argonne National Laboratory
9700 South Cass Avenue
Argonne, Illinois 60439
(630) 252-5444
Re: Can kinit but not kvno
Douglas E. Engert wrote:
[color=blue]
> kvno is requesting a service ticket. But user accounts in AD don't
> normally have a servicePrincipalName attribute.
>
> kvno should work for actual service principals like:
>
> kvno host/livad.liv.ac.uk
>
> Why do you need to use kvno with a user account?
>
> If you need to know the kvno for the user, you can use ldap or ADSI Edit
> and search for the user and read the msDS-KeyVersionNumber attribute.
>
> You might be able to add a servicePrincipalName to the user account if
> you really need to get a service ticket for the user.[/color]
Ah that does explain it all thankyou.
I was just testing to make sure everything was working before bothering
our AD team to set up a service principal for a test service. I didn't
know if I had got the initial setup right or not.
--
John Gilbertson