Advertisement
Guest User

Untitled

a guest
Sep 19th, 2013
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. #____________________________ LDAP __________________________________
  2.  
  3. $auth["session"] = "php";
  4. $auth["type"] = "ldap";
  5. require_once "language.inc";
  6.  
  7. $ldap_host = "KWTUATDC001";
  8. $ldap_port = 389;
  9. # If you want to use LDAP v3, change the following to true
  10. $ldap_v3 = true;
  11.  
  12. $ldap_debug = true;
  13.  
  14. # If you want to use TLS, change following to true
  15. $ldap_tls = false;
  16. # LDAP base distinguish name
  17. # See AUTHENTICATION for details of how check against multiple base dn's
  18. $ldap_base_dn = "OU=MRBS,DC=shayauat,DC=com";
  19. # Attribute within the base dn that contains the username
  20. #$ldap_user_attrib = "uid";
  21. $ldap_user_attrib = "sAMAccountName";
  22. #$ldap_dn_search_dn = "CN=ben,ou=mrbs,dc=testad,dc=local";
  23. #$ldap_dn_search_password = "P@ssw0rd";
  24.  
  25. #_____________________________________________________________________
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement