FAQ

  1. General
  2. Installation
  3. Maintenance
  4. Client integration
  5. Security
  6. Privacy
  7. Auditing

General

  1. Why yet another LDAP-based user management system?

    Yes, there are various other user management systems based on LDAP.
    But they do not provide some specific features like Æ-DIR does:

    • Provide data only to systems/services which need it to meet stricter security/confidentiality requirements like need-to-know principle.
    • Distinct data model for person / multi-user-account relationship.
    • Delegated administration.
    • Enforce security policy and data constraints for LDAP write operations.

  2. What's the official name of the project and why I see those strange characters?

    The official name is Æ-DIR to be distinguishable from any other project (and to challenge Unicode capabilities of software). AE-DIR is the official pure-ASCII representation.
    Only capital letters are used in both representations when occurring in documentation.
    Lower-cased letters are used for DNS names (e.g. ae-dir-p1.example.com and the default search base ou=ae-dir.

  3. Æ-DIR seems complex. How to start with a simple setup for my very few systems?

    Æ-DIR is designed to scale down and up:
    You can install the system and start with one zone and a single host/service group for all your systems pointing to a single user group. Later you can extend that to your growing needs by adding more host/service and user groups and by moving hosts/services.

Installation

  1. Can Æ-DIR server run on name-your-favourite-OS-here?

    In principle Æ-DIR is not limited to run on Linux. Provided you have packages of all the required software it could be installed on various OS platforms shipping at least Python 3.6+. Note that tweaking the automated ansible installation to run on different platforms is much work. Let me know if you work on supporting another platform and you need help.

  2. Python 2.x reaches end-of-life at 2019-12-31.
    Does Æ-DIR support Python 3.x?

    Nowadays running on Python 3.6+ is mandatory.

  3. Can I use another LDAP server software for Æ-DIR?

    No. Æ-DIR makes heavy use of OpenLDAP's access control. To best of my knowledge other LDAP server implementations do not provide similar powerful access control (despite by implementing custom server-side plugin). If you have different opinion/suggestion please let me know.

  4. I prefer to install only packages shipped by my Linux (enterprise) distribution. Why are OpenLDAP packages from different repositories installed?

    Æ-DIR has quite a complex OpenLDAP configuration which requires to have recent bug fix releases (see also OpenLDAP FAQ-O-MATIC).

  5. Can I use another search base than ou=ae-dir?

    Yes. You can set ansible variable aedir_suffix which is used in all ansible tasks and Jinja2 templates. But the characteristic attribute is limited to a set of common RDN attributes:

    • cn
    • dc
    • o
    • ou

  6. Can I migrate my current user management to Æ-DIR?

    This very much depends on your current deployment. Things to consider before migration:

    • Passwords (hashes)
    • User names
    • POSIX-IDs (passwd and group)
    • Custom schema used by your data
    • Access control requirements
    • Client capabilities and configuration
    • Commercial support

Maintenance

  1. How to backup the data?

    On each Æ-DIR provider a CRON job exports the databases to LDIF files with command-line tool slapcat(8) (see also OpenLDAP Admin Guide). How often this happens, where the files are stored and how long they are kept around can be configured with ansible vars openldap_backup_cron_args, openldap_backup_path and openldap_backup_max_days.

  2. Is there an API for bulk operations?

    The official API for programming Æ-DIR is LDAPv3 (see RFC 4510). Access control rules and constraints in OpenLDAP configuration prevent your client role to access/alter entries in an invalid way.
    A ready-to-use module is available for Python.

  3. I always get an error message insufficientAccess when I try to delete a user or a group. What's wrong?

    Nothing's wrong. It works as designed.
    User names, group names and numeric POSIX Id must never be reused. This is enforced by unique constraints and therefore deletion of user and group entries is prevented by ACLs. Set the status to "archived" (2) to make the entries invisible even for the zone admins.

  4. Why is the SSH key of a user entry not a self-service attribute?

    Managing so-called authorized keys for SSH access to your servers requires that the authenticity of the keys is reliably checked to meet security requirements like NISTIR 7966, section 5.2 . If users would be able to add SSH keys themselves the SSH authentication would only be as strong as the password authentication. Thus the zone admin responsible for a certain user has to check with some out-of-band process that the public key really belongs to this user and only the user has control over the private key.

  5. How to report list of active users?

    1. In web2ldap you can export search results as CSV or Excel files (see example exporting with web2ldap).
    2. Additionally there are two ready-to-use command-line tools which simply outputs CSV to stdout but can only be used by role Æ Admin.

Client integration

  1. Any client example configurations available?

    Yes. Check out the directory client-examples/.

  2. Why do the client examples not use group authorization (e.g. memberOf filter)?

    The goal is to keep client configuration dumb. This makes it possible to change access rights solely by changing entities' relationship in the directory without touching the client configuration.

  3. Is the netgroup map supported by Æ-DIR?

    Short answer: No!
    Long answer:
    Æ-DIR is designed to replace netgroups completely by leveraging host/service groups referencing user groups as login groups (via attribute aeLoginGroups).

  4. Are nested groups supported by Æ-DIR?

    No, because of bad performance. Furthermore you will loose oversight over nested groups sooner or later. Try understanding/leveraging the power host/service groups referencing user groups which serves the same purpose in most practical cases.

  5. I'm too lazy to add groups etc. Can I directly assign rights to a user account?

    No! You always must add host/service groups and assign the rights to them to user groups. Think about it a few minutes. It makes sense!

  6. Can I use another LDAP GUI client (e.g. Apache Directory Studio)?

    While using any LDAP client (e.g. Apache Directory Studio) is certainly possible it will be rather inconvenient for daily Æ-DIR maintenance resulting in a waste of your work time. web2ldap installed on each Æ-DIR provider has special customization (LDIF and HTML templates, plugin module) which greatly helps users to just do the right thing. In opposite non-customized clients typically require lots of clicks even for simple tasks, and do not know about Æ-DIR schema, thus probably leading to erroneous input data.

Security

  1. Does every application integrated with Æ-DIR stick to its fixed role model?

    No.
    If you are using shared infrastructure components it is very useful to simply use the Æ-DIR roles (e.g. Setup Admin) for access control in your infrastructure.
    But if that model does not fit security requirements of a specific application you can simply maintain groups in Æ-DIR and map those to specific roles within your application just like with any other LDAP server.

  2. Can I setup a Æ-DIR test instance without having to issue TLS certs?

    No! In production you must use TLS anyway. So you should use your test environment to get familiar with it right from the start.

  3. Can I let admins impersonate as a user for testing some issues with the user's access rights?

    No! That's bad practice regarding audit logs! The admin should add a test user for himself with the required group membership and use this for testing. It is highly recommended to set a limited validity period with auto-exiry for such a test account.

  4. When using two-factor authentication (2FA) is it possible to distinguish whether password or OTP input was wrong?

    No! Both of these authentication factors are checked at once and this succeeds or fails. Æ-DIR deliberately does not tell the end user which authentication factor was wrong. This avoids the authentication factors being attacked separately.
    However there are more detailed error messages written to system log on the Æ-DIR providers which can be examined by the authorized Æ-DIR sys admins if needed.

Privacy

  1. So you cannot delete users. How to comply to privacy / data protection rules, e.g. EU GDPR?

    1. In default configuration the user names are generated as short random strings without personal naming information. So it's impossible to directly have a reference to a person just by looking at a username, e.g. by reviewing archived log files.
    2. The attribute aeStatus is used to adjust visibility of person records and user accounts. This allows to preserve the data for enforcing global ID uniqueness and for complying to audit requirements while limiting access to a small group of people to meet privacy requirements.

Auditing

  1. How to find the owner of an object (entry)?

    Although widely used the term "owner" is pretty blurry in real-life.
    In Æ-DIR each entry resides within a zone and zones are used for delegation. Therefore finding the respective zone admin(s) of the object's zone is a good approach to find the currently responsible "owner(s)".

  2. How to find the privileged users?

    "Privileged" is yet another blurry term which oversimplifies access control to a single security class.
    Basically access rights (for regular client access) are granted to user groups. So the current group membership of an account defines whether it has to be considered privileged. Note that the result is not a simple yes/no decision. The privileges have always to be reviewed carefully within a particular service context.