Add filter by group

This commit is contained in:
Dedy Martadinata S 2022-06-20 10:36:01 +07:00 committed by GitHub
parent 936a6d696a
commit d790bf1169
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,6 +20,7 @@ uid=admin,ou=people,dc=example,dc=com
xxx xxx
``` ```
## User search configurations ## User search configurations
### Base DN ### Base DN
``` ```
@ -29,10 +30,15 @@ ou=people,dc=example,dc=com
``` ```
uid uid
``` ```
### Filter ### Filter (all available user)
``` ```
(objectClass=person) (objectClass=person)
``` ```
### Filter by groups (assuming you already create and manage the user into group, in this example the user already in lldap_portainer group)
```
(&(objectClass=person)(memberof=cn=lldap_portainer,ou=groups,dc=example,dc=com))
```
## Group search configurations ## Group search configurations
### Group Base DN ### Group Base DN