NAME
ypldap.conf —
    LDAP YP map daemon configuration
    file
DESCRIPTION
The ypldap(8) daemon provides YP maps using LDAP as a backend.
The ypldap.conf config file is divided
    into the following main sections:
- Macros
- Definitions of variables that can be used later, simplifying the configuration file.
- Global configuration
- Global settings for ypldap(8).
- Directories
- LDAP Directory specific parameters.
Macros
A macro is defined with a command of the form
    name=value. The macro
    name can contain letters, digits, and underscores and
    cannot be a reserved word (for example, domain).
    Within unquoted arguments, the string $name is later
    expanded to value.
For example:
fixed_gecos="Pulled from LDAP" fixed attribute gecos $fixed_gecos
Global configuration
Global settings concern the main behaviour of the daemon.
- domainstring
- Specify the name of the NIS domain ypldap(8) will provide.
- intervalseconds
- Specify the interval in seconds at which the whole directory will be pulled from LDAP.
- provide mapstring
- Specify a map that should be provided by ypldap(8) The currently implemented maps are: passwd.byname, passwd.byuid, group.byname, group.bygid.
- cafilefilename
- Load CA certificates from the specified file to validate the server certificate. If not specified, CA certificates will be loaded from /etc/ssl/cert.pem.
- bindmode
- Specify how the domain is made available for binding. Valid options are:
    - portmap
- Register with portmap(8) and allow ypbind(8) discovery. This is the default mode.
- local
- Create a YP binding file in /var/yp/binding to enable YP support in the passwd(5) and group(5) databases. In this mode it is not necessary to run portmap(8), and ypbind(8) must not be running. YP services are only available to the host running ypldap(8).
 
Directories
Directories are used to describe the LDAP schema and help ypldap(8) convert LDAP entries to passwd(5), master.passwd(5), and group(5) lines. Each directory section consists of a declaration of the directory server name and a set of directives describing how entries from the directory are used to construct YP map entries.
- directoryhostname [- portport] [tls] {...}
- Defines a directory by hostname and optionally port number. If the
      tls argument is not specified, no transport-level
      security will be used. Valid options are:
    - tls
- Use STARTTLS to negotiate TLS, by default on port 389.
- ldaps
- Connect with TLS enabled, by default on port 636.
 
Valid directives for directories are:
- attributename- maps tostring
- Map the passwd(5), master.passwd(5), or group(5) attribute to the LDAP attribute name supplied.
- basednstring
- Use the supplied search base as starting point for the directory search.
- certfilestring
- Use the specified client certificate when connecting to the directory. The file must contain a PEM encoded certificate.
- groupdnstring
- Use the supplied search base as starting point for the directory search for groups. If not supplied, the basedn value will be used.
- bindcredstring
- Use the supplied credentials for simple authentication against the directory.
- binddnstring
- Use the supplied Distinguished Name to bind to the directory.
- bindext[string]
- Bind to the directory using SASL EXTERNAL, optionally using a supplied identity string. When using a TLS client certificate, this allows the client to bind as the subject of the certificate. If an identity string is supplied, usually in the form of a distinguished name prefixed with "dn:", the directory will only allow the bind to succeed if it matches the subject of the certificate.
- fixed attributeattribute string
- Do not retrieve the specified attribute from LDAP but instead set it unconditionally to the supplied value for every entry.
- group filterstring
- Use the supplied LDAP filter to retrieve group entries.
- keyfilestring
- Use the specified private key when connecting to the directory. The file must contain a PEM encoded key.
- listname- maps tostring
- Map the passwd(5),
      master.passwd(5),
      or group(5) attribute to
      the LDAP attribute name supplied. A list creates a comma separated list of
      all the LDAP attributes found.
    Valid attributes are: 
- passwd filterstring
- Use the supplied LDAP filter to retrieve password entries.
FILES
- /etc/ypldap.conf
- ypldap(8) configuration file.
- /etc/examples/ypldap.conf
- Example configuration file.
SEE ALSO
HISTORY
The ypldap.conf file format first appeared
    in OpenBSD 4.4.