Reputation: 41
I am trying to understand the intricacies of the kerberos authentication and validation of ticket from kafka broker perspective. I will summarize the steps.
My question is , will kafka broker validate the ticket that kafka client sends? What exactly happens at the broker side? How does kafka broker aware that, kafka client has sent the valid non expired ticket?
Regards Pavan
Upvotes: 0
Views: 1229
Reputation: 677
The question is not specific to Kafka, but is related to generic Kerberos Authentication.
What happens here?
This is basic Kerberos functionality.
You can also check Delegation or impersonation feature of Kerberos which can be used for particular use cases.
Upvotes: 0