Differences between revisions 3 and 4
Revision 3 as of 2011-09-24 20:17:15
Size: 794
Editor: PieterSmit
Comment: add ldap-search example
Revision 4 as of 2013-04-24 06:15:03
Size: 995
Editor: PieterSmit
Comment: Add dsquery for DS lookup.
Deletions are marked like this. Additions are marked like this.
Line 6: Line 6:
 * Windows Active directory  * Windows Active directory / LDAP / Kerberos.
Line 14: Line 14:
 * Windows - cmd - retrieve DS - Distinguished Name
   {{{
   C:\>dsquery user -name ID_ManagedVPN
Line 15: Line 18:
  "CN=ID_ManagedVPN,CN=Managed Service Accounts,DC=vigor,DC=co,DC=za"
   }}}

AD Linux integration

  • Windows Active directory / LDAP / Kerberos.

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

linux/ADintegration (last edited 2013-04-24 06:15:03 by PieterSmit)