Is there support for the equivalent of KrbVerifyKDC off #252
Answered
by
simo5
tparkercbn
asked this question in
Q&A
-
I have a bunch of QA and Dev servers that currently run mod_auth_kerb on CentOS 7 that I am migrating to mod_auth_gssapi on CentOS8. With mod_auth_kerb I can set: KrbVerifyKDC off which means that I don't have to provision a keytab on all these dev/qa servers. Is there a way to do the same with mod_auth_gssapi? Thanks |
Beta Was this translation helpful? Give feedback.
Answered by
simo5
Jun 29, 2021
Replies: 2 comments 7 replies
-
Is this using the fallback to Basic Auth? |
Beta Was this translation helpful? Give feedback.
6 replies
Answer selected by
simo5
-
Aren’t the username and password being sent to the server no matter what if GssapiBasicAuth on is set (with or without a keytab)?
Tom
From: Simo Sorce ***@***.***>
Sent: June 30, 2021 6:20 AM
To: gssapi/mod_auth_gssapi ***@***.***>
Cc: Tom Parker ***@***.***>; Author ***@***.***>
Subject: Re: [gssapi/mod_auth_gssapi] Is there support for the equivalent of KrbVerifyKDC off (#252)
CAUTION: This email originated from outside your organization. Exercise caution when opening attachments or on clicking links from unknown senders.
Just to be clar, the thing I find amusing is that you are sending username/password to the server (only way this can work w/o keytabs). That means you are not actually doing kerberos authentication (between client and server).
Sure on the server you do the equivalent of a kinit, but that's just a technical detail.
The point of kerberos is that you never let any credentials leave the client machine, using kinit (or equivalent) on the client to obtain a TGT and then grabbing a TGS to talk to the server.
I understand how mod_auth_kerb "helped" you, but that option is antithetical to the point of using kerberos in the first place, which is why mod_auth_gssapi does not offer it.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub<#252 (reply in thread)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/ABJYF5R3MFGZOCYPLZYTIMTTVMDX7ANCNFSM47QZ5SZA>.
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is this using the fallback to Basic Auth?