Re: the root of the directory tree

2012-02-28 Thread stefano
ok, thanks other question: i'm working on a lan with students, teachers, some guests and a pair of administrators. i need that everyone can authenticate himself on the lan. there are some computers in a room and i want they will be powered on will appear a display to log in. the same thing

Re: the root of the directory tree

2012-02-28 Thread Turbo Fredriksson
On Tue, 28 Feb 2012 11:02:43 +0100, stefano wrote: i need that everyone can authenticate himself on the lan. So you'll be needing LibNSS/LDAP and LibPAM/LDAP most likley. every user will have his permissions to visit different sites, to see server resources, etc. Sorry, that I did not

Re: the root of the directory tree

2012-02-28 Thread Jan Včelák
i'm working on a lan with students, teachers, some guests and a pair of administrators. i need that everyone can authenticate himself on the lan. there are some computers in a room and i want they will be powered on will appear a display to log in. the same thing for every computer that will be

Re: the root of the directory tree

2012-02-28 Thread stefano
i have debian squeeze! On 02/28/2012 02:52 PM, Jan Včelák wrote: i'm working on a lan with students, teachers, some guests and a pair of administrators. i need that everyone can authenticate himself on the lan. there are some computers in a room and i want they will be powered on will appear a

Delta-syncrepl issue

2012-02-28 Thread Abderamane Hamani
Good morning, Is it possible to use always delta-syncrepl even the replica consumer is too far from the provider ?? Many thanks in advance

olcMirrorMode attribute in N-way multimaster

2012-02-28 Thread Christopher Jones
Hi all, I'm working on an multimaster setup using the LDIF configuration (as opposed to slapd.conf). From my understanding of the documentation, Mirror Mode is distinct from N-way Multimaster in that it is an 'active-active/hot swap' configuration, and writes need to go a single server. In

Re: Delta-syncrepl issue

2012-02-28 Thread Quanah Gibson-Mount
--On Tuesday, February 28, 2012 3:54 PM +0100 Abderamane Hamani aham...@escpeurope.eu wrote: Good morning, Is it possible to use always delta-syncrepl even the replica consumer is too far from the provider ?? Many thanks in advance Your question doesn't make sense as worded. Delta-syncrepl

Re: Delta-syncrepl issue

2012-02-28 Thread Mauricio Tavares
On Tue, Feb 28, 2012 at 1:24 PM, Quanah Gibson-Mount qua...@zimbra.com wrote: --On Tuesday, February 28, 2012 3:54 PM +0100 Abderamane Hamani aham...@escpeurope.eu wrote: Good morning, Is it possible to use always delta-syncrepl even the replica consumer is too far from the provider ?? Many

Re: Delta-syncrepl issue

2012-02-28 Thread Quanah Gibson-Mount
--On Tuesday, February 28, 2012 9:32 PM +0100 Abderamane Hamani aham...@escpeurope.eu wrote: Thanks for your help Quanah, If a replica is too far out of sync (or completely empty), conventional syncrepl is used to bring it up to date and replication then switches back to the delta-syncrepl

LDAP_OPT_X_TLS_xxx option in SSL/TLS connection

2012-02-28 Thread Qiang Xu
Hello All, Today I came across a strange problem. I wrote a program to test ldap ssl/tls connection with OpenLDAP library. Something like the code snippet as follows: int ret = LDAP_OPT_SUCCESS; int cert_flag = LDAP_OPT_X_TLS_NEVER; ... ret = ldap_set_option(NULL, LDAP_OPT_X_TLS_REQUIRE_CERT,

cert options in ssl/tls connections

2012-02-28 Thread Qiang Xu
Hello All, Today I came across a strange problem. I wrote a program to test ldap ssl/tls connection with OpenLDAP library. Something like the code snippet as follows: int ret = LDAP_OPT_SUCCESS; int cert_flag = LDAP_OPT_X_TLS_NEVER; ... ret = ldap_set_option(NULL, LDAP_OPT_X_TLS_REQUIRE_CERT,

Re: LDAP_OPT_X_TLS_xxx option in SSL/TLS connection

2012-02-28 Thread Hallvard B Furuseth
On Tue, 28 Feb 2012 18:46:10 -0500, Qiang Xu q...@lexmark.com wrote: The complete code is quite long. But the essential parts are here. After these options are set, it goes with ldap_start_tls_s(ldapHandle, NULL, NULL) and ldap_sasl_bind(ldapHandle, username, LDAP_SASL_SIMPLE, password_ber,