Skip to content

ldap: Remove &() from extended query #720

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions source/manual/how-tos/user-ldap.rst
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Enter the following information:
**Search scope** Entire Subtree *Select Entire Subtree to retrieve all*
**Base DN:** DC=opnsense,DC=local *Enter the Base DN*
**Authentication containers** *Select* *Click & Select the containers from the list*
**Extended Query** &(objectClass=Person) *Extend query, e.g. limit results to Persons*
**Extended Query** objectClass=Person *Extend query, e.g. limit results to Persons*
**Initial Template** MicrosoftAD *Select your LDAP Server Type*
**User naming attribute** samAccountName *Auto filled in based upon Initial Template*
**Read properties** *Fetch account details after successful login*
Expand Down Expand Up @@ -77,7 +77,7 @@ Enter the following information:
The **Extended Query** can be used to select users who are member of a specific
group (only relevant for external services, when not using the local user database).
One can use something like this:
**&(memberOf=CN=myGroup,CN=Users,DC=opnsense,DC=local)** to select only members
**memberOf=CN=myGroup,CN=Users,DC=opnsense,DC=local** to select only members
of the group *"myGroup"*. To add a user to a specific group under Windows just
edit the groups properties and select **Add...** to add the user under the tab
**Members**.
Expand Down