]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Fix typo s/posixUser/posixAccount/g
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Tue, 22 Oct 2019 11:55:50 +0000 (07:55 -0400)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Tue, 22 Oct 2019 11:55:50 +0000 (07:55 -0400)
doc/antora/modules/howto/pages/modules/ldap/authorization/locating_the_user.adoc
doc/antora/modules/howto/pages/modules/ldap/authorization/user_disambiguation.adoc
doc/antora/modules/howto/pages/modules/ldap/configuration.adoc
doc/antora/modules/howto/pages/modules/ldap/ldapsearch/locating_objects.adoc

index c3e59554350e8f7b6b0537d34d69f89a50e736a6..ecfe9e2a744ab29c03a3db2b1ace3ee272429f8e 100644 (file)
@@ -19,7 +19,7 @@ ldap {
                # example - ou=people,${..base_dn}
                base_dn = "<user.base_dn>" <1>
 
-               # example - (&(objectClass=posixUser)(uid=%{%{Stripped-User-Name}:-%{User-Name}}))
+               # example - (&(objectClass=posixAccount)(uid=%{%{Stripped-User-Name}:-%{User-Name}}))
                filter = "(&(<user.filter>)(<user_uid_attribute>=%{%{Stripped-User-Name}:-%{User-Name}}))"  <2>
        }
 }
index ade79729ff89a969a10a67f8ebf251d9ae4ae489..8e903956401e9282050e34cc3091ac6e4016a839 100644 (file)
@@ -21,7 +21,7 @@ As the error message states, there are multiple ways to resolve this issue:
    a user's login account, and another represented a Human Resources record,
    the `user.filter` value could be changed to only return objects with an
    object class that indicated the object represented login account
-   e.g. `(&(objectClass=posixUser)(uid=...))`.
+   e.g. `(&(objectClass=posixAccount)(uid=...))`.
 3. Change the scope of the search to be more restritive.  If the additional user
    object is located in a child object under the user base_dn, setting `user.scope`
    to 'one' will resolve user object ambiguity by restricting the search to the
@@ -60,7 +60,7 @@ EOF
 ----
 ====
 
-== Editing mods-available/ldap to enable SSS
+== Editing mods-available/ldap to enable Server Side Sorting
 
 [source,config]
 ----
index 5553d3cc6a9664bd79b4b7a750a4e09038a4144c..480823bd319b2f98bc29f63fdf1d1a596e6c446f 100644 (file)
@@ -45,7 +45,7 @@ ldap {
                # example - base_dn = "ou=people,${..base_dn}"
                base_dn = "<path_from_base_dn_to_user_obj_dn>,${..base_dn}"  <5>
 
-               # example = "(&(uid=%{%{Stripped-User-Name}:-%{User-Name}})(objectClass=posixUser))"
+               # example = "(&(uid=%{%{Stripped-User-Name}:-%{User-Name}})(objectClass=posixAccount))"
                filter = '(&(<user_uid_attribute>=%{%{Stripped-User-Name}:-%{User-Name}})(<user_filter>))'  <6>
        }
 }
index db699ccc6f4929725c1e3cfde341bda0894d9aee..5c2475135cac9ca9191480374d84c6be881b4abd 100644 (file)
@@ -164,7 +164,7 @@ LDAP server uses must be determined.
 
 Repeat the search for user objects using a filter that matches a user known
 to be members of one or more groups e.g.
-`(&(objectClass=posixUser)(uid=doctopus))`.
+`(&(objectClass=posixAccount)(uid=doctopus))`.
 
 - If the result shows a attribute containing the DN of known group, the LDAP
 server implements _variant 1_.
@@ -272,5 +272,5 @@ user object search with '+' set as the second positional argument.
 
 .Searching for a user object and returning operational attributes
 ```
-ldapsearch -z 10 -x -H ldap://localhost:389 -b "dc=example,dc=com" "(ObjectClass=posixUser)" "*" "+"
+ldapsearch -z 10 -x -H ldap://localhost:389 -b "dc=example,dc=com" "(ObjectClass=posixAccount)" "*" "+"
 ```