##master-page:HomepageReadWritePageTemplate
##master-date:Unknown-Date
#format wiki
#language en
= AD Linux integration =
 * Windows Active directory / LDAP / Kerberos.

== Apache AD authentication links ==
 * http://www.wlug.org.nz/ActiveDirectoryAuthenticationNotes
 * http://www.jejik.com/articles/2007/06/apache_and_subversion_authentication_with_microsoft_active_directory/

== AD tools ==
 * http://en.gentoo-wiki.com/wiki/Active_Directory_Authentication_using_LDAP
 * Windows - cmd - retrieve DS - Distinguished Name
   {{{ 
   C:\>dsquery user -name ID_ManagedVPN

  "CN=ID_ManagedVPN,CN=Managed Service Accounts,DC=vigor,DC=co,DC=za"
   }}}
 * ldap-search - syntax
   {{{ 
ldapsearch -x -LLL -h [host] -D [user] -w [password] -b [base DN] -s sub "([filter])" [attribute list]
*** A simple example ***
$ ldapsearch -x -LLL -h host.example.com -D user -w password -b"dc=ad,dc=example,dc=com" -s sub "(objectClass=user)" givenName
   }}}
...
----
CategoryLinux