I have a debian squeeze host where I can't log in with kerberos without a password prompt. An identically configured ubuntu 12.04 host works fine and can log in without getting a password prompt.
After a kinit, klist gives:
Ticket cache: FILE:/tmp/krb5cc_1000
Default principal: boti@REALM
Valid starting Expires Service principal
14/02/2013 16:37 15/02/2013 16:37 krbtgt/REALM@REALM
Now when I try to log in over ssh into debian-squeeze I'm presented with the password prompt. If I check my tickets at this point without doing an auth, I get:
Ticket cache: FILE:/tmp/krb5cc_1000
Default principal: boti@REALM
Valid starting Expires Service principal
14/02/2013 16:37 15/02/2013 16:37 krbtgt/REALM@REALM
14/02/2013 16:38 15/02/2013 16:37 host/debian-squeeze@
14/02/2013 16:38 15/02/2013 16:37 host/debian-squeeze@REALM
So obviously I get a ticket granted. Yet the ssh debug log gives:
Postponed gssapi-with-mic for boti from 192.168.255.98 port 59557 ssh2
debug3: mm_request_send entering: type 40
debug3: mm_request_receive_expect entering: type 41
debug3: mm_request_receive entering
debug3: monitor_read: checking request 40
debug1: Unspecified GSS failure. Minor code may provide more information
Wrong principal in request
This is pretty similar what is described here, here and in this bugreport.
My DNS is fine. Already tried recreating the principals/keys. So none of the solutions helped which were posted there.
Any hints?
In the sample output I see that you got a key for a
debian-squeeze
-- a hostname without any dots in it. This does kind of prove that you set up your reverse resolution to point to the short name. Is that really a non-FQDN name that you see, or was it edited for the question?Kerberos should work with either, but you may to double check that the host itself thinks it is called
debian-squeeze
. Check that the forward -> reverse lookup insidedebian-squeeze
really resolves todebian-squeeze
:I haven't really heard of Kerberos being deployed with short names, so if you have a choice, it may be a good idea to stick with FQDNs.
Update:
The client is currently getting a key for the short name, but the server thinks it is properly named with a long name. Most likely the issue is there. Just to be sure, try the following:
Check the forward/reverse name lookup from the client. I.e.
The returned name is the one that the client will try to get a ticket for. Judging by your output, this is probably the short name.
Check what keys are present on the server.
In the list you should see a principal matching the hostname from the previous command. If it's not there, then that's your problem. If it is there...
Verify the key version on the kerberos server is the same as the one on
debian-squeeze
. On the client, get a key explicitly and verify the "KVNO" version at the end of the line:At any rate, the hostname and "kvno" version in all these commands should match.
I have seen this error when /etc/hosts on the server includes an entry for its IP address that does not match what is in DNS or the keytab. Have you double checked (or removed) all the non-localhost entries from /etc/hosts?