summaryrefslogtreecommitdiffstats
path: root/zarb-ml/mageia-sysadm/2012-February/004213.html
blob: 286e06b395fe456dffb9ba45015fc5769d67c41b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
 <HEAD>
   <TITLE> [Mageia-sysadm] ldap server certificate (was: Re:	[Mageia-discuss] Fosdem report)
   </TITLE>
   <LINK REL="Index" HREF="index.html" >
   <LINK REL="made" HREF="mailto:mageia-sysadm%40mageia.org?Subject=Re%3A%20%5BMageia-sysadm%5D%20ldap%20server%20certificate%20%28was%3A%20Re%3A%0A%09%5BMageia-discuss%5D%20Fosdem%20report%29&In-Reply-To=%3C201202150925.23822.bgmilne%40zarb.org%3E">
   <META NAME="robots" CONTENT="index,nofollow">
   <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
   <LINK REL="Previous"  HREF="004218.html">
   <LINK REL="Next"  HREF="004214.html">
 </HEAD>
 <BODY BGCOLOR="#ffffff">
   <H1>[Mageia-sysadm] ldap server certificate (was: Re:	[Mageia-discuss] Fosdem report)</H1>
    <B>Buchan Milne</B> 
    <A HREF="mailto:mageia-sysadm%40mageia.org?Subject=Re%3A%20%5BMageia-sysadm%5D%20ldap%20server%20certificate%20%28was%3A%20Re%3A%0A%09%5BMageia-discuss%5D%20Fosdem%20report%29&In-Reply-To=%3C201202150925.23822.bgmilne%40zarb.org%3E"
       TITLE="[Mageia-sysadm] ldap server certificate (was: Re:	[Mageia-discuss] Fosdem report)">bgmilne at zarb.org
       </A><BR>
    <I>Wed Feb 15 08:25:22 CET 2012</I>
    <P><UL>
        <LI>Previous message: <A HREF="004218.html">[Mageia-sysadm] ldap server certificate (was: Re:	[Mageia-discuss] Fosdem report)
</A></li>
        <LI>Next message: <A HREF="004214.html">[Mageia-sysadm] [URGENT] SVN down for ~30minutes
</A></li>
         <LI> <B>Messages sorted by:</B> 
              <a href="date.html#4213">[ date ]</a>
              <a href="thread.html#4213">[ thread ]</a>
              <a href="subject.html#4213">[ subject ]</a>
              <a href="author.html#4213">[ author ]</a>
         </LI>
       </UL>
    <HR>  
<!--beginarticle-->
<PRE>On Tuesday, 14 February 2012 17:36:14 nicolas vigier wrote:
&gt;<i> On Tue, 14 Feb 2012, Oliver Burger wrote:
</I>&gt;<i> &gt; But shall we write that command line into the wiki? Aside from not
</I>&gt;<i> &gt; working: [<A HREF="https://www.mageia.org/mailman/listinfo/mageia-sysadm">oli at beteigeuze</A> avfs]$ ldapsearch -W -Z -h ldap.mageia.org  -D
</I>&gt;<i> &gt; uid=obgr_seneca,ou=People,dc=mageia,dc=org -b ou=Group,dc=mageia,dc=org
</I>&gt;<i> &gt; ldap_start_tls: Connect error (-11)
</I>&gt;<i> &gt; Enter LDAP Password:
</I>&gt;<i> &gt; ldap_result: Can't contact LDAP server (-1)
</I>&gt;<i> 
</I>&gt;<i> It looks like we are still using a self-signed certificate on the ldap
</I>&gt;<i> server.
</I>
Yes.

&gt;<i> So it's required to have &quot;TLS_REQCERT allow&quot; in
</I>&gt;<i> /etc/openldap/ldap.conf to be able to connect to the ldap server.
</I>
There are a few issues. If the self-signed cert and key were separate files 
(new installs of openldap-server will do it this way as of current cauldron), 
then the self-signed cert would not be too much of an issue if the self-signed 
cert were distributed to all nodes and set as the TLS_CACERT, e.g.:

# grep ^TLS_CACERT /etc/openldap/ldap.conf
TLS_CACERT      /etc/ssl/openldap/ldap.mageia.org.pem


The next issue is:
# openssl x509 -noout -subject -in /etc/ssl/openldap/ldap.mageia.org.pem
subject= /C=FR/ST=France/L=Marseille/O=Mageia/OU=Ldap 
server/CN=valstar.mageia.org/emailAddress=<A HREF="https://www.mageia.org/mailman/listinfo/mageia-sysadm">root at mageia.org</A>

subjectCN does not match the hostname that was provided, and no Subject 
Alternative Names provided, so:


# ldapsearch -LLL -x -h ldap.mageia.org -ZZ -s base -b '' 
namingContextsldap_start_tls: Connect error (-11)
        additional info: TLS: hostname does not match CN in peer certificate

vs
# ldapsearch -LLL  -x -h valstar.mageia.org -ZZ -s base -b '' namingContexts
dn:
namingContexts: dc=mageia,dc=org
namingContexts: dc=test_ldap


But, this doesn't scale. We already have 2 LDAP servers, we would now need to 
have both of their certs in the TLS_CACERT, and update it if:
-a cert is updated for whatever reason
-we add more servers

&gt;<i> Should we also use the *.mageia.org certificate on the ldap server ?
</I>
No, as you are distributing the key too widely, opening up easy avenues for 
decrypting the traffic.

&gt;<i> Or have our own CA
</I>
Yes.

&gt;<i> with keys distributed by rpm packages in the
</I>&gt;<i> distribution ?
</I>
No. Possibly the CA cert distributed, if we intend for distribution users to 
access our LDAP directory from the internet (which seems is currently 
possible). But, then I am not sure if that is intended, or a mistake.

Regards,
Buchan
</PRE>




<!--endarticle-->
    <HR>
    <P><UL>
        <!--threads-->
	<LI>Previous message: <A HREF="004218.html">[Mageia-sysadm] ldap server certificate (was: Re:	[Mageia-discuss] Fosdem report)
</A></li>
	<LI>Next message: <A HREF="004214.html">[Mageia-sysadm] [URGENT] SVN down for ~30minutes
</A></li>
         <LI> <B>Messages sorted by:</B> 
              <a href="date.html#4213">[ date ]</a>
              <a href="thread.html#4213">[ thread ]</a>
              <a href="subject.html#4213">[ subject ]</a>
              <a href="author.html#4213">[ author ]</a>
         </LI>
       </UL>

<hr>
<a href="https://www.mageia.org/mailman/listinfo/mageia-sysadm">More information about the Mageia-sysadm
mailing list</a><br>
</body></html>