You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1.6 KiB

  1. if PACKAGE_libopenldap
  2. config OPENLDAP_DEBUG
  3. bool "Enable debugging information"
  4. default y
  5. help
  6. Enable debugging information. This option must be enabled
  7. for the loglevel directive to work.
  8. config OPENLDAP_CRYPT
  9. bool "Crypt(3) passwords support"
  10. default n
  11. help
  12. With crypt(3) password storage scheme enabled, OpenLDAP can
  13. receive and store SHA-256 and SHA-512 password hashes from
  14. Samba AD-DC. If this option is disabled, synchronization of
  15. passwords between Samba AD-DC (v4.5 and above) and OpenLDAP
  16. requires use of cleartext passwords.
  17. To enable crypt(3) password synchronization functionality:
  18. 1. Re-include crypt(3) support in OpenWRT by enabling 'Include
  19. crypt() support for SHA256, SHA512 and Blowfish ciphers' option
  20. in "Advanced configuration options (for developers)" ->
  21. "Toolchain Options".
  22. 2. Provision AD-DC with 'password hash userPassword schemes'
  23. option. For more information, see smb.conf manpage for details
  24. on 'password hash userPassword schemes'.
  25. 3. Use a script to synchronize passwords from AD-DC to
  26. OpenLDAP. See samba-tool manpage for 'user syncpasswords'.
  27. config OPENLDAP_MONITOR
  28. bool "Enable monitor backend"
  29. default n
  30. help
  31. Enable monitor backend to obtain information about the running
  32. status of the daemon. See OpenLDAP documentation for more
  33. information.
  34. config OPENLDAP_DB47
  35. bool "Berkeley DB support"
  36. default n
  37. help
  38. Enable Berkeley DB support (BDB).
  39. config OPENLDAP_ICU
  40. bool "ICU support"
  41. default n
  42. help
  43. Enable ICU (International Components for Unicode) support.
  44. endif