AD Linux integration
- Windows Active directory / LDAP / Kerberos.
Apache AD authentication links
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
...