From: Alan T. DeKok Date: Tue, 27 Aug 2019 13:26:21 +0000 (-0400) Subject: cleanups and typos X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=92abaa7fbdb031e021ef68ec2e11235c23779e80;p=thirdparty%2Ffreeradius-server.git cleanups and typos --- diff --git a/doc/antora/modules/howto/pages/modules/ldap_docker.adoc b/doc/antora/modules/howto/pages/modules/ldap_docker.adoc index 28e85e973bc..6a5d21d0e31 100644 --- a/doc/antora/modules/howto/pages/modules/ldap_docker.adoc +++ b/doc/antora/modules/howto/pages/modules/ldap_docker.adoc @@ -1,4 +1,4 @@ -= Using LDAP in Docket += Using LDAP in Docker It is possible to experiment with a local LDAP server under https://docs.docker.com/install/[Docker]. There is a @@ -37,7 +37,7 @@ If the LDAP server server is stopped, as with `CTRL-C`, then the databas will be lost. All of the steps above will have to be re-done the next time the server is started. -In order to make the LDAP database persiste, see the +In order to make the LDAP database persistent, see the https://github.com/osixia/docker-openldap[osixia/openldap instructions]. diff --git a/doc/antora/modules/howto/pages/modules/ldap_search.adoc b/doc/antora/modules/howto/pages/modules/ldap_search.adoc index e8f830d613b..4b8364fc3c9 100644 --- a/doc/antora/modules/howto/pages/modules/ldap_search.adoc +++ b/doc/antora/modules/howto/pages/modules/ldap_search.adoc @@ -1,6 +1,6 @@ = Testing via `ldapsearch` -Prior to configuring the `ldap` module, the LDAP serve rmust first be +Prior to configuring the `ldap` module, the LDAP server must first be validated using the `ldapsearch` tool. [source,shell] @@ -10,7 +10,8 @@ ldapsearch -H ldaps://ldap.example.com:686 -x -D cn=freeradius,dc=example,dc=com Where you replace the following as appropriately: -* *`ldaps://ldap.example.com:636`:* location of the LDAP server and how to connect +* `ldaps://ldap.example.com:636` + * location of the LDAP server and how to connect * `ldaps` is LDAP over SSL and defaults to port `636/tcp` @@ -19,13 +20,16 @@ Where you replace the following as appropriately: * `ldapi` is for UNIX socket connections -* `cn=freeradius,dc=example,dc=com`:* username used by FreeRADIUS when connecting to LDAP +* `cn=freeradius,dc=example,dc=com` + * username used by FreeRADIUS when connecting to LDAP -* `mypassword`:* password used by FreeRADIUS is to use when connecting to LDAP +* `mypassword` + * password used by FreeRADIUS is to use when connecting to LDAP -* `ou=people,dc=example,dc=com`:* top branch ('base') of the LDAP tree where users are found +* `ou=people,dc=example,dc=com` + * top branch ('base') of the LDAP tree where users are found -* `(objectClass=inetOrgPerson)`:* +* `(objectClass=inetOrgPerson)` http://www.zytrax.com/books/ldap/apa/search.html[search filter] which captures the users (this is the LDAP equivalent of the `WHERE` clause in SQL)