[
https://issues.apache.org/jira/browse/KAFKA-5050?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16946672#comment-16946672
]
ASF GitHub Bot commented on KAFKA-5050:
---------------------------------------
in-park commented on pull request #7465: KAFKA-5050: SASL/PLAIN server callback
handler which authenticates against LDAP
URL: https://github.com/apache/kafka/pull/7465
This is an implementation of PlainServerCallbackHandler which allows Kafka
clients to authenticate against LDAP through SASL/PLAIN.
Following is a sample Kafka client properties which will allow LDAP
authentication through SASL/PLAIN:
**sasl.mechanism=PLAIN
security.protocol=SASL_SSL
sasl.jaas.config=org.apache.kafka.common.security.plain.PlainLoginModule
required username="ldap_uid" password=ldap_password"";
ssl.truststore.location=...... **
The following is a sample KafkaServer jaas config:
org.apache.kafka.common.security.plain.PlainLoginModule required
ldap_url="ldaps://ldapserver:636"
user_dn_template="uid={0},cn=users,cn=accounts,dc=firm,dc=site";
### Committer Checklist (excluded from commit message)
- [ ] Verify design and implementation
- [ ] Verify test coverage and CI build status
- [ ] Verify documentation (including upgrade notes)
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
> Implement Plain Ldap Authentication
> -----------------------------------
>
> Key: KAFKA-5050
> URL: https://issues.apache.org/jira/browse/KAFKA-5050
> Project: Kafka
> Issue Type: New Feature
> Reporter: nihed mbarek
> Assignee: In Park
> Priority: Minor
>
> Implement LDAP based authentication for Plaintext authentication
--
This message was sent by Atlassian Jira
(v8.3.4#803005)