我正在尝试将LDAP Active Directory与Keycloak集成。我能够使用按LDAP属性过滤的自定义用户LDAP过滤器同步LDAP用户 - (theAttribute = theValue)。是否有按组过滤的方式/语法?例如,假设我有Active Directory组“我的组”,并且我想仅与该组中的Keycloak用户同步。什么是搜索自定义用户LDAP过滤器?
答案 0 :(得分:4)
memberOf
怎么样?例如:
(&(objectCategory=Person)(sAMAccountName=*)(theAttribute=theValue)(memberOf=cn=My Group,dc=example,dc=com))
请参阅RFC2254 "The String Representation of LDAP Search Filters"的更多详细信息: