mirror of
https://github.com/nitnelave/lldap.git
synced 2023-04-12 14:25:13 +00:00
Add filter by group
This commit is contained in:
parent
936a6d696a
commit
d790bf1169
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user