comparison mod_s2s_auth_dane.wiki @ 435:fae8b0661edf

Add info about _xmpp-server IN TLSA
author Kim Alvefur <zash@zash.se>
date Mon, 10 Mar 2014 16:08:19 +0100
parents 31cf9ab1d440
children 6e91b7ab36c1
comparison
equal deleted inserted replaced
434:980b08cb4b1f 435:fae8b0661edf
5 5
6 This module implements DANE as described in 6 This module implements DANE as described in
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]. 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 8
9 However it covers only outgoing server-to-server connections. 9 However it covers only outgoing server-to-server connections.
10
11 For incoming connections, an experimental method is used, but requires another TLSA record.
10 12
11 = Dependecies = 13 = Dependecies =
12 14
13 This module requires a DNSSEC aware DNS resolver. Prosodys internal DNS 15 This module requires a DNSSEC aware DNS resolver. Prosodys internal DNS
14 module does not support DNSSEC. Therefore, to use this module, a 16 module does not support DNSSEC. Therefore, to use this module, a
24 ... 26 ...
25 "s2s_auth_dane"; 27 "s2s_auth_dane";
26 } 28 }
27 }}} 29 }}}
28 30
31 = DNS Setup =
32
33 {{{
34 _xmpp-server._tcp IN SRV 0 0 5269 xmpp
35 _5269._tcp.xmpp IN TLSA 3 0 1 E3B0C44298FC1C149AFBF4C8996FB92427AE41E4649B934CA495991B7852B855
36 _xmpp-server IN TLSA 3 0 1 E3B0C44298FC1C149AFBF4C8996FB92427AE41E4649B934CA495991B7852B855
37 }}}
38
29 = Compatibility = 39 = Compatibility =
30 40
31 Requires 0.9 or above. 41 Requires 0.9 or above.