Mercurial > prosody-wiki
annotate mod_s2s_auth_dane.wiki @ 457:f6d83a7882d8
Created wiki page through web user interface.
author | MWild1@gmail.com |
---|---|
date | Mon, 19 May 2014 10:30:02 +0000 |
parents | 5f111a4e13fb |
children | 7261117fcf19 |
rev | line source |
---|---|
417 | 1 #summary S2S authentication using DANE |
2 #labels Stage-Alpha, Type-S2SAuth | |
3 | |
4 = Introduction = | |
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 | 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]. |
8 | |
9 = Dependecies = | |
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 | 14 |
15 = Configuration = | |
16 | |
441
80ce8d7f7f56
mod_s2s_auth_dane.wiki: more text, examples and links
Kim Alvefur <zash@zash.se>
parents:
440
diff
changeset
|
17 After [https://prosody.im/doc/installing_modules installing the module], just add it to `modules_enabled`; |
417 | 18 |
19 {{{ | |
20 modules_enabled = { | |
21 ... | |
22 "s2s_auth_dane"; | |
23 } | |
24 }}} | |
25 | |
435
fae8b0661edf
Add info about _xmpp-server IN TLSA
Kim Alvefur <zash@zash.se>
parents:
418
diff
changeset
|
26 = DNS Setup = |
fae8b0661edf
Add info about _xmpp-server IN TLSA
Kim Alvefur <zash@zash.se>
parents:
418
diff
changeset
|
27 |
441
80ce8d7f7f56
mod_s2s_auth_dane.wiki: more text, examples and links
Kim Alvefur <zash@zash.se>
parents:
440
diff
changeset
|
28 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
|
29 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
|
30 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
|
31 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
|
32 |
435
fae8b0661edf
Add info about _xmpp-server IN TLSA
Kim Alvefur <zash@zash.se>
parents:
418
diff
changeset
|
33 {{{ |
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
|
34 $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
|
35 ; 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
|
36 _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
|
37 ; 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
|
38 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
|
39 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
|
40 |
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 ; 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
|
42 ; 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
|
43 _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
|
44 ; 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
|
45 _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
|
46 ; 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
|
47 _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
|
48 }}} |
fae8b0661edf
Add info about _xmpp-server IN TLSA
Kim Alvefur <zash@zash.se>
parents:
418
diff
changeset
|
49 |
441
80ce8d7f7f56
mod_s2s_auth_dane.wiki: more text, examples and links
Kim Alvefur <zash@zash.se>
parents:
440
diff
changeset
|
50 [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
|
51 |
80ce8d7f7f56
mod_s2s_auth_dane.wiki: more text, examples and links
Kim Alvefur <zash@zash.se>
parents:
440
diff
changeset
|
52 = Further reading = |
80ce8d7f7f56
mod_s2s_auth_dane.wiki: more text, examples and links
Kim Alvefur <zash@zash.se>
parents:
440
diff
changeset
|
53 |
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
|
54 * [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
|
55 |
417 | 56 = Compatibility = |
57 | |
58 Requires 0.9 or above. |