source: trunk/LATMOS-Accounts/man/man8/latmos-accounts-base-ad.pod @ 1508

Last change on this file since 1508 was 1117, checked in by nanardon, 12 years ago

add *_key_attribute and *_dn_attribute configuration parameters

By the way, SQL user object return a user friendly value as CN since cn is not
always used as object ID.

File size: 1.9 KB
Line 
1# $Id$
2
3=head1 DESCRIPTION
4
5The C<ad> base support C<Active Directory> system from C<Microsoft> using
6C<ldap> protocol.
7
8It has been succefully test on C<Windows 2008> and C<Windows 2008r2>.
9
10=head1 SPECIFIC SETUP PARAMTERS
11
12=head2 domain
13
14The domain name of this active directory base
15
16=head2 server
17
18Optional, specify the server to contact to access to this ldap base.
19
20If not set, a DNS lookup is performed to find the list of available servers
21
22=head2 login
23
24The dn to use to connect to the ldap
25
26=head2 password
27
28The password to cuse to connect to ldap server
29
30=head2 ssl
31
32If set, try to connect using ssl
33
34Notice using ssl is mandatory to be able to setup password.
35
36=head2 user_container
37
38The dn subpart of the container where user are located and will be created
39
40=head2 group_container
41
42The dn subpart of the container where groups are located and will be created
43
44=head2 user_key_attribute, group_key_attribute
45
46Specify the attribute to use to uniquely identify an object. The default is
47C<cn>.
48
49=head2 user_dn_attribute, group_dn_attribute
50
51Specify the attribute to use forge the C<dn> of new object. The default is
52C<cn>.
53
54=head1 FAQ
55
56=head2 Failure when chnaging password
57
58When I try to sync/change a user password I get:
59
60    0000052D: SvcErr: DSID-031A120C, problem 5003 (WILL_NOT_PERFORM), data 0
61
62The meaning of this error is "the password does not pass the quality test".
63
64Active directory has by default a strong password policy including the password
65lenght, the variety of caracters, etc...
66
67The C<LATMOS::Accounts> system have itself a password quality test but it does
68not have the same rules than an active directory, so a password accept on one
69side can be reject on the other.
70
71To change the password policy on active directory:
72
73=over 4
74
75=item open the Group Policy Console (Administration Tools)
76
77=item Find the C<default domain policy> at top level of the domain
78
79=item change parameter under system, Windows, Security parameters
80
81=back
Note: See TracBrowser for help on using the repository browser.