ldapscanner.cfg.dist 891 B

123456789101112131415161718192021222324252627282930313233
  1. [server]
  2. # What's needed to connect?
  3. # Hosts can be many, separate them with commas
  4. hosts=ldap.host,another.host
  5. port=636
  6. ldaps=1
  7. [search]
  8. # Put in what records you wanna find (and diff over time) here
  9. base=ou=superheroes,dc=marvel,dc=comics
  10. filter=(&(objectClass=capedAvenger))
  11. [creds]
  12. # If you need to auth with the server in order to get the
  13. # records you need, then enter the details below.
  14. # If not, don't.
  15. # id_field is what is distinct about your LDAP record
  16. # given the search filter, id_value is the value of the field
  17. # If the base & filter are the same, just enter it in
  18. # again here.
  19. base=ou=superheroes,dc=marvel,dc=comics
  20. filter=(&(objectClass=capedAvenger))
  21. id_field=codename
  22. id_value=Lobo
  23. pass=S4NT4DR00LZ
  24. [prefs]
  25. # Loglevels:
  26. # info: only the diff is printed
  27. # error: die on errors
  28. # warn: warn on errors
  29. # debug: die on errors, also print debug info
  30. loglevel=info