annotate mod_s2s_auth_dane.wiki @ 459:7261117fcf19

Link to Zash's guide
author MWild1@gmail.com
date Mon, 19 May 2014 10:31:17 +0000
parents 5f111a4e13fb
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
417
880259dc82a8 DANE \o/
Kim Alvefur <zash@zash.se>
parents:
diff changeset
1 #summary S2S authentication using DANE
459
7261117fcf19 Link to Zash's guide
MWild1@gmail.com
parents: 455
diff changeset
2 #labels Stage-Alpha,Type-S2SAuth
417
880259dc82a8 DANE \o/
Kim Alvefur <zash@zash.se>
parents:
diff changeset
3
880259dc82a8 DANE \o/
Kim Alvefur <zash@zash.se>
parents:
diff changeset
4 = Introduction =
880259dc82a8 DANE \o/
Kim Alvefur <zash@zash.se>
parents:
diff changeset
5
441
80ce8d7f7f56 mod_s2s_auth_dane.wiki: more text, examples and links
Kim Alvefur <zash@zash.se>
parents: 440
diff changeset
6 This module implements DANE as described in
417
880259dc82a8 DANE \o/
Kim Alvefur <zash@zash.se>
parents:
diff changeset
7 [http://tools.ietf.org/html/draft-miller-xmpp-dnssec-prooftype Using DNS Security Extensions (DNSSEC) and DNS-based Authentication of Named Entities (DANE) as a Prooftype for XMPP Domain Name Associations].
880259dc82a8 DANE \o/
Kim Alvefur <zash@zash.se>
parents:
diff changeset
8
459
7261117fcf19 Link to Zash's guide
MWild1@gmail.com
parents: 455
diff changeset
9 = Dependencies =
417
880259dc82a8 DANE \o/
Kim Alvefur <zash@zash.se>
parents:
diff changeset
10
441
80ce8d7f7f56 mod_s2s_auth_dane.wiki: more text, examples and links
Kim Alvefur <zash@zash.se>
parents: 440
diff changeset
11 This module requires a DNSSEC aware DNS resolver. Prosodys internal DNS
80ce8d7f7f56 mod_s2s_auth_dane.wiki: more text, examples and links
Kim Alvefur <zash@zash.se>
parents: 440
diff changeset
12 module does not support DNSSEC. Therefore, to use this module, a
455
5f111a4e13fb mod_s2s_auth_dane.wiki: drep mention of luajit, not required anymore
Kim Alvefur <zash@zash.se>
parents: 442
diff changeset
13 replacement is needed, such as [https://www.zash.se/luaunbound.html this one].
417
880259dc82a8 DANE \o/
Kim Alvefur <zash@zash.se>
parents:
diff changeset
14
459
7261117fcf19 Link to Zash's guide
MWild1@gmail.com
parents: 455
diff changeset
15 More installation instructions can be found at [https://www.zash.se/prosody-dane.html Prosody with DANE].
7261117fcf19 Link to Zash's guide
MWild1@gmail.com
parents: 455
diff changeset
16
417
880259dc82a8 DANE \o/
Kim Alvefur <zash@zash.se>
parents:
diff changeset
17 = Configuration =
880259dc82a8 DANE \o/
Kim Alvefur <zash@zash.se>
parents:
diff changeset
18
441
80ce8d7f7f56 mod_s2s_auth_dane.wiki: more text, examples and links
Kim Alvefur <zash@zash.se>
parents: 440
diff changeset
19 After [https://prosody.im/doc/installing_modules installing the module], just add it to `modules_enabled`;
417
880259dc82a8 DANE \o/
Kim Alvefur <zash@zash.se>
parents:
diff changeset
20
880259dc82a8 DANE \o/
Kim Alvefur <zash@zash.se>
parents:
diff changeset
21 {{{
880259dc82a8 DANE \o/
Kim Alvefur <zash@zash.se>
parents:
diff changeset
22 modules_enabled = {
880259dc82a8 DANE \o/
Kim Alvefur <zash@zash.se>
parents:
diff changeset
23 ...
880259dc82a8 DANE \o/
Kim Alvefur <zash@zash.se>
parents:
diff changeset
24 "s2s_auth_dane";
880259dc82a8 DANE \o/
Kim Alvefur <zash@zash.se>
parents:
diff changeset
25 }
880259dc82a8 DANE \o/
Kim Alvefur <zash@zash.se>
parents:
diff changeset
26 }}}
880259dc82a8 DANE \o/
Kim Alvefur <zash@zash.se>
parents:
diff changeset
27
435
fae8b0661edf Add info about _xmpp-server IN TLSA
Kim Alvefur <zash@zash.se>
parents: 418
diff changeset
28 = DNS Setup =
fae8b0661edf Add info about _xmpp-server IN TLSA
Kim Alvefur <zash@zash.se>
parents: 418
diff changeset
29
441
80ce8d7f7f56 mod_s2s_auth_dane.wiki: more text, examples and links
Kim Alvefur <zash@zash.se>
parents: 440
diff changeset
30 In order for other services to verify your site using using this plugin,
80ce8d7f7f56 mod_s2s_auth_dane.wiki: more text, examples and links
Kim Alvefur <zash@zash.se>
parents: 440
diff changeset
31 you need to publish TLSA records (and they need to have this plugin).
80ce8d7f7f56 mod_s2s_auth_dane.wiki: more text, examples and links
Kim Alvefur <zash@zash.se>
parents: 440
diff changeset
32 Here's an example using "DANE-EE Cert SHA2-256" for a host named
80ce8d7f7f56 mod_s2s_auth_dane.wiki: more text, examples and links
Kim Alvefur <zash@zash.se>
parents: 440
diff changeset
33 xmpp.example.com serving the domain example.com.
80ce8d7f7f56 mod_s2s_auth_dane.wiki: more text, examples and links
Kim Alvefur <zash@zash.se>
parents: 440
diff changeset
34
435
fae8b0661edf Add info about _xmpp-server IN TLSA
Kim Alvefur <zash@zash.se>
parents: 418
diff changeset
35 {{{
442
7308cd1cd354 mod_s2s_auth_dane.wiki: Fix link title and more comments in example DNS stuff
Kim Alvefur <zash@zash.se>
parents: 441
diff changeset
36 $ORIGIN example.com.
7308cd1cd354 mod_s2s_auth_dane.wiki: Fix link title and more comments in example DNS stuff
Kim Alvefur <zash@zash.se>
parents: 441
diff changeset
37 ; Your standard SRV record
7308cd1cd354 mod_s2s_auth_dane.wiki: Fix link title and more comments in example DNS stuff
Kim Alvefur <zash@zash.se>
parents: 441
diff changeset
38 _xmpp-server._tcp.example.com IN SRV 0 0 5269 xmpp.example.com.
7308cd1cd354 mod_s2s_auth_dane.wiki: Fix link title and more comments in example DNS stuff
Kim Alvefur <zash@zash.se>
parents: 441
diff changeset
39 ; IPv4 and IPv6 addresses
7308cd1cd354 mod_s2s_auth_dane.wiki: Fix link title and more comments in example DNS stuff
Kim Alvefur <zash@zash.se>
parents: 441
diff changeset
40 xmpp.example.com. IN A 192.0.2.68
7308cd1cd354 mod_s2s_auth_dane.wiki: Fix link title and more comments in example DNS stuff
Kim Alvefur <zash@zash.se>
parents: 441
diff changeset
41 xmpp.example.com. IN AAAA 2001:0db8:0000:0000:4441:4e45:544c:5341
7308cd1cd354 mod_s2s_auth_dane.wiki: Fix link title and more comments in example DNS stuff
Kim Alvefur <zash@zash.se>
parents: 441
diff changeset
42
7308cd1cd354 mod_s2s_auth_dane.wiki: Fix link title and more comments in example DNS stuff
Kim Alvefur <zash@zash.se>
parents: 441
diff changeset
43 ; The DANE TLSA records. These three are equivalent, you would use only one of them.
7308cd1cd354 mod_s2s_auth_dane.wiki: Fix link title and more comments in example DNS stuff
Kim Alvefur <zash@zash.se>
parents: 441
diff changeset
44 ; First, using symbolic names:
7308cd1cd354 mod_s2s_auth_dane.wiki: Fix link title and more comments in example DNS stuff
Kim Alvefur <zash@zash.se>
parents: 441
diff changeset
45 _5269._tcp.xmpp.example.com. 300 IN TLSA DANE-EE Cert SHA2-256 E3B0C44298FC1C149AFBF4C8996FB92427AE41E4649B934CA495991B7852B855
7308cd1cd354 mod_s2s_auth_dane.wiki: Fix link title and more comments in example DNS stuff
Kim Alvefur <zash@zash.se>
parents: 441
diff changeset
46 ; Using numbers:
7308cd1cd354 mod_s2s_auth_dane.wiki: Fix link title and more comments in example DNS stuff
Kim Alvefur <zash@zash.se>
parents: 441
diff changeset
47 _5269._tcp.xmpp.example.com. 300 IN TLSA 3 0 1 E3B0C44298FC1C149AFBF4C8996FB92427AE41E4649B934CA495991B7852B855
7308cd1cd354 mod_s2s_auth_dane.wiki: Fix link title and more comments in example DNS stuff
Kim Alvefur <zash@zash.se>
parents: 441
diff changeset
48 ; Raw binary format, should work even with very old DNS tools:
7308cd1cd354 mod_s2s_auth_dane.wiki: Fix link title and more comments in example DNS stuff
Kim Alvefur <zash@zash.se>
parents: 441
diff changeset
49 _5269._tcp.xmpp.example.com. 300 IN TYPE52 \# 35 030001E3B0C44298FC1C149AFBF4C8996FB92427AE41E4649B934CA495991B7852B855
435
fae8b0661edf Add info about _xmpp-server IN TLSA
Kim Alvefur <zash@zash.se>
parents: 418
diff changeset
50 }}}
fae8b0661edf Add info about _xmpp-server IN TLSA
Kim Alvefur <zash@zash.se>
parents: 418
diff changeset
51
441
80ce8d7f7f56 mod_s2s_auth_dane.wiki: more text, examples and links
Kim Alvefur <zash@zash.se>
parents: 440
diff changeset
52 [http://www.internetsociety.org/deploy360/dnssec/tools/ List of DNSSEC and DANE tools]
80ce8d7f7f56 mod_s2s_auth_dane.wiki: more text, examples and links
Kim Alvefur <zash@zash.se>
parents: 440
diff changeset
53
80ce8d7f7f56 mod_s2s_auth_dane.wiki: more text, examples and links
Kim Alvefur <zash@zash.se>
parents: 440
diff changeset
54 = Further reading =
80ce8d7f7f56 mod_s2s_auth_dane.wiki: more text, examples and links
Kim Alvefur <zash@zash.se>
parents: 440
diff changeset
55
442
7308cd1cd354 mod_s2s_auth_dane.wiki: Fix link title and more comments in example DNS stuff
Kim Alvefur <zash@zash.se>
parents: 441
diff changeset
56 * [http://tools.ietf.org/html/draft-ietf-dane-ops DANE TLSA implementation and operational guidance]
441
80ce8d7f7f56 mod_s2s_auth_dane.wiki: more text, examples and links
Kim Alvefur <zash@zash.se>
parents: 440
diff changeset
57
417
880259dc82a8 DANE \o/
Kim Alvefur <zash@zash.se>
parents:
diff changeset
58 = Compatibility =
880259dc82a8 DANE \o/
Kim Alvefur <zash@zash.se>
parents:
diff changeset
59
459
7261117fcf19 Link to Zash's guide
MWild1@gmail.com
parents: 455
diff changeset
60 Requires 0.9 or above.