Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
s_lobunko
Contributor II
Contributor II

LDAP with multipule domain groups

Hello everyone. 

I have a problem with a LDAP filter setting. My purpose is configure LDAP filter so that I will can upload users from Domain groups on mask. For example, I want uploading users from all groups that beginning with"Qliksense". But i don't know how write this filter. When I tryied configure LDAP I wrote this rule (memberOf=CN=MyGroup, CN="",DC=""). This rule works with one group. But I want to create a filter that will upload all groups that beginning with QlikSense

1 Reply
Marc
Employee
Employee

you cannot use wildcard character with DN attributes like memberOf

the easiest way to achieve what you are after, would be to get all of the groups you want to include and make them part of a parent group.

e.g. 
All_QlikSenseGroups
 - QlikSense_Users
 - QlikSense_Developers
 - QlikSense_ETC

Then you can modify the FQDN and use the following, which will look at the top level group and dig down through all the nested groups for the members.

(memberOf:1.2.840.113556.1.4.1941:=CN=All_QlikSenseGroups,OU=Security_Groups_OU,DC=int,DC=domain,DC=net)