Differences between revisions 1 and 4 (spanning 3 versions)
Revision 1 as of 2011-09-21 06:11:55
Size: 350
Editor: PieterSmit
Comment: Create page and 2 links
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 / LDAP / Kerberos.
Line 11: Line 12:
== 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
Line 12: Line 18:
  "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
   }}}
Line 13: Line 27:
----
CategoryLinux

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)