| Abstract: | This specification provides detailed protocol flows for the establishment of communication between domains that provide XMPP services, including permutations for a wide variety of possible federation policies. |
| Author: | Peter Saint-Andre |
| Copyright: | © 1999 - 2010 XMPP Standards Foundation. SEE LEGAL NOTICES. |
| Status: | Deferred |
| Type: | Informational |
| Version: | 0.1 |
| Last Updated: | 2008-03-31 |
WARNING: Consideration of this document has been Deferred by the XMPP Standards Foundation. Implementation of the protocol described herein is not recommended.
1. Introduction
2. Terminology
3. Connection Success
4. Connections from Type 1 Services
4.1. Type 1 to Type 1
4.2. Type 1 to Type 2
4.3. Type 1 to Type 3
4.4. Type 1 to Type 4
4.5. Type 1 to Type 5
4.6. Type 1 to Type 6
5. Connections from Type 2 Services
5.1. Type 2 to Type 1
5.2. Type 2 to Type 2
5.3. Type 2 to Type 3
5.4. Type 2 to Type 4
5.5. Type 2 to Type 5
5.6. Type 2 to Type 6
6. Connections from Type 3 Services
6.1. Type 3 to Type 1
6.2. Type 3 to Type 2
6.3. Type 3 to Type 3
6.4. Type 3 to Type 4
6.5. Type 3 to Type 5
6.6. Type 3 to Type 6
7. Connections from Type 4 Services
7.1. Type 4 to Type 1
7.2. Type 4 to Type 2
7.3. Type 4 to Type 3
7.4. Type 4 to Type 4
7.5. Type 4 to Type 5
7.6. Type 4 to Type 6
8. Connections from Type 5 Services
8.1. Type 5 to Type 1
8.2. Type 5 to Type 2
8.3. Type 5 to Type 3
8.4. Type 5 to Type 4
8.5. Type 5 to Type 5
8.6. Type 5 to Type 6
9. Connections from Type 6 Services
9.1. Type 6 to Type 1
9.2. Type 6 to Type 2
9.3. Type 6 to Type 3
9.4. Type 6 to Type 4
9.5. Type 6 to Type 5
9.6. Type 6 to Type 6
10. Security Considerations
11. IANA Considerations
12. XMPP Registrar Considerations
13. Acknowledgements
Appendices
A: Document Information
B: Author Information
C: Legal Notices
D: Relation to XMPP
E: Discussion Venue
F: Requirements Conformance
G: Notes
H: Revision History
XMPP Core [1] describes the client-server architecture upon which Jabber/XMPP communication is based. One aspect of such communication is "federation", i.e., the ability for two XMPP servers in different domains to exchange XML stanzas. There are at least four levels of federation:
Permissive Federation -- a server accepts a connection from any other peer on the network, even without verifiying the identity of the peer based on DNS lookups. The lack of peer verification or authentication means that domains can be spoofed. Permissive federation was effectively outlawed on the Jabber network in October 2000 with the release of the jabberd 1.2 server, which included support for the newly-developed Server Dialback [2] protocol.
Verified Federation -- a server accepts a connection from a peer only after the identity of the peer has been weakly verified via Server Dialback, based on information obtained via the Domain Name System (DNS) and verification keys exchanged in-band over XMPP. However, the connection is not encrypted. The use of identity verification effectively prevents domain spoofing, but federation requires proper DNS setup and is still subject to DNS poisoning attacks. Verified federation has been the default service policy followed by servers on the open XMPP network from October 2000 until now.
Encrypted Federation -- a server accepts a connection from a peer only if the peer supports Transport Layer Security (TLS) as defined for XMPP in RFC 3920 [3] and the peer presents a digital certificate. However, the certificate may be self-signed, in which case mutual authentication is typically not possible. Therefore, after STARTTLS negotiation the parties proceed to weakly verify identity using Server Dialback. This combination results in an encrypted connection with weak identity verification.
Trusted Federation -- a server accepts a connection from a peer only if the peer supports Transport Layer Security (TLS) and the peer presents a digital certificate issued by a trusted root certification authority (CA). The list of trusted root CAs is determined by local service policy, as is the level of trust accorded to various types of certificates (i.e., Class 1, Class 2, or Class 3). The use of trusted domain certificates effectively prevents DNS poisoning attacks but makes federation more difficult since typically such certificates are not easy to obtain.
The remainder of this document describes in more detail the protocol flows that make it possible to deploy verified federation, encrypted federation, and trusted federation. Protocol flows are shown for federation attempts between various combinations to illustrate the interaction between different federation policies.
To simplify the text, this document uses the following terminology. For each service type, the domain "example.lit" is used to illustrate connections to that same service type.
| Service Type | Federation Policy | Certificate | Protocols Supported | Example Domain | Example User |
|---|---|---|---|---|---|
| Type 1 | Verified Only | None | XMPP 0.9 [4] and Server Dialback | type1.lit | citizen@type1.lit |
| Type 2 | Verified Acceptable | Self-signed | XMPP 1.0 [5] and Server Dialback | type2.lit | juliet@type2.lit |
| Type 3 | Verified Acceptable | CA-issued | XMPP 1.0 and Server Dialback | type3.lit | romeo@type3.lit |
| Type 4 | Encrypted Required | Self-signed | XMPP 1.0 and Server Dialback | type4.lit | hamlet@type4.lit |
| Type 5 | Encrypted Required | CA-issued | XMPP 1.0 and Server Dialback | type5.lit | bill@type5.lit |
| Type 6 | Trusted Required | CA-issued | XMPP 1.0 | type6.lit | chris@type6.lit |
The following table summarizes the results of connection attempts between the various services, where "U" stands for "Unsuccessful", "V" stands for "Verified", "E" stands for "Encrypted", and "T" stands for "Trusted". The rows indicate the initiating service and the columns indicate the receiving service.
| Type 1 | Type 2 | Type 3 | Type 4 | Type 5 | Type 6 | |
|---|---|---|---|---|---|---|
| Type 1 | V | V | V | U | U | U |
| Type 2 | V | V | E | E | U | U |
| Type 3 | V | V | E | E | E | T |
| Type 4 | U | E | E | E | E | U |
| Type 5 | U | E | T | E | T | T |
| Type 6 | U | U | T | U | T | T |
In this scenario, an XMPP user citizen@type1.lit attempts to send an XML stanza to user@example.lit.
<iq from='citizen@type1.lit/foo'
id='t1_t1'
to='user@example.lit'
type='get'>
<ping xmlns='urn:xmpp:ping'/>
</iq>
Therefore the type1.lit service attempts to initiate a server-to-server connection with example.lit (both of which support verified connections only and neither of which has a certificate).
First, the type1.lit service sends an initial stream header to example.lit.
Example 2. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type1.lit'
to='example.lit'>
Next the example.lit service sends a response stream header to type1.lit.
Example 3. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='example.lit'
id='idt1_t1o'
to='type1.lit'>
Because neither service supports XMPP 1.0, the type1.lit service attempts to complete a server dialback negotiation with the example.lit service. Therefore it sends a dialback key to example.lit over the existing connection.
<db:result
from='type1.lit'
to='example.lit'>
some-long-dialback-key
</db:result>
The example.lit service then performs a DNS lookup on the type1.lit domain, opens a TCP connection at the discovered IP address and port, and establishes a stream with the authoritative server for the type1.lit service.
Example 5. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='example.lit'
to='type1.lit'>
The authoritative server for the type1.lit service then returns a response stream header.
Example 6. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type1.lit'
id='idt1_t1r'
to='example.lit'>
The example.lit service then sends a dialback verification request to the authoritative server for the type1.lit domain.
Example 7. Verification Request
<db:verify
from='example.lit'
id='idt1_t1o'
to='type1.lit'>
some-long-dialback-key
</db:verify>
Here we assume that the authoritative server for the type1.lit domain notifies the example.lit service that the key is valid.
<db:verify
from='type1.lit'
id='idt1_t1o'
to='example.lit'
type='valid'>
some-long-dialback-key
</db:verify>
The example.lit service then returns a positive server dialback result to the originating server.
Example 9. Server Dialback Result
<db:result
from='example.lit'
to='type1.lit'
type='valid'>
some-long-dialback-key
</db:result>
Because the connection is successful, the type1.lit service routes the XML stanza from citizen@type1.lit to the example.lit service.
In this scenario, an XMPP user citizen@type1.lit attempts to send an XML stanza to juliet@type2.lit:
<iq from='citizen@type1.lit/foo'
id='t1_t2'
to='juliet@type2.lit'
type='get'>
<ping xmlns='urn:xmpp:ping'/>
</iq>
Therefore the type1.lit service (which supports verified connections only and does not have a certificate) attempts to initiate a server-to-server connection with the type2.lit service (which accepts verified connections and has a self-signed certificate).
First, the type1.lit service sends an initial stream header to type2.lit.
Example 11. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type1.lit'
to='type2.lit'>
Next the type2.lit service sends a response stream header to type1.lit.
Example 12. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type2.lit'
id='idt1_t2o'
to='type1.lit'
version='1.0'>
The type2.lit service also sends stream features.
<stream:features>
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
<dialback xmlns='urn:xmpp:features:dialback'/>
</stream:features>
Because the type1.lit service does not support XMPP 1.0, it ignores the stream features and attempts to complete a server dialback negotiation with the type2.lit service. Therefore it sends a dialback key to type2.lit over the existing connection.
<db:result
from='type1.lit'
to='type2.lit'>
some-long-dialback-key
</db:result>
The type2.lit service then performs a DNS lookup on the type1.lit domain, opens a TCP connection at the discovered IP address and port, and establishes a stream with the authoritative server for the type1.lit service.
Example 15. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type2.lit'
to='type1.lit'
version='1.0'>
The authoritative server for the type1.lit service then returns a response stream header.
Example 16. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type1.lit'
id='idt1_t2r'
to='type2.lit'>
The type2.lit service then sends a dialback verification request to the authoritative server for the type1.lit domain.
Example 17. Verification Request
<db:verify
from='type2.lit'
id='idt1_t2o'
to='type1.lit'>
some-long-dialback-key
</db:verify>
Here we assume that the authoritative server for the type1.lit domain notifies the type2.lit service that the key is valid.
<db:verify
from='type1.lit'
id='idt1_t2o'
to='type2.lit'
type='valid'>
some-long-dialback-key
</db:verify>
The type2.lit service then returns a positive server dialback result to the originating server.
Example 19. Server Dialback Result
<db:result
from='type2.lit'
to='type1.lit'
type='valid'>
some-long-dialback-key
</db:result>
Because the connection is successful, the type1.lit service routes the XML stanza from citizen@type1.lit to the type2.lit service.
In this scenario, an XMPP user citizen@type1.lit attempts to send an XML stanza to romeo@type3.lit.
<iq from='citizen@type1.lit/foo'
id='t1_t3'
to='romeo@type3.lit'
type='get'>
<ping xmlns='urn:xmpp:ping'/>
</iq>
Therefore the type1.lit service (which supports verified connections only and does not have a certificate) attempts to initiate a server-to-server connection with the type3.lit service (which accepts verified connections and has a CA-issued certificate).
First, the type1.lit service sends an initial stream header to type3.lit.
Example 21. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type1.lit'
to='type3.lit'>
Next the type3.lit service sends a response stream header to type1.lit.
Example 22. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type3.lit'
id='idt1_t3o'
to='type1.lit'
version='1.0'>
The type3.lit service also sends stream features.
<stream:features>
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
<dialback xmlns='urn:xmpp:features:dialback'/>
</stream:features>
Because the type1.lit service does not support XMPP 1.0, it ignores the stream features and attempts to complete a server dialback negotiation with the type3.lit service. Therefore it sends a dialback key to the authoritative server for the type3.lit service.
<db:result
from='type1.lit'
to='type3.lit'>
some-long-dialback-key
</db:result>
The type3.lit service then performs a DNS lookup on the type1.lit domain, opens a TCP connection at the discovered IP address and port, and establishes a stream with the authoritative server.
Example 25. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type3.lit'
to='type1.lit'
version='1.0'>
The authoritative server for the type1.lit service then returns a response stream header.
Example 26. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type1.lit'
id='idt1_t3r'
to='type3.lit'>
The type3.lit service then sends a dialback verification request to the authoritative server for the type1.lit domain.
Example 27. Verification Request
<db:verify
from='type3.lit'
id='idt1_t3o'
to='type1.lit'>
some-long-dialback-key
</db:verify>
Here we assume that the authoritative server for the type1.lit domain notifies the type3.lit service that the key is valid.
<db:verify
from='type1.lit'
id='idt1_t3o'
to='type2.lit'
type='valid'>
some-long-dialback-key
</db:verify>
The type3.lit service then returns a positive server dialback result to the originating server.
Example 29. Server Dialback Result
<db:result
from='type3.lit'
to='type1.lit'
type='valid'>
some-long-dialback-key
</db:result>
Because the connection is successful, the type1.lit service routes the XML stanza from citizen@type1.lit to the type3.lit service.
In this scenario, an XMPP user citizen@type1.lit attempts to send an XML stanza to hamlet@type4.lit.
<iq from='citizen@type1.lit/foo'
id='t1_t4'
to='hamlet@type4.lit'
type='get'>
<ping xmlns='urn:xmpp:ping'/>
</iq>
Therefore the type1.lit service (which supports verified connections only and does not have a certificate) attempts to initiate a server-to-server connection with type4.lit (which does not accept verified connections and has a self-signed certificate).
First, the type1.lit service sends an initial stream header to type4.lit.
Example 31. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type1.lit'
to='type4.lit'>
Next the type4.lit service sends a response stream header to type1.lit.
Example 32. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type4.lit'
id='idt1_t4o'
to='type1.lit'
version='1.0'>
The type4.lit service also sends stream features. Because the type4.lit service does not accept verified connections, it returns stream features with a notation that STARTTLS is required.
<stream:features>
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'>
<required/>
</starttls>
</stream:features>
Because the type1.lit service does not support XMPP 1.0, it ignores the stream features and attempts to complete a server dialback negotiation with the type4.lit service. Therefore it sends a dialback key to the authoritative server for the type4.lit service.
<db:result
from='type1.lit'
to='type4.lit'>
some-long-dialback-key
</db:result>
The type4.lit service understands the server dialback protocol but since it requires STARTTLS at this point in the stream negotiation it returns a stream error to the type1.lit service, which should be <not-authorized/>.
<stream:error>
<not-authorized
xmlns='urn:ietf:params:xml:ns:xmpp-streams'/>
</stream:error>
</stream:stream>
Because the connection is unsuccessful, the type1.lit service returns a stanza error to citizen@type1.lit, which should be <remote-server-timeout/>.
<iq from='romeo@type4.lit'
id='t1_t4'
to='citizen@type1.lit/foo'
type='error'>
<error type='cancel'>
<remote-server-timeout
xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/>
</error>
</iq>
In this scenario, an XMPP user citizen@type1.lit attempts to send an XML stanza to bill@type5.lit.
<iq from='citizen@type1.lit/foo'
id='t1_t5'
to='bill@type5.lit'
type='get'>
<ping xmlns='urn:xmpp:ping'/>
</iq>
Therefore the type1.lit service (which supports verified connections only and does not have a certificate) attempts to initiate a server-to-server connection with type5.lit (which does not accept verified connections and has a CA-issued signed certificate).
First, the type1.lit service sends an initial stream header to type5.lit.
Example 38. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type1.lit'
to='type5.lit'>
Next the type5.lit service sends a response stream header to type1.lit.
Example 39. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type5.lit'
id='idt1_t5o'
to='type1.lit'
version='1.0'>
The type5.lit service also sends stream features. Because the type5.lit service does not accept verified connections, it returns stream features with a notation that STARTTLS is required.
<stream:features>
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'>
<required/>
</starttls>
</stream:features>
Because the type1.lit service does not support XMPP 1.0, it ignores the stream features and attempts to complete a server dialback negotiation with the type5.lit service. Therefore it sends a dialback key to the authoritative server for the type5.lit service.
<db:result
from='type1.lit'
to='type5.lit'>
some-long-dialback-key
</db:result>
The type5.lit service understands the server dialback protocol but since it requires STARTTLS at this point in the stream negotiation it returns a stream error to the type1.lit service, which should be <not-authorized/>.
<stream:error>
<not-authorized
xmlns='urn:ietf:params:xml:ns:xmpp-streams'/>
</stream:error>
</stream:stream>
Because the connection is unsuccessful, the type1.lit service returns a stanza error to citizen@type1.lit, which should be <remote-server-timeout/>.
<iq from='bill@type5.lit'
id='t1_t5'
to='citizen@type1.lit/foo'
type='error'>
<error type='cancel'>
<remote-server-timeout
xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/>
</error>
</iq>
In this scenario, an XMPP user citizen@type1.lit attempts to send an XML stanza to chris@type6.lit.
<iq from='citizen@type1.lit/foo'
id='t1_t6'
to='chris@type6.lit'
type='get'>
<ping xmlns='urn:xmpp:ping'/>
</iq>
Therefore the type1.lit service (which supports verified connections only and does not have a certificate) attempts to initiate a server-to-server connection with the type6.lit service (which accepts only trusted connections, has a CA-issued certificate, and does not support Server Dialback).
First, the type1.lit service sends an initial stream header to type6.lit.
Example 45. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type1.lit'
to='type6.lit'>
Next the type6.lit service sends a response stream header to type1.lit. Notice that the response stream header does not include the dialback namespace, since the type6.lit service does not support Server Dialback.
Example 46. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type6.lit'
id='idt1_t6o'
to='type1.lit'
version='1.0'>
The type6.lit service also sends stream features. Because the type6.lit service does not accept untrusted connections, it returns stream features with a notation that STARTTLS is required.
<stream:features>
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'>
<required/>
</starttls>
</stream:features>
The type1.lit service does not detect support for server dialback by the type6.lit service but in any case attempts to complete server dialback.
<db:result
from='type1.lit'
to='type6.lit'>
some-long-dialback-key
</db:result>
The type6.lit service does not accept dialback negotiations so it returns a <not-authorized/> stream error and closes the stream.
<stream:error>
<not-authorized
xmlns='urn:ietf:params:xml:ns:xmpp-streams'/>
</stream:error>
</stream:stream>
The type1.lit service closes the stream as well.
</stream:stream>
Because the connection is unsuccessful, the type1.lit service returns a stanza error to citizen@type1.lit, which should be <remote-server-timeout/>.
<iq from='chris@type6.lit'
id='t1_t6'
to='citizen@type1.lit/foo'
type='error'>
<error type='cancel'>
<remote-server-timeout
xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/>
</error>
</iq>
In this scenario, an XMPP user juliet@type2.lit attempts to send an XML stanza to citizen@type1.lit:
<iq from='juliet@type2.lit/foo'
id='t2_t1'
to='citizen@type1.lit'
type='get'>
<ping xmlns='urn:xmpp:ping'/>
</iq>
Therefore the type2.lit service (which accepts verified connections and has a self-signed certificate) attempts to initiate a server-to-server connection with the type1.lit service (which supports verified connections only and does not have a certificate).
First, the type2.lit service sends an initial stream header to type1.lit.
Example 53. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type2.lit'
to='type1.lit'
version='1.0'>
Next the type1.lit service sends a response stream header to type2.lit.
Example 54. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type1.lit'
id='idt1_t2o'
to='type2.lit'>
Because the type1.lit service does not support XMPP 1.0, it does not send stream features. Because the type2.lit service accepts verified connections, it attempts to verify the identity of type1.lit using server dialback. Therefore it sends a dialback key to type1.lit over the existing connection.
<db:result
from='type2.lit'
to='type1.lit'>
some-long-dialback-key
</db:result>
The type1.lit service then performs a DNS lookup on the type2.lit domain, opens a TCP connection at the discovered IP address and port, and establishes a stream with the authoritative server for the type2.lit service.
Example 56. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type1.lit'
to='type2.lit'>
The authoritative server for the type2.lit service then returns a response stream header.
Example 57. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type2.lit'
id='idt1_t2r'
to='type1.lit'
version='1.0'>
The type1.lit service then sends a dialback verification request to the authoritative server for the type2.lit domain.
Example 58. Verification Request
<db:verify
from='type1.lit'
id='idt2_t1o'
to='type2.lit'>
some-long-dialback-key
</db:verify>
Here we assume that the authoritative server for the type2.lit domain notifies the type1.lit service that the key is valid.
<db:verify
from='type2.lit'
id='idt1_t1o'
to='type1.lit'
type='valid'>
some-long-dialback-key
</db:verify>
The type1.lit service then returns a positive server dialback result to the originating server (i.e., type2.lit).
Example 60. Server Dialback Result
<db:result
from='type1.lit'
to='type2.lit'
type='valid'>
some-long-dialback-key
</db:result>
Because the connection is successful, the type2.lit service routes the XML stanza from juliet@type2.lit to the type1.lit service.
In this scenario, an XMPP user juliet@type2.lit attempts to send an XML stanza to user@example.lit:
<iq from='juliet@type2.lit/foo'
id='t2_t2'
to='user@example.lit'
type='get'>
<ping xmlns='urn:xmpp:ping'/>
</iq>
Therefore the type2.lit service (which accepts verified connections and has a self-signed certificate) attempts to initiate a server-to-server connection with the example.lit service (which also supports verified connections and has a self-signed certificate).
First, the type2.lit service sends an initial stream header to example.lit.
Example 62. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type2.lit'
to='example.lit'
version='1.0'>
Next the example.lit service sends a response stream header to type2.lit.
Example 63. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='example.lit'
id='idt2_t2o'
to='type2.lit'>
Because the example.lit service supports XMPP 1.0, it also sends stream features.
<stream:features>
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
<dialback xmlns='urn:xmpp:features:dialback'/>
</stream:features>
We assume that type2.lit does not attempt STARTTLS negotiation but instead attempts server dialback for weak identity verification.
<db:result
from='type2.lit'
to='example.lit'>
some-long-dialback-key
</db:result>
The example.lit service then performs a DNS lookup on the type2.lit domain, opens a TCP connection at the discovered IP address and port, and establishes a stream with the authoritative server for the type2.lit service.
Example 66. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='example.lit'
to='type2.lit'>
The authoritative server for the type2.lit service then returns a response stream header.
Example 67. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type2.lit'
id='idt2_t2r'
to='example.lit'
version='1.0'>
The example.lit service then sends a dialback verification request to the authoritative server for the type2.lit domain.
Example 68. Verification Request
<db:verify
from='example.lit'
id='idt2_t2o'
to='type2.lit'>
some-long-dialback-key
</db:verify>
Here we assume that the authoritative server for the type2.lit domain notifies the example.lit service that the key is valid.
<db:verify
from='type2.lit'
id='idt2_t2o'
to='example.lit'
type='valid'>
some-long-dialback-key
</db:verify>
The example.lit service then returns a positive server dialback result to the originating server (i.e., type2.lit).
Example 70. Server Dialback Result
<db:result
from='example.lit'
to='type2.lit'
type='valid'>
some-long-dialback-key
</db:result>
Because the connection is successful, the type2.lit service routes the XML stanza from juliet@type2.lit to the example.lit service.
In this scenario, an XMPP user juliet@type2.lit attempts to send an XML stanza to romeo@type3.lit:
<iq from='juliet@type2.lit/foo'
id='t2_t3'
to='romeo@type3.lit'
type='get'>
<ping xmlns='urn:xmpp:ping'/>
</iq>
Therefore the type2.lit service (which accepts verified connections and has a self-signed certificate) attempts to initiate a server-to-server connection with the type3.lit service (which also supports verified connections and has a CA-issued certificate).
First, the type2.lit service sends an initial stream header to type3.lit.
Example 72. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type2.lit'
to='type3.lit'
version='1.0'>
Next the type3.lit service sends a response stream header to type2.lit.
Example 73. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type3.lit'
id='idt2_t3o'
to='type2.lit'>
Because the type3.lit service supports XMPP 1.0, it also sends stream features.
<stream:features>
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
<dialback xmlns='urn:xmpp:features:dialback'/>
</stream:features>
We assume that type2.lit does not attempt STARTTLS negotiation but instead attempts server dialback for weak identity verification.
<db:result
from='type2.lit'
to='type3.lit'>
some-long-dialback-key
</db:result>
The type3.lit service then performs a DNS lookup on the type2.lit domain, opens a TCP connection at the discovered IP address and port, and establishes a stream with the authoritative server for the type2.lit service.
Example 76. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type3.lit'
to='type2.lit'>
The authoritative server for the type2.lit service then returns a response stream header.
Example 77. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type2.lit'
id='idt2_t3r'
to='type3.lit'
version='1.0'>
The type3.lit service then sends a dialback verification request to the authoritative server for the type2.lit domain.
Example 78. Verification Request
<db:verify
from='type3.lit'
id='idt2_t3o'
to='type2.lit'>
some-long-dialback-key
</db:verify>
Here we assume that the authoritative server for the type2.lit domain notifies the type3.lit service that the key is valid.
<db:verify
from='type2.lit'
id='idt2_t3o'
to='type3.lit'
type='valid'>
some-long-dialback-key
</db:verify>
The type3.lit service then returns a positive server dialback result to the originating server (i.e., type2.lit).
Example 80. Server Dialback Result
<db:result
from='type3.lit'
to='type2.lit'
type='valid'>
some-long-dialback-key
</db:result>
Because the connection is successful, the type2.lit service routes the XML stanza from juliet@type2.lit to the type3.lit service.
In this scenario, an XMPP user juliet@type2.lit attempts to send an XML stanza to hamlet@type4.lit:
<iq from='juliet@type2.lit/foo'
id='t2_t4'
to='hamlet@type4.lit'
type='get'>
<ping xmlns='urn:xmpp:ping'/>
</iq>
Therefore the type2.lit service (which accepts verified connections and has a self-signed certificate) attempts to initiate a server-to-server connection with the type4.lit service (which also supports verified connections and has a CA-issued certificate).
First, the type2.lit service sends an initial stream header to type4.lit.
Example 82. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type2.lit'
to='type4.lit'
version='1.0'>
Next the type4.lit service sends a response stream header to type2.lit.
Example 83. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type4.lit'
id='idt2_t4o'
to='type2.lit'>
Because the type4.lit service supports XMPP 1.0, it also sends stream features.
<stream:features>
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'>
<required/>
</starttls>
<dialback xmlns='urn:xmpp:features:dialback'/>
</stream:features>
Because type4.lit requires encryption, type2.lit attempts to negotiate a STARTTLS upgrade to the stream.
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
<proceed xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
The servers then negotiate TLS. We assume the negotiation is successful.
The type2.lit service then opens a new stream over the encrypted connection.
Example 87. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type2.lit'
to='type4.lit'
version='1.0'>
Next the type4.lit service sends a response stream header to type2.lit.
Example 88. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type4.lit'
id='idt2_t4o2'
to='type2.lit'>
Because the type4.lit service supports XMPP 1.0, it also sends stream features.
<stream:features>
<dialback xmlns='urn:xmpp:features:dialback'>
<required/>
</dialback>
</stream:features>
Notice that type4.lit requires dialback here (perhaps because of some local service policy). Therefore type2.lit sends a dialback key to type4.lit.
<db:result
from='type2.lit'
to='type4.lit'>
some-long-dialback-key
</db:result>
The type4.lit service then performs a DNS lookup on the type2.lit domain, opens a TCP connection at the discovered IP address and port, and establishes a stream with the authoritative server for the type2.lit service.
Example 91. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type4.lit'
to='type2.lit'>
The authoritative server for the type2.lit service then returns a response stream header.
Example 92. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type2.lit'
id='idt2_t4r'
to='type4.lit'
version='1.0'>
The type4.lit service then sends a dialback verification request to the authoritative server for the type2.lit domain.
Example 93. Verification Request
<db:verify
from='type4.lit'
id='idt2_t4o'
to='type2.lit'>
some-long-dialback-key
</db:verify>
Here we assume that the authoritative server for the type2.lit domain notifies the type4.lit service that the key is valid.
<db:verify
from='type2.lit'
id='idt2_t4o'
to='type4.lit'
type='valid'>
some-long-dialback-key
</db:verify>
The type4.lit service then returns a positive server dialback result to the originating server (i.e., type2.lit).
Example 95. Server Dialback Result
<db:result
from='type4.lit'
to='type2.lit'
type='valid'>
some-long-dialback-key
</db:result>
Because the connection is successful, the type2.lit service routes the XML stanza from juliet@type2.lit to the type4.lit service.
In this scenario, an XMPP user juliet@type2.lit attempts to send an XML stanza to bill@type5.lit:
<iq from='juliet@type2.lit/foo'
id='t2_t5'
to='bill@type5.lit'
type='get'>
<ping xmlns='urn:xmpp:ping'/>
</iq>
Therefore the type2.lit service (which accepts verified connections and has a self-signed certificate) attempts to initiate a server-to-server connection with the type5.lit service (which also supports verified connections and has a CA-issued certificate).
First, the type2.lit service sends an initial stream header to type5.lit.
Example 97. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type2.lit'
to='type5.lit'
version='1.0'>
Next the type5.lit service sends a response stream header to type2.lit.
Example 98. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type5.lit'
id='idt2_t5o'
to='type2.lit'>
Because the type5.lit service supports XMPP 1.0, it also sends stream features.
<stream:features>
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'>
<required/>
</starttls>
<dialback xmlns='urn:xmpp:features:dialback'/>
</stream:features>
Because type5.lit requires encryption, type2.lit attempts to negotiate a STARTTLS upgrade to the stream.
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
Example 101. STARTTLS Response
<proceed xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
The servers then negotiate TLS. We assume the negotiation is successful.
The type2.lit service then opens a new stream over the encrypted connection.
Example 102. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type2.lit'
to='type5.lit'
version='1.0'>
Next the type5.lit service sends a response stream header to type2.lit.
Example 103. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type5.lit'
id='idt2_t5o2'
to='type2.lit'>
Because the type5.lit service supports XMPP 1.0, it also sends stream features.
<stream:features>
<dialback xmlns='urn:xmpp:features:dialback'>
<required/>
</dialback>
</stream:features>
Notice that type5.lit requires dialback here (perhaps because of some local service policy). Therefore type2.lit sends a dialback key to type5.lit.
<db:result
from='type2.lit'
to='type5.lit'>
some-long-dialback-key
</db:result>
The type5.lit service then performs a DNS lookup on the type2.lit domain, opens a TCP connection at the discovered IP address and port, and establishes a stream with the authoritative server for the type2.lit service.
Example 106. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type5.lit'
to='type2.lit'>
The authoritative server for the type2.lit service then returns a response stream header.
Example 107. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type2.lit'
id='idt2_t5r'
to='type5.lit'
version='1.0'>
The type5.lit service then sends a dialback verification request to the authoritative server for the type2.lit domain.
Example 108. Verification Request
<db:verify
from='type5.lit'
id='idt2_t5o'
to='type2.lit'>
some-long-dialback-key
</db:verify>
Here we assume that the authoritative server for the type2.lit domain notifies the type5.lit service that the key is valid.
<db:verify
from='type2.lit'
id='idt2_t5o'
to='type5.lit'
type='valid'>
some-long-dialback-key
</db:verify>
The type5.lit service then returns a positive server dialback result to the originating server (i.e., type2.lit).
Example 110. Server Dialback Result
<db:result
from='type5.lit'
to='type2.lit'
type='valid'>
some-long-dialback-key
</db:result>
Because the connection is successful, the type2.lit service routes the XML stanza from juliet@type2.lit to the type5.lit service.
In this scenario, an XMPP user juliet@type2.lit attempts to send an XML stanza to chris@type6.lit.
<iq from='juliet@type2.lit/foo'
id='t2_t6'
to='chris@type6.lit'
type='get'>
<ping xmlns='urn:xmpp:ping'/>
</iq>
Therefore the type2.lit service (which supports verified connections and has a self-signed certificate) attempts to initiate a server-to-server connection with the type6.lit service (which accepts only trusted connections, has a CA-issued certificate, and does not support Server Dialback).
First, the type2.lit service sends an initial stream header to type6.lit.
Example 112. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type2.lit'
to='type6.lit'>
Next the type6.lit service sends a response stream header to type2.lit. Notice that the response stream header does not include the dialback namespace, since the type6.lit service does not support Server Dialback.
Example 113. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type6.lit'
id='idt2_t6o'
to='type2.lit'
version='1.0'>
The type6.lit service also sends stream features. Because the type6.lit service does not accept untrusted connections, it returns stream features with a notation that STARTTLS is required.
<stream:features>
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'>
<required/>
</starttls>
</stream:features>
Because type6.lit requires encryption, type2.lit attempts to negotiate a STARTTLS upgrade to the stream.
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
Example 116. STARTTLS Response
<proceed xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
The servers then attempt negotiate TLS. We assume the negotiation fails because type2.lit presents a self-signed certificate but type6.lit requires trusted federation relying on a common root CA.
Because the connection is unsuccessful, the type2.lit service returns a stanza error to juliet@type2.lit, which should be <remote-server-timeout/>.
<iq from='chris@type6.lit'
id='t2_t6'
to='juliet@type2.lit/foo'
type='error'>
<error type='cancel'>
<remote-server-timeout
xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/>
</error>
</iq>
In this scenario, an XMPP user romeo@type3.lit attempts to send an XML stanza to citizen@type1.lit:
<iq from='romeo@type3.lit/foo'
id='t3_t1'
to='citizen@type1.lit'
type='get'>
<ping xmlns='urn:xmpp:ping'/>
</iq>
Therefore the type3.lit service (which accepts verified connections and has a CA-issued certificate) attempts to initiate a server-to-server connection with the type1.lit service (which supports verified connections only and does not have a certificate).
First, the type3.lit service sends an initial stream header to type1.lit.
Example 119. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type3.lit'
to='type1.lit'
version='1.0'>
Next the type1.lit service sends a response stream header to type3.lit.
Example 120. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type1.lit'
id='idt3_t1o'
to='type3.lit'>
Because the type1.lit service does not support XMPP 1.0, it does not send stream features. Therefore the type3.lit attempts to complete server dialback verification.
<db:result
from='type3.lit'
to='type1.lit'>
some-long-dialback-key
</db:result>
The type1.lit service then performs a DNS lookup on the type3.lit domain, opens a TCP connection at the discovered IP address and port, and establishes a stream with the authoritative server for the type3.lit service.
Example 122. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type1.lit'
to='type3.lit'>
The authoritative server for the type3.lit service then returns a response stream header.
Example 123. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type3.lit'
id='idt3_t1r'
to='type1.lit'
version='1.0'>
The type1.lit service then sends a dialback verification request to the authoritative server for the type3.lit domain.
Example 124. Verification Request
<db:verify
from='type1.lit'
id='idt3_t1o'
to='type3.lit'>
some-long-dialback-key
</db:verify>
Here we assume that the authoritative server for the type3.lit domain notifies the type1.lit service that the key is valid.
<db:verify
from='type3.lit'
id='idt3_t1o'
to='type1.lit'
type='valid'>
some-long-dialback-key
</db:verify>
The type1.lit service then returns a positive server dialback result to the originating server (i.e., type3.lit).
Example 126. Server Dialback Result
<db:result
from='type1.lit'
to='type3.lit'
type='valid'>
some-long-dialback-key
</db:result>
Because the connection is successful, the type3.lit service routes the XML stanza from romeo@type3.lit to the type1.lit service.
In this scenario, an XMPP user romeo@type3.lit attempts to send an XML stanza to juliet@type2.lit:
<iq from='romeo@type3.lit/foo'
id='t3_t2'
to='juliet@type2.lit'
type='get'>
<ping xmlns='urn:xmpp:ping'/>
</iq>
Therefore the type3.lit service (which accepts verified connections and has a CA-issued certificate) attempts to initiate a server-to-server connection with the type2.lit service (which supports verified connections and has a self-signed certificate).
First, the type3.lit service sends an initial stream header to type2.lit.
Example 128. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type3.lit'
to='type2.lit'
version='1.0'>
Next the type2.lit service sends a response stream header to type3.lit.
Example 129. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type2.lit'
id='idt3_t2o'
to='type3.lit'>
Because the type3.lit service supports XMPP 1.0, it also sends stream features.
<stream:features>
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
<dialback xmlns='urn:xmpp:features:dialback'/>
</stream:features>
We assume that type2.lit does not attempt STARTTLS negotiation but instead attempts server dialback for weak identity verification.
<db:result
from='type3.lit'
to='type2.lit'>
some-long-dialback-key
</db:result>
The type2.lit service then performs a DNS lookup on the type3.lit domain, opens a TCP connection at the discovered IP address and port, and establishes a stream with the authoritative server for the type3.lit service.
Example 132. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type2.lit'
to='type3.lit'>
The authoritative server for the type3.lit service then returns a response stream header.
Example 133. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type3.lit'
id='idt3_t2r'
to='type2.lit'
version='1.0'>
The type2.lit service then sends a dialback verification request to the authoritative server for the type3.lit domain.
Example 134. Verification Request
<db:verify
from='type2.lit'
id='idt3_t2o'
to='type3.lit'>
some-long-dialback-key
</db:verify>
Here we assume that the authoritative server for the type3.lit domain notifies the type2.lit service that the key is valid.
<db:verify
from='type3.lit'
id='idt3_t1o'
to='type2.lit'
type='valid'>
some-long-dialback-key
</db:verify>
The type2.lit service then returns a positive server dialback result to the originating server (i.e., type3.lit).
Example 136. Server Dialback Result
<db:result
from='type2.lit'
to='type3.lit'
type='valid'>
some-long-dialback-key
</db:result>
Because the connection is successful, the type3.lit service routes the XML stanza from romeo@type3.lit to the type2.lit service.
In this scenario, an XMPP user romeo@type3.lit attempts to send an XML stanza to user@example.lit:
<iq from='romeo@type3.lit/foo'
id='t3_t3'
to='user@example.lit'
type='get'>
<ping xmlns='urn:xmpp:ping'/>
</iq>
Therefore the type3.lit service (which accepts verified connections and has a CA-issued certificate) attempts to initiate a server-to-server connection with the example.lit service (which also supports verified connections and has a CA-issued certificate).
First, the type3.lit service sends an initial stream header to example.lit.
Example 138. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type3.lit'
to='example.lit'
version='1.0'>
Next the example.lit service sends a response stream header to type3.lit.
Example 139. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='example.lit'
id='idt3_t3o'
to='type3.lit'>
Because the type3.lit service supports XMPP 1.0, it also sends stream features.
<stream:features>
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
<dialback xmlns='urn:xmpp:features:dialback'/>
</stream:features>
We assume that example.lit does not attempt STARTTLS negotiation but instead attempts server dialback for weak identity verification.
<db:result
from='type3.lit'
to='example.lit'>
some-long-dialback-key
</db:result>
The example.lit service then performs a DNS lookup on the type3.lit domain, opens a TCP connection at the discovered IP address and port, and establishes a stream with the authoritative server for the type3.lit service.
Example 142. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='example.lit'
to='type3.lit'>
The authoritative server for the type3.lit service then returns a response stream header.
Example 143. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type3.lit'
id='idt3_t3r'
to='example.lit'
version='1.0'>
The example.lit service then sends a dialback verification request to the authoritative server for the type3.lit domain.
Example 144. Verification Request
<db:verify
from='example.lit'
id='idt3_t3o'
to='type3.lit'>
some-long-dialback-key
</db:verify>
Here we assume that the authoritative server for the type3.lit domain notifies the example.lit service that the key is valid.
<db:verify
from='type3.lit'
id='idt3_t1o'
to='example.lit'
type='valid'>
some-long-dialback-key
</db:verify>
The example.lit service then returns a positive server dialback result to the originating server (i.e., type3.lit).
Example 146. Server Dialback Result
<db:result
from='example.lit'
to='type3.lit'
type='valid'>
some-long-dialback-key
</db:result>
Because the connection is successful, the type3.lit service routes the XML stanza from romeo@type3.lit to the example.lit service.
In this scenario, an XMPP user romeo@type3.lit attempts to send an XML stanza to hamlet@type4.lit:
<iq from='romeo@type3.lit/foo'
id='t3_t4'
to='hamlet@type4.lit'
type='get'>
<ping xmlns='urn:xmpp:ping'/>
</iq>
Therefore the type3.lit service (which accepts verified connections and has a CA-issued certificate) attempts to initiate a server-to-server connection with the type4.lit service (which also supports verified connections and has a CA-issued certificate).
First, the type3.lit service sends an initial stream header to type4.lit.
Example 148. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type3.lit'
to='type4.lit'
version='1.0'>
Next the type4.lit service sends a response stream header to type3.lit.
Example 149. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type4.lit'
id='idt3_t4o'
to='type3.lit'>
Because the type4.lit service supports XMPP 1.0, it also sends stream features.
<stream:features>
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'>
<required/>
</starttls>
<dialback xmlns='urn:xmpp:features:dialback'/>
</stream:features>
Because type4.lit requires encryption, type3.lit attempts to negotiate a STARTTLS upgrade to the stream.
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
Example 152. STARTTLS Response
<proceed xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
The servers then negotiate TLS. We assume the negotiation is successful.
The type3.lit service then opens a new stream over the encrypted connection.
Example 153. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type3.lit'
to='type4.lit'
version='1.0'>
Next the type4.lit service sends a response stream header to type3.lit.
Example 154. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type4.lit'
id='idt3_t4o2'
to='type3.lit'>
Because the type4.lit service supports XMPP 1.0, it also sends stream features.
<stream:features>
<dialback xmlns='urn:xmpp:features:dialback'>
<required/>
</dialback>
</stream:features>
Notice that type4.lit requires dialback here (perhaps because of some local service policy). Therefore type3.lit sends a dialback key to type4.lit.
<db:result
from='type3.lit'
to='type4.lit'>
some-long-dialback-key
</db:result>
The type4.lit service then performs a DNS lookup on the type3.lit domain, opens a TCP connection at the discovered IP address and port, and establishes a stream with the authoritative server for the type3.lit service.
Example 157. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type4.lit'
to='type3.lit'>
The authoritative server for the type3.lit service then returns a response stream header.
Example 158. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type3.lit'
id='idt3_t4r'
to='type4.lit'
version='1.0'>
The type4.lit service then sends a dialback verification request to the authoritative server for the type3.lit domain.
Example 159. Verification Request
<db:verify
from='type4.lit'
id='idt3_t4o'
to='type3.lit'>
some-long-dialback-key
</db:verify>
Here we assume that the authoritative server for the type3.lit domain notifies the type4.lit service that the key is valid.
<db:verify
from='type3.lit'
id='idt3_t4o'
to='type4.lit'
type='valid'>
some-long-dialback-key
</db:verify>
The type4.lit service then returns a positive server dialback result to the originating server (i.e., type3.lit).
Example 161. Server Dialback Result
<db:result
from='type4.lit'
to='type3.lit'
type='valid'>
some-long-dialback-key
</db:result>
Because the connection is successful, the type3.lit service routes the XML stanza from romeo@type3.lit to the type4.lit service.
In this scenario, an XMPP user romeo@type3.lit attempts to send an XML stanza to bill@type5.lit:
<iq from='romeo@type3.lit/foo'
id='t3_t5'
to='bill@type5.lit'
type='get'>
<ping xmlns='urn:xmpp:ping'/>
</iq>
Therefore the type3.lit service (which accepts verified connections and has a CA-issued certificate) attempts to initiate a server-to-server connection with the type5.lit service (which also supports encrypted connections and has a CA-issued certificate).
First, the type3.lit service sends an initial stream header to type5.lit.
Example 163. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type3.lit'
to='type5.lit'
version='1.0'>
Next the type5.lit service sends a response stream header to type3.lit.
Example 164. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type5.lit'
id='idt3_t5o'
to='type3.lit'>
Because the type5.lit service supports XMPP 1.0, it also sends stream features.
<stream:features>
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'>
<required/>
</starttls>
<dialback xmlns='urn:xmpp:features:dialback'/>
</stream:features>
Because type5.lit requires encryption, type3.lit attempts to negotiate a STARTTLS upgrade to the stream.
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
Example 167. STARTTLS Response
<proceed xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
The servers then negotiate TLS. We assume the negotiation is successful.
The type3.lit service then opens a new stream over the encrypted connection.
Example 168. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type3.lit'
to='type5.lit'
version='1.0'>
Next the type5.lit service sends a response stream header to type3.lit.
Example 169. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type5.lit'
id='idt3_t5o2'
to='type3.lit'>
Because the type5.lit service supports XMPP 1.0, it also sends stream features.
<stream:features>
<mechanisms xmlns='urn:ietf:params:xml:ns:xmpp-sasl'>
<mechanism>EXTERNAL</mechanism>
<required/>
</mechanisms>
</stream:features>
Notice that type5.lit requires use of SASL EXTERNAL here (because the certificate presented by type3.lit was issued by a common root CA). Therefore type3.lit attempts to complete SASL negotiation.
Example 171. SASL Mechanism Selection
<auth xmlns='urn:ietf:params:xml:ns:xmpp-sasl'
mechanism='EXTERNAL'/>dHlwZTMubGl0</auth>
The type5.lit service determines that the authorization identity provided by type3.lit matches the information in the presented certificate and therefore returns success.
<success xmlns='urn:ietf:params:xml:ns:xmpp-sasl'/>
The type3.lit service then opens a new stream over the encrypted connection.
Example 173. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type3.lit'
to='type5.lit'
version='1.0'>
Next the type5.lit service sends a response stream header to type3.lit.
Example 174. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type5.lit'
id='idt3_t5o3'
to='type3.lit'>
Because the type5.lit service supports XMPP 1.0, it also sends stream features (which in this case are empty).
<stream:features/>
Because the connection is successful, the type3.lit service routes the XML stanza from romeo@type3.lit to the type5.lit service.
In this scenario, an XMPP user romeo@type3.lit attempts to send an XML stanza to chris@type6.lit:
<iq from='romeo@type3.lit/foo'
id='t3_t6'
to='chris@type6.lit'
type='get'>
<ping xmlns='urn:xmpp:ping'/>
</iq>
Therefore the type3.lit service (which accepts verified connections and has a CA-issued certificate) attempts to initiate a server-to-server connection with the type6.lit service (which requires trusted communications and has a CA-issued certificate).
First, the type3.lit service sends an initial stream header to type6.lit.
Example 177. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type3.lit'
to='type6.lit'
version='1.0'>
Next the type6.lit service sends a response stream header to type3.lit.
Example 178. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type6.lit'
id='idt3_t6o'
to='type3.lit'>
Because the type6.lit service supports XMPP 1.0, it also sends stream features.
<stream:features>
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'>
<required/>
</starttls>
<dialback xmlns='urn:xmpp:features:dialback'/>
</stream:features>
Because type6.lit requires encryption, type3.lit attempts to negotiate a STARTTLS upgrade to the stream.
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
Example 181. STARTTLS Response
<proceed xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
The servers then negotiate TLS. We assume the negotiation is successful.
The type3.lit service then opens a new stream over the encrypted connection.
Example 182. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type3.lit'
to='type6.lit'
version='1.0'>
Next the type6.lit service sends a response stream header to type3.lit.
Example 183. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type6.lit'
id='idt3_t6o2'
to='type3.lit'>
Because the type6.lit service supports XMPP 1.0, it also sends stream features.
<stream:features>
<mechanisms xmlns='urn:ietf:params:xml:ns:xmpp-sasl'>
<mechanism>EXTERNAL</mechanism>
<required/>
</mechanisms>
</stream:features>
Notice that type6.lit requires use of SASL EXTERNAL here (because the certificate presented by type3.lit was issued by a common root CA). Therefore type3.lit attempts to complete SASL negotiation.
Example 185. SASL Mechanism Selection
<auth xmlns='urn:ietf:params:xml:ns:xmpp-sasl'
mechanism='EXTERNAL'/>dHlwZTMubGl0</auth>
The type6.lit service determines that the authorization identity provided by type3.lit matches the information in the presented certificate and therefore returns success.
<success xmlns='urn:ietf:params:xml:ns:xmpp-sasl'/>
The type3.lit service then opens a new stream over the encrypted connection.
Example 187. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type3.lit'
to='type6.lit'
version='1.0'>
Next the type6.lit service sends a response stream header to type3.lit.
Example 188. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type6.lit'
id='idt3_t6o3'
to='type3.lit'>
Because the type6.lit service supports XMPP 1.0, it also sends stream features (which in this case are empty).
<stream:features/>
Because the connection is successful, the type3.lit service routes the XML stanza from romeo@type3.lit to the type6.lit service.
In this scenario, an XMPP user hamlet@type4.lit attempts to send an XML stanza to citizen@type1.lit:
<iq from='hamlet@type4.lit/foo'
id='t4_t1'
to='citizen@type1.lit'
type='get'>
<ping xmlns='urn:xmpp:ping'/>
</iq>
Therefore the type4.lit service (which requires encrypted connections and has a self-signed certificate) attempts to initiate a server-to-server connection with the type1.lit service (which supports verified connections only and does not have a certificate).
First, the type4.lit service sends an initial stream header to type1.lit.
Example 191. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type4.lit'
to='type1.lit'
version='1.0'>
Next the type1.lit service sends a response stream header to type4.lit.
Example 192. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type1.lit'
id='idt4_t1o'
to='type4.lit'>
Because the type1.lit service does not support XMPP 1.0, it does not send stream features. Because the type4.lit service requires encryption via TLS, it cannot proceed further with the stream negotiation and closes the stream.
</stream:stream>
The type1.lit service closes the stream as well.
</stream:stream>
Because the connection is unsuccessful, the type4.lit service returns a stanza error to hamlet@type4.lit, which should be <remote-server-timeout/>.
<iq from='citizen@type1.lit'
id='t4_t1'
to='hamlet@type4.lit/foo'
type='error'>
<error type='cancel'>
<remote-server-timeout
xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/>
</error>
</iq>
In this scenario, an XMPP user hamlet@type4.lit attempts to send an XML stanza to juliet@type2.lit:
<iq from='hamlet@type4.lit/foo'
id='t4_t2'
to='juliet@type2.lit'
type='get'>
<ping xmlns='urn:xmpp:ping'/>
</iq>
Therefore the type4.lit service (which requires encrypted connections and has a self-signed certificate) attempts to initiate a server-to-server connection with the type2.lit service (which supports verified connections and has a self-signed certificate).
First, the type4.lit service sends an initial stream header to type2.lit.
Example 197. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type4.lit'
to='type2.lit'
version='1.0'>
Next the type2.lit service sends a response stream header to type4.lit.
Example 198. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type2.lit'
id='idt4_t2o'
to='type4.lit'>
Because the type2.lit service supports XMPP 1.0, it also sends stream features.
<stream:features>
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
<dialback xmlns='urn:xmpp:features:dialback'/>
</stream:features>
Because the type4.lit service requires encryption, it attempts STARTTLS negotiation.
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
Example 201. STARTTLS Response
<proceed xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
The servers then negotiate TLS. We assume the negotiation is successful.
The type4.lit service then opens a new stream over the encrypted connection.
Example 202. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type4.lit'
to='type2.lit'
version='1.0'>
Next the type2.lit service sends a response stream header to type4.lit.
Example 203. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type2.lit'
id='idt4_t2o2'
to='type4.lit'>
Because the type4.lit service supports XMPP 1.0, it also sends stream features.
<stream:features>
<dialback xmlns='urn:xmpp:features:dialback'>
<required/>
</dialback>
</stream:features>
Notice that type2.lit requires dialback here (perhaps because of some local service policy). Therefore type4.lit sends a dialback key to type2.lit.
<db:result
from='type4.lit'
to='type2.lit'>
some-long-dialback-key
</db:result>
The type2.lit service then performs a DNS lookup on the type4.lit domain, opens a TCP connection at the discovered IP address and port, and establishes a stream with the authoritative server for the type4.lit service.
Example 206. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type2.lit'
to='type4.lit'>
The authoritative server for the type4.lit service then returns a response stream header.
Example 207. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type4.lit'
id='idt4_t2r'
to='type2.lit'
version='1.0'>
The type2.lit service then sends a dialback verification request to the authoritative server for the type4.lit domain.
Example 208. Verification Request
<db:verify
from='type2.lit'
id='idt4_t2o'
to='type4.lit'>
some-long-dialback-key
</db:verify>
Here we assume that the authoritative server for the type4.lit domain notifies the type2.lit service that the key is valid.
<db:verify
from='type4.lit'
id='idt4_t2o'
to='type2.lit'
type='valid'>
some-long-dialback-key
</db:verify>
The type2.lit service then returns a positive server dialback result to the originating server (i.e., type4.lit).
Example 210. Server Dialback Result
<db:result
from='type2.lit'
to='type4.lit'
type='valid'>
some-long-dialback-key
</db:result>
Because the connection is successful, the type4.lit service routes the XML stanza from hamlet@type4.lit to the type2.lit service.
In this scenario, an XMPP user hamlet@type4.lit attempts to send an XML stanza to romeo@type3.lit:
<iq from='hamlet@type4.lit/foo'
id='t4_t3'
to='romeo@type3.lit'
type='get'>
<ping xmlns='urn:xmpp:ping'/>
</iq>
Therefore the type4.lit service (which requires encrypted connections and has a self-signed certificate) attempts to initiate a server-to-server connection with the type3.lit service (which supports verified connections and has a CA-issued certificate).
First, the type4.lit service sends an initial stream header to type3.lit.
Example 212. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type4.lit'
to='type3.lit'
version='1.0'>
Next the type3.lit service sends a response stream header to type4.lit.
Example 213. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type3.lit'
id='idt4_t3o'
to='type4.lit'>
Because the type3.lit service supports XMPP 1.0, it also sends stream features.
<stream:features>
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
<dialback xmlns='urn:xmpp:features:dialback'/>
</stream:features>
Because the type4.lit service requires encryption, it attempts STARTTLS negotiation.
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
Example 216. STARTTLS Response
<proceed xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
The servers then negotiate TLS. We assume the negotiation is successful.
The type4.lit service then opens a new stream over the encrypted connection.
Example 217. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type4.lit'
to='type3.lit'
version='1.0'>
Next the type3.lit service sends a response stream header to type4.lit.
Example 218. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type3.lit'
id='idt4_t3o2'
to='type4.lit'>
Because the type4.lit service supports XMPP 1.0, it also sends stream features.
<stream:features>
<dialback xmlns='urn:xmpp:features:dialback'>
<required/>
</dialback>
</stream:features>
Notice that type3.lit requires dialback here (perhaps because of some local service policy). Therefore type4.lit sends a dialback key to type3.lit.
<db:result
from='type4.lit'
to='type3.lit'>
some-long-dialback-key
</db:result>
The type3.lit service then performs a DNS lookup on the type4.lit domain, opens a TCP connection at the discovered IP address and port, and establishes a stream with the authoritative server for the type4.lit service.
Example 221. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type3.lit'
to='type4.lit'>
The authoritative server for the type4.lit service then returns a response stream header.
Example 222. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type4.lit'
id='idt4_t3r'
to='type3.lit'
version='1.0'>
The type3.lit service then sends a dialback verification request to the authoritative server for the type4.lit domain.
Example 223. Verification Request
<db:verify
from='type3.lit'
id='idt4_t3o'
to='type4.lit'>
some-long-dialback-key
</db:verify>
Here we assume that the authoritative server for the type4.lit domain notifies the type3.lit service that the key is valid.
<db:verify
from='type4.lit'
id='idt4_t3o'
to='type3.lit'
type='valid'>
some-long-dialback-key
</db:verify>
The type3.lit service then returns a positive server dialback result to the originating server (i.e., type4.lit).
Example 225. Server Dialback Result
<db:result
from='type3.lit'
to='type4.lit'
type='valid'>
some-long-dialback-key
</db:result>
Because the connection is successful, the type4.lit service routes the XML stanza from hamlet@type4.lit to the type3.lit service.
In this scenario, an XMPP user hamlet@type4.lit attempts to send an XML stanza to user@example.lit:
<iq from='hamlet@type4.lit/foo'
id='t4_t4'
to='user@example.lit'
type='get'>
<ping xmlns='urn:xmpp:ping'/>
</iq>
Therefore the type4.lit service (which requires encrypted connections and has a self-signed certificate) attempts to initiate a server-to-server connection with the example.lit service (which also requires encrypted connections and has a self-signed certificate).
First, the type4.lit service sends an initial stream header to example.lit.
Example 227. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type4.lit'
to='example.lit'
version='1.0'>
Next the example.lit service sends a response stream header to type4.lit.
Example 228. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='example.lit'
id='idt4_t4o'
to='type4.lit'>
Because the example.lit service supports XMPP 1.0, it also sends stream features.
<stream:features>
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
<dialback xmlns='urn:xmpp:features:dialback'/>
</stream:features>
Because the type4.lit service requires encryption, it attempts STARTTLS negotiation.
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
Example 231. STARTTLS Response
<proceed xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
The servers then negotiate TLS. We assume the negotiation is successful.
The type4.lit service then opens a new stream over the encrypted connection.
Example 232. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type4.lit'
to='example.lit'
version='1.0'>
Next the example.lit service sends a response stream header to type4.lit.
Example 233. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='example.lit'
id='idt4_t4o2'
to='type4.lit'>
Because the type4.lit service supports XMPP 1.0, it also sends stream features.
<stream:features>
<dialback xmlns='urn:xmpp:features:dialback'>
<required/>
</dialback>
</stream:features>
Notice that example.lit requires dialback here (perhaps because of some local service policy). Therefore type4.lit sends a dialback key to example.lit.
<db:result
from='type4.lit'
to='example.lit'>
some-long-dialback-key
</db:result>
The example.lit service then performs a DNS lookup on the type4.lit domain, opens a TCP connection at the discovered IP address and port, and establishes a stream with the authoritative server for the type4.lit service.
Example 236. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='example.lit'
to='type4.lit'>
The authoritative server for the type4.lit service then returns a response stream header.
Example 237. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type4.lit'
id='idt4_t4r'
to='example.lit'
version='1.0'>
The example.lit service then sends a dialback verification request to the authoritative server for the type4.lit domain.
Example 238. Verification Request
<db:verify
from='example.lit'
id='idt4_t4o'
to='type4.lit'>
some-long-dialback-key
</db:verify>
Here we assume that the authoritative server for the type4.lit domain notifies the example.lit service that the key is valid.
<db:verify
from='type4.lit'
id='idt4_t4o'
to='example.lit'
type='valid'>
some-long-dialback-key
</db:verify>
The example.lit service then returns a positive server dialback result to the originating server (i.e., type4.lit).
Example 240. Server Dialback Result
<db:result
from='example.lit'
to='type4.lit'
type='valid'>
some-long-dialback-key
</db:result>
Because the connection is successful, the type4.lit service routes the XML stanza from hamlet@type4.lit to the example.lit service.
In this scenario, an XMPP user hamlet@type4.lit attempts to send an XML stanza to bill@type5.lit:
<iq from='hamlet@type4.lit/foo'
id='t4_t5'
to='user@type4.lit'
type='get'>
<ping xmlns='urn:xmpp:ping'/>
</iq>
Therefore the type4.lit service (which requires encrypted connections and has a self-signed certificate) attempts to initiate a server-to-server connection with the type3.lit service (which also requires encrypted connections and has a CA-issued certificate).
First, the type4.lit service sends an initial stream header to type5.lit.
Example 242. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type4.lit'
to='type5.lit'
version='1.0'>
Next the type5.lit service sends a response stream header to type4.lit.
Example 243. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type5.lit'
id='idt4_t5o'
to='type4.lit'>
Because the type5.lit service supports XMPP 1.0, it also sends stream features.
<stream:features>
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
<dialback xmlns='urn:xmpp:features:dialback'/>
</stream:features>
Because the type4.lit service requires encryption, it attempts STARTTLS negotiation.
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
Example 246. STARTTLS Response
<proceed xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
The servers then negotiate TLS. We assume the negotiation is successful.
The type4.lit service then opens a new stream over the encrypted connection.
Example 247. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type4.lit'
to='type5.lit'
version='1.0'>
Next the type5.lit service sends a response stream header to type4.lit.
Example 248. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type5.lit'
id='idt4_t5o2'
to='type4.lit'>
Because the type4.lit service supports XMPP 1.0, it also sends stream features.
<stream:features>
<dialback xmlns='urn:xmpp:features:dialback'>
<required/>
</dialback>
</stream:features>
Notice that type5.lit requires dialback here (perhaps because of some local service policy). Therefore type4.lit sends a dialback key to type5.lit.
<db:result
from='type4.lit'
to='type5.lit'>
some-long-dialback-key
</db:result>
The type5.lit service then performs a DNS lookup on the type4.lit domain, opens a TCP connection at the discovered IP address and port, and establishes a stream with the authoritative server for the type4.lit service.
Example 251. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type5.lit'
to='type4.lit'>
The authoritative server for the type4.lit service then returns a response stream header.
Example 252. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type4.lit'
id='idt4_t5r'
to='type5.lit'
version='1.0'>
The type5.lit service then sends a dialback verification request to the authoritative server for the type4.lit domain.
Example 253. Verification Request
<db:verify
from='type5.lit'
id='idt4_t5o'
to='type4.lit'>
some-long-dialback-key
</db:verify>
Here we assume that the authoritative server for the type4.lit domain notifies the type5.lit service that the key is valid.
<db:verify
from='type4.lit'
id='idt4_t5o'
to='type5.lit'
type='valid'>
some-long-dialback-key
</db:verify>
The type5.lit service then returns a positive server dialback result to the originating server (i.e., type4.lit).
Example 255. Server Dialback Result
<db:result
from='type5.lit'
to='type4.lit'
type='valid'>
some-long-dialback-key
</db:result>
Because the connection is successful, the type4.lit service routes the XML stanza from hamlet@type4.lit to the type5.lit service.
In this scenario, an XMPP user hamlet@type4.lit attempts to send an XML stanza to chris@type6.lit.
<iq from='hamlet@type4.lit/foo'
id='t4_t6'
to='chris@type6.lit'
type='get'>
<ping xmlns='urn:xmpp:ping'/>
</iq>
Therefore the type4.lit service (which requires encrypted connections and has a self-signed certificate) attempts to initiate a server-to-server connection with the type6.lit service (which accepts only trusted connections, has a CA-issued certificate, and does not support Server Dialback).
First, the type4.lit service sends an initial stream header to type6.lit.
Example 257. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type4.lit'
to='type6.lit'>
Next the type6.lit service sends a response stream header to type4.lit. Notice that the response stream header does not include the dialback namespace, since the type6.lit service does not support Server Dialback.
Example 258. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type6.lit'
id='idt4_t6o'
to='type4.lit'
version='1.0'>
The type6.lit service also sends stream features. Because the type6.lit service does not accept untrusted connections, it returns stream features with a notation that STARTTLS is required.
<stream:features>
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'>
<required/>
</starttls>
</stream:features>
Because type6.lit requires encryption, type4.lit attempts to negotiate a STARTTLS upgrade to the stream.
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
Example 261. STARTTLS Response
<proceed xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
The servers then attempt negotiate TLS. We assume the negotiation fails because type4.lit presents a self-signed certificate but type6.lit requires trusted federation relying on a common root CA.
Because the connection is unsuccessful, the type4.lit service returns a stanza error to hamlet@type4.lit, which should be <remote-server-timeout/>.
<iq from='chris@type6.lit'
id='t4_t6'
to='hamlet@type4.lit/foo'
type='error'>
<error type='cancel'>
<remote-server-timeout
xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/>
</error>
</iq>
In this scenario, an XMPP user bill@type5.lit attempts to send an XML stanza to citizen@type1.lit:
<iq from='bill@type5.lit/foo'
id='t5_t1'
to='citizen@type1.lit'
type='get'>
<ping xmlns='urn:xmpp:ping'/>
</iq>
Therefore the type5.lit service (which requires encrypted connections and has a CA-issued certificate) attempts to initiate a server-to-server connection with the type1.lit service (which supports verified connections only and does not have a certificate).
First, the type5.lit service sends an initial stream header to type1.lit.
Example 264. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type5.lit'
to='type1.lit'
version='1.0'>
Next the type1.lit service sends a response stream header to type5.lit.
Example 265. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type1.lit'
id='idt5_t1o'
to='type5.lit'>
Because the type1.lit service does not support XMPP 1.0, it does not send stream features. Because the type5.lit service requires encryption via TLS, it cannot proceed further with the stream negotiation and closes the stream.
</stream:stream>
The type1.lit service closes the stream as well.
</stream:stream>
Because the connection is unsuccessful, the type5.lit service returns a stanza error to hamlet@type5.lit, which should be <remote-server-timeout/>.
<iq from='citizen@type1.lit'
id='t5_t1'
to='bill@type5.lit/foo'
type='error'>
<error type='cancel'>
<remote-server-timeout
xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/>
</error>
</iq>
In this scenario, an XMPP user bill@type5.lit attempts to send an XML stanza to juliet@type2.lit:
<iq from='bill@type5.lit/foo'
id='t5_t2'
to='juliet@type2.lit'
type='get'>
<ping xmlns='urn:xmpp:ping'/>
</iq>
Therefore the type5.lit service (which requires encrypted connections and has a CA-issued certificate) attempts to initiate a server-to-server connection with the type2.lit service (which supports verified connections and has a self-signed certificate).
First, the type5.lit service sends an initial stream header to type2.lit.
Example 270. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type5.lit'
to='type2.lit'
version='1.0'>
Next the type2.lit service sends a response stream header to type5.lit.
Example 271. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type2.lit'
id='idt5_t2o'
to='type5.lit'>
Because the type2.lit service supports XMPP 1.0, it also sends stream features.
<stream:features>
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
<dialback xmlns='urn:xmpp:features:dialback'/>
</stream:features>
Because the type5.lit service requires encryption, it attempts STARTTLS negotiation.
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
Example 274. STARTTLS Response
<proceed xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
The servers then negotiate TLS. We assume the negotiation is successful.
The type5.lit service then opens a new stream over the encrypted connection.
Example 275. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type5.lit'
to='type2.lit'
version='1.0'>
Next the type2.lit service sends a response stream header to type5.lit.
Example 276. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type2.lit'
id='idt5_t2o2'
to='type5.lit'>
Because the type5.lit service supports XMPP 1.0, it also sends stream features.
<stream:features>
<dialback xmlns='urn:xmpp:features:dialback'>
<required/>
</dialback>
</stream:features>
Notice that type2.lit requires dialback here (perhaps because of some local service policy). Therefore type5.lit sends a dialback key to type2.lit.
<db:result
from='type5.lit'
to='type2.lit'>
some-long-dialback-key
</db:result>
The type2.lit service then performs a DNS lookup on the type5.lit domain, opens a TCP connection at the discovered IP address and port, and establishes a stream with the authoritative server for the type5.lit service.
Example 279. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type2.lit'
to='type5.lit'>
The authoritative server for the type5.lit service then returns a response stream header.
Example 280. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type5.lit'
id='idt5_t2r'
to='type2.lit'
version='1.0'>
The type2.lit service then sends a dialback verification request to the authoritative server for the type5.lit domain.
Example 281. Verification Request
<db:verify
from='type2.lit'
id='idt5_t2o'
to='type5.lit'>
some-long-dialback-key
</db:verify>
Here we assume that the authoritative server for the type5.lit domain notifies the type2.lit service that the key is valid.
<db:verify
from='type5.lit'
id='idt5_t2o'
to='type2.lit'
type='valid'>
some-long-dialback-key
</db:verify>
The type2.lit service then returns a positive server dialback result to the originating server (i.e., type5.lit).
Example 283. Server Dialback Result
<db:result
from='type2.lit'
to='type5.lit'
type='valid'>
some-long-dialback-key
</db:result>
Because the connection is successful, the type5.lit service routes the XML stanza from hamlet@type4.lit to the type2.lit service.
In this scenario, an XMPP user bill@type5.lit attempts to send an XML stanza to romeo@type3.lit:
<iq from='bill@type5.lit/foo'
id='t5_t3'
to='romeo@type3.lit'
type='get'>
<ping xmlns='urn:xmpp:ping'/>
</iq>
Therefore the type5.lit service (which requires encrypted connections and has a CA-issued certificate) attempts to initiate a server-to-server connection with the type3.lit service (which accepts verified connections and has a CA-issued certificate).
First, the type5.lit service sends an initial stream header to type3.lit.
Example 285. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type5.lit'
to='type3.lit'
version='1.0'>
Next the type3.lit service sends a response stream header to type5.lit.
Example 286. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type3.lit'
id='idt5_t3o'
to='type5.lit'>
Because the type3.lit service supports XMPP 1.0, it also sends stream features.
<stream:features>
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
<dialback xmlns='urn:xmpp:features:dialback'/>
</stream:features>
Because type3.lit advertises encryption and type5.lit requires encryption, type5.lit attempts to negotiate a STARTTLS upgrade to the stream.
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
Example 289. STARTTLS Response
<proceed xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
The servers then negotiate TLS. We assume the negotiation is successful.
The type5.lit service then opens a new stream over the encrypted connection.
Example 290. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type5.lit'
to='type3.lit'
version='1.0'>
Next the type3.lit service sends a response stream header to type5.lit.
Example 291. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type3.lit'
id='idt5_t3o2'
to='type5.lit'>
Because the type3.lit service supports XMPP 1.0, it also sends stream features.
<stream:features>
<mechanisms xmlns='urn:ietf:params:xml:ns:xmpp-sasl'>
<mechanism>EXTERNAL</mechanism>
<required/>
</mechanisms>
</stream:features>
Notice that type3.lit requires use of SASL EXTERNAL here (because the certificate presented by type5.lit was issued by a common root CA). Therefore type5.lit attempts to complete SASL negotiation.
Example 293. SASL Mechanism Selection
<auth xmlns='urn:ietf:params:xml:ns:xmpp-sasl'
mechanism='EXTERNAL'/>dHlwZTMubGl0</auth>
The type3.lit service determines that the authorization identity provided by type5.lit matches the information in the presented certificate and therefore returns success.
<success xmlns='urn:ietf:params:xml:ns:xmpp-sasl'/>
The type5.lit service then opens a new stream over the encrypted connection.
Example 295. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type5.lit'
to='type3.lit'
version='1.0'>
Next the type3.lit service sends a response stream header to type5.lit.
Example 296. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type3.lit'
id='idt5_t3o3'
to='type5.lit'>
Because the type3.lit service supports XMPP 1.0, it also sends stream features (which in this case are empty).
<stream:features/>
Because the connection is successful, the type5.lit service routes the XML stanza from bill@type5.lit to the type3.lit service.
In this scenario, an XMPP user bill@type5.lit attempts to send an XML stanza to hamlet@type4.lit:
<iq from='bill@type4.lit/foo'
id='t5_t4'
to='hamlet@type4.lit'
type='get'>
<ping xmlns='urn:xmpp:ping'/>
</iq>
Therefore the type5.lit service (which requires encrypted connections and has a self-signed certificate) attempts to initiate a server-to-server connection with the type4.lit service (which also requires encrypted connections and has a self-signed certificate).
First, the type5.lit service sends an initial stream header to type4.lit.
Example 299. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type5.lit'
to='type4.lit'
version='1.0'>
Next the type4.lit service sends a response stream header to type5.lit.
Example 300. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type4.lit'
id='idt5_t4o'
to='type5.lit'>
Because the type4.lit service supports XMPP 1.0, it also sends stream features.
<stream:features>
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
<dialback xmlns='urn:xmpp:features:dialback'/>
</stream:features>
Because the type5.lit service requires encryption, it attempts STARTTLS negotiation.
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
Example 303. STARTTLS Response
<proceed xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
The servers then negotiate TLS. We assume the negotiation is successful.
The type5.lit service then opens a new stream over the encrypted connection.
Example 304. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type5.lit'
to='type4.lit'
version='1.0'>
Next the type4.lit service sends a response stream header to type5.lit.
Example 305. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type4.lit'
id='idt5_t4o2'
to='type5.lit'>
Because the type5.lit service supports XMPP 1.0, it also sends stream features.
<stream:features>
<dialback xmlns='urn:xmpp:features:dialback'>
<required/>
</dialback>
</stream:features>
Notice that type4.lit requires dialback here (perhaps because of some local service policy). Therefore type5.lit sends a dialback key to type4.lit.
<db:result
from='type5.lit'
to='type4.lit'>
some-long-dialback-key
</db:result>
The type4.lit service then performs a DNS lookup on the type5.lit domain, opens a TCP connection at the discovered IP address and port, and establishes a stream with the authoritative server for the type5.lit service.
Example 308. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type4.lit'
to='type5.lit'>
The authoritative server for the type5.lit service then returns a response stream header.
Example 309. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type5.lit'
id='idt5_t4r'
to='type4.lit'
version='1.0'>
The type4.lit service then sends a dialback verification request to the authoritative server for the type5.lit domain.
Example 310. Verification Request
<db:verify
from='type4.lit'
id='idt5_t4o'
to='type5.lit'>
some-long-dialback-key
</db:verify>
Here we assume that the authoritative server for the type5.lit domain notifies the type4.lit service that the key is valid.
<db:verify
from='type5.lit'
id='idt5_t4o'
to='type4.lit'
type='valid'>
some-long-dialback-key
</db:verify>
The type4.lit service then returns a positive server dialback result to the originating server (i.e., type5.lit).
Example 312. Server Dialback Result
<db:result
from='type4.lit'
to='type5.lit'
type='valid'>
some-long-dialback-key
</db:result>
Because the connection is successful, the type5.lit service routes the XML stanza from hamlet@type4.lit to the type4.lit service.
In this scenario, an XMPP user bill@type5.lit attempts to send an XML stanza to user@example.lit:
<iq from='bill@type5.lit/foo'
id='t5_t5'
to='user@example.lit'
type='get'>
<ping xmlns='urn:xmpp:ping'/>
</iq>
Therefore the type5.lit service (which requires encrypted connections and has a CA-issued certificate) attempts to initiate a server-to-server connection with the example.lit service (which also requires encrypted connections and has a CA-issued certificate).
First, the type5.lit service sends an initial stream header to example.lit.
Example 314. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type5.lit'
to='example.lit'
version='1.0'>
Next the example.lit service sends a response stream header to type5.lit.
Example 315. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='example.lit'
id='idt5_t5o'
to='type5.lit'>
Because the example.lit service supports XMPP 1.0, it also sends stream features.
<stream:features>
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'>
<required/>
</starttls>
<dialback xmlns='urn:xmpp:features:dialback'/>
</stream:features>
Because both example.lit requires encryption and type5.lit also requires encryption, type5.lit attempts to negotiate a STARTTLS upgrade to the stream.
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
Example 318. STARTTLS Response
<proceed xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
The servers then negotiate TLS. We assume the negotiation is successful.
The type5.lit service then opens a new stream over the encrypted connection.
Example 319. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type5.lit'
to='example.lit'
version='1.0'>
Next the example.lit service sends a response stream header to type5.lit.
Example 320. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='example.lit'
id='idt5_t5o2'
to='type5.lit'>
Because the example.lit service supports XMPP 1.0, it also sends stream features.
<stream:features>
<mechanisms xmlns='urn:ietf:params:xml:ns:xmpp-sasl'>
<mechanism>EXTERNAL</mechanism>
<required/>
</mechanisms>
</stream:features>
Notice that example.lit requires use of SASL EXTERNAL here (because the certificate presented by type5.lit was issued by a common root CA). Therefore type5.lit attempts to complete SASL negotiation.
Example 322. SASL Mechanism Selection
<auth xmlns='urn:ietf:params:xml:ns:xmpp-sasl'
mechanism='EXTERNAL'/>dHlwZTMubGl0</auth>
The example.lit service determines that the authorization identity provided by type5.lit matches the information in the presented certificate and therefore returns success.
<success xmlns='urn:ietf:params:xml:ns:xmpp-sasl'/>
The type5.lit service then opens a new stream over the encrypted connection.
Example 324. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type5.lit'
to='example.lit'
version='1.0'>
Next the example.lit service sends a response stream header to type5.lit.
Example 325. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='example.lit'
id='idt5_t5o3'
to='type5.lit'>
Because the example.lit service supports XMPP 1.0, it also sends stream features (which in this case are empty).
<stream:features/>
Because the connection is successful, the type5.lit service routes the XML stanza from bill@type5.lit to the example.lit service.
In this scenario, an XMPP user bill@type5.lit attempts to send an XML stanza to chris@type6.lit:
<iq from='bill@type5.lit/foo'
id='t5_t6'
to='chris@type6.lit'
type='get'>
<ping xmlns='urn:xmpp:ping'/>
</iq>
Therefore the type5.lit service (which requires encrypted connections and has a CA-issued certificate) attempts to initiate a server-to-server connection with the type6.lit service (which requires trusted communications and has a CA-issued certificate).
First, the type5.lit service sends an initial stream header to type6.lit.
Example 328. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type5.lit'
to='type6.lit'
version='1.0'>
Next the type6.lit service sends a response stream header to type5.lit.
Example 329. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type6.lit'
id='idt5_t6o'
to='type5.lit'>
Because the type6.lit service supports XMPP 1.0, it also sends stream features.
<stream:features>
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'>
<required/>
</starttls>
<dialback xmlns='urn:xmpp:features:dialback'/>
</stream:features>
Because type6.lit requires encryption, type5.lit attempts to negotiate a STARTTLS upgrade to the stream.
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
Example 332. STARTTLS Response
<proceed xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
The servers then negotiate TLS. We assume the negotiation is successful.
The type5.lit service then opens a new stream over the encrypted connection.
Example 333. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type5.lit'
to='type6.lit'
version='1.0'>
Next the type6.lit service sends a response stream header to type5.lit.
Example 334. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type6.lit'
id='idt5_t6o2'
to='type5.lit'>
Because the type6.lit service supports XMPP 1.0, it also sends stream features.
<stream:features>
<mechanisms xmlns='urn:ietf:params:xml:ns:xmpp-sasl'>
<mechanism>EXTERNAL</mechanism>
<required/>
</mechanisms>
</stream:features>
Notice that type6.lit requires use of SASL EXTERNAL here (because the certificate presented by type5.lit was issued by a common root CA). Therefore type5.lit attempts to complete SASL negotiation.
Example 336. SASL Mechanism Selection
<auth xmlns='urn:ietf:params:xml:ns:xmpp-sasl'
mechanism='EXTERNAL'/>dHlwZTMubGl0</auth>
The type6.lit service determines that the authorization identity provided by type5.lit matches the information in the presented certificate and therefore returns success.
<success xmlns='urn:ietf:params:xml:ns:xmpp-sasl'/>
The type5.lit service then opens a new stream over the encrypted connection.
Example 338. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type5.lit'
to='type6.lit'
version='1.0'>
Next the type6.lit service sends a response stream header to type5.lit.
Example 339. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type6.lit'
id='idt5_t6o3'
to='type5.lit'>
Because the type6.lit service supports XMPP 1.0, it also sends stream features (which in this case are empty).
<stream:features/>
Because the connection is successful, the type5.lit service routes the XML stanza from bill@type5.lit to the type6.lit service.
In this scenario, an XMPP user chris@type6.lit attempts to send an XML stanza to citizen@type1.lit:
<iq from='chris@type6.lit/foo'
id='t6_t1'
to='citizen@type1.lit'
type='get'>
<ping xmlns='urn:xmpp:ping'/>
</iq>
Therefore the type6.lit service (which requires trusted connections and has a CA-issued certificate) attempts to initiate a server-to-server connection with the type1.lit service (which supports verified connections only and does not have a certificate).
First, the type6.lit service sends an initial stream header to type1.lit.
Example 342. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type6.lit'
to='type1.lit'
version='1.0'>
Next the type1.lit service sends a response stream header to type6.lit.
Example 343. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type1.lit'
id='idt6_t1o'
to='type6.lit'>
Because the type1.lit service does not support XMPP 1.0, it does not send stream features. Because the type6.lit service requires encryption via TLS, it cannot proceed further with the stream negotiation and closes the stream.
</stream:stream>
The type1.lit service closes the stream as well.
</stream:stream>
Because the connection is unsuccessful, the type6.lit service returns a stanza error to chris@type6.lit, which should be <remote-server-timeout/>.
<iq from='citizen@type1.lit'
id='t6_t1'
to='bill@type5.lit/foo'
type='error'>
<error type='cancel'>
<remote-server-timeout
xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/>
</error>
</iq>
In this scenario, an XMPP user chris@type6.lit attempts to send an XML stanza to juliet@type2.lit:
<iq from='chris@type6.lit/foo'
id='t6_t2'
to='juliet@type2.lit'
type='get'>
<ping xmlns='urn:xmpp:ping'/>
</iq>
Therefore the type6.lit service (which requires encrypted connections and has a CA-issued certificate) attempts to initiate a server-to-server connection with the type2.lit service (which supports verified connections and has a self-signed certificate).
First, the type6.lit service sends an initial stream header to type2.lit.
Example 348. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type6.lit'
to='type2.lit'
version='1.0'>
Next the type2.lit service sends a response stream header to type6.lit.
Example 349. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type2.lit'
id='idt6_t2o'
to='type6.lit'>
Because the type2.lit service supports XMPP 1.0, it also sends stream features.
<stream:features>
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
<dialback xmlns='urn:xmpp:features:dialback'/>
</stream:features>
Because the type6.lit service requires encryption, it attempts STARTTLS negotiation.
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
Example 352. STARTTLS Response
<proceed xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
The servers then attempt negotiate TLS. We assume the negotiation fails because type2.lit presents a self-signed certificate but type6.lit requires trusted federation relying on a common root CA.
Because the connection is unsuccessful, the type6.lit service returns a stanza error to chris@type6.lit, which should be <remote-server-timeout/>.
<iq from='juliet@type2.lit'
id='t4_t6'
to='chris@type6.lit/foo'
type='error'>
<error type='cancel'>
<remote-server-timeout
xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/>
</error>
</iq>
In this scenario, an XMPP user chris@type6.lit attempts to send an XML stanza to romeo@type3.lit:
<iq from='chris@type6.lit/foo'
id='t6_t3'
to='romeo@type3.lit'
type='get'>
<ping xmlns='urn:xmpp:ping'/>
</iq>
Therefore the type6.lit service (which requires trusted connections and has a CA-issued certificate) attempts to initiate a server-to-server connection with the type3.lit service (which accepts verified connections and has a CA-issued certificate).
First, the type6.lit service sends an initial stream header to type3.lit.
Example 355. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type6.lit'
to='type3.lit'
version='1.0'>
Next the type3.lit service sends a response stream header to type6.lit.
Example 356. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type3.lit'
id='idt6_t3o'
to='type6.lit'>
Because the type3.lit service supports XMPP 1.0, it also sends stream features.
<stream:features>
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
<dialback xmlns='urn:xmpp:features:dialback'/>
</stream:features>
Because type3.lit advertises encryption and type6.lit requires encryption, type6.lit attempts to negotiate a STARTTLS upgrade to the stream.
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
Example 359. STARTTLS Response
<proceed xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
The servers then negotiate TLS. We assume the negotiation is successful.
The type6.lit service then opens a new stream over the encrypted connection.
Example 360. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type6.lit'
to='type3.lit'
version='1.0'>
Next the type3.lit service sends a response stream header to type6.lit.
Example 361. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type3.lit'
id='idt6_t3o2'
to='type6.lit'>
Because the type3.lit service supports XMPP 1.0, it also sends stream features.
<stream:features>
<mechanisms xmlns='urn:ietf:params:xml:ns:xmpp-sasl'>
<mechanism>EXTERNAL</mechanism>
<required/>
</mechanisms>
</stream:features>
Notice that type3.lit requires use of SASL EXTERNAL here (because the certificate presented by type6.lit was issued by a common root CA). Therefore type6.lit attempts to complete SASL negotiation.
Example 363. SASL Mechanism Selection
<auth xmlns='urn:ietf:params:xml:ns:xmpp-sasl'
mechanism='EXTERNAL'/>dHlwZTMubGl0</auth>
The type3.lit service determines that the authorization identity provided by type6.lit matches the information in the presented certificate and therefore returns success.
<success xmlns='urn:ietf:params:xml:ns:xmpp-sasl'/>
The type6.lit service then opens a new stream over the encrypted connection.
Example 365. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type6.lit'
to='type3.lit'
version='1.0'>
Next the type3.lit service sends a response stream header to type6.lit.
Example 366. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type3.lit'
id='idt6_t3o3'
to='type6.lit'>
Because the type3.lit service supports XMPP 1.0, it also sends stream features (which in this case are empty).
<stream:features/>
Because the connection is successful, the type6.lit service routes the XML stanza from chris@type6.lit to the type3.lit service.
In this scenario, an XMPP user chris@type6.lit attempts to send an XML stanza to hamlet@type4.lit:
<iq from='chris@type6.lit/foo'
id='t6_t4'
to='hamlet@type4.lit'
type='get'>
<ping xmlns='urn:xmpp:ping'/>
</iq>
Therefore the type6.lit service (which requires encrypted connections and has a CA-issued certificate) attempts to initiate a server-to-server connection with the type4.lit service (which supports verified connections and has a self-signed certificate).
First, the type6.lit service sends an initial stream header to type4.lit.
Example 369. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type6.lit'
to='type4.lit'
version='1.0'>
Next the type4.lit service sends a response stream header to type6.lit.
Example 370. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type4.lit'
id='idt6_t4o'
to='type6.lit'>
Because the type4.lit service supports XMPP 1.0, it also sends stream features.
<stream:features>
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
<dialback xmlns='urn:xmpp:features:dialback'/>
</stream:features>
Because the type6.lit service requires encryption, it attempts STARTTLS negotiation.
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
Example 373. STARTTLS Response
<proceed xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
The servers then attempt negotiate TLS. We assume the negotiation fails because type4.lit presents a self-signed certificate but type6.lit requires trusted federation relying on a common root CA.
Because the connection is unsuccessful, the type6.lit service returns a stanza error to chris@type6.lit, which should be <remote-server-timeout/>.
<iq from='juliet@type4.lit'
id='t6_t4'
to='chris@type6.lit/foo'
type='error'>
<error type='cancel'>
<remote-server-timeout
xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/>
</error>
</iq>
In this scenario, an XMPP user chris@type6.lit attempts to send an XML stanza to bill@type5.lit:
<iq from='chris@type6.lit/foo'
id='t6_t5'
to='bill@type5.lit'
type='get'>
<ping xmlns='urn:xmpp:ping'/>
</iq>
Therefore the type6.lit service (which requires trusted connections and has a CA-issued certificate) attempts to initiate a server-to-server connection with the type5.lit service (which requires encrypted connections and has a CA-issued certificate).
First, the type6.lit service sends an initial stream header to type5.lit.
Example 376. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type6.lit'
to='type5.lit'
version='1.0'>
Next the type5.lit service sends a response stream header to type6.lit.
Example 377. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type5.lit'
id='idt6_t5o'
to='type6.lit'>
Because the type5.lit service supports XMPP 1.0, it also sends stream features.
<stream:features>
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
<dialback xmlns='urn:xmpp:features:dialback'/>
</stream:features>
Because type5.lit advertises encryption and type6.lit requires encryption, type6.lit attempts to negotiate a STARTTLS upgrade to the stream.
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
Example 380. STARTTLS Response
<proceed xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
The servers then negotiate TLS. We assume the negotiation is successful.
The type6.lit service then opens a new stream over the encrypted connection.
Example 381. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type6.lit'
to='type5.lit'
version='1.0'>
Next the type5.lit service sends a response stream header to type6.lit.
Example 382. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type5.lit'
id='idt6_t5o2'
to='type6.lit'>
Because the type5.lit service supports XMPP 1.0, it also sends stream features.
<stream:features>
<mechanisms xmlns='urn:ietf:params:xml:ns:xmpp-sasl'>
<mechanism>EXTERNAL</mechanism>
<required/>
</mechanisms>
</stream:features>
Notice that type5.lit requires use of SASL EXTERNAL here (because the certificate presented by type6.lit was issued by a common root CA). Therefore type6.lit attempts to complete SASL negotiation.
Example 384. SASL Mechanism Selection
<auth xmlns='urn:ietf:params:xml:ns:xmpp-sasl'
mechanism='EXTERNAL'/>dHlwZTMubGl0</auth>
The type5.lit service determines that the authorization identity provided by type6.lit matches the information in the presented certificate and therefore returns success.
<success xmlns='urn:ietf:params:xml:ns:xmpp-sasl'/>
The type6.lit service then opens a new stream over the encrypted connection.
Example 386. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type6.lit'
to='type5.lit'
version='1.0'>
Next the type5.lit service sends a response stream header to type6.lit.
Example 387. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type5.lit'
id='idt6_t5o3'
to='type6.lit'>
Because the type5.lit service supports XMPP 1.0, it also sends stream features (which in this case are empty).
<stream:features/>
Because the connection is successful, the type6.lit service routes the XML stanza from chris@type6.lit to the type5.lit service.
In this scenario, an XMPP user chris@type6.lit attempts to send an XML stanza to user@example.lit:
<iq from='chris@type6.lit/foo'
id='t6_t6'
to='user@example.lit'
type='get'>
<ping xmlns='urn:xmpp:ping'/>
</iq>
Therefore the type6.lit service (which requires trusted connections and has a CA-issued certificate) attempts to initiate a server-to-server connection with the example.lit service (which requires encrypted connections and has a CA-issued certificate).
First, the type6.lit service sends an initial stream header to example.lit.
Example 390. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type6.lit'
to='example.lit'
version='1.0'>
Next the example.lit service sends a response stream header to type6.lit.
Example 391. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='example.lit'
id='idt6_t6o'
to='type6.lit'>
Because the example.lit service supports XMPP 1.0, it also sends stream features.
<stream:features>
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'>
<required/>
</starttls>
<dialback xmlns='urn:xmpp:features:dialback'/>
</stream:features>
Because example.lit advertises encryption and type6.lit requires encryption, type6.lit attempts to negotiate a STARTTLS upgrade to the stream.
<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
Example 394. STARTTLS Response
<proceed xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
The servers then negotiate TLS. We assume the negotiation is successful.
The type6.lit service then opens a new stream over the encrypted connection.
Example 395. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type6.lit'
to='example.lit'
version='1.0'>
Next the example.lit service sends a response stream header to type6.lit.
Example 396. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='example.lit'
id='idt6_t6o2'
to='type6.lit'>
Because the example.lit service supports XMPP 1.0, it also sends stream features.
<stream:features>
<mechanisms xmlns='urn:ietf:params:xml:ns:xmpp-sasl'>
<mechanism>EXTERNAL</mechanism>
<required/>
</mechanisms>
</stream:features>
Notice that example.lit requires use of SASL EXTERNAL here (because the certificate presented by type6.lit was issued by a common root CA). Therefore type6.lit attempts to complete SASL negotiation.
Example 398. SASL Mechanism Selection
<auth xmlns='urn:ietf:params:xml:ns:xmpp-sasl'
mechanism='EXTERNAL'/>dHlwZTMubGl0</auth>
The example.lit service determines that the authorization identity provided by type6.lit matches the information in the presented certificate and therefore returns success.
<success xmlns='urn:ietf:params:xml:ns:xmpp-sasl'/>
The type6.lit service then opens a new stream over the encrypted connection.
Example 400. Initial Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='type6.lit'
to='example.lit'
version='1.0'>
Next the example.lit service sends a response stream header to type6.lit.
Example 401. Response Stream Header
<stream:stream
xmlns='jabber:server'
xmlns:db='jabber:server:dialback'
xmlns:stream='http://etherx.jabber.lit/streams'
from='example.lit'
id='idt6_t6o3'
to='type6.lit'>
Because the example.lit service supports XMPP 1.0, it also sends stream features (which in this case are empty).
<stream:features/>
Because the connection is successful, the type6.lit service routes the XML stanza from chris@type6.lit to the example.lit service.
As explained in RFC 3920 and XEP-0220, Server Dialback does not provide authentication.
In the absence of out-of-band key exchange, acceptance of a self-signed certificate does not result in authentication of a peer and therefore should be followed by Server Dialback to weakly verify peer identity.
Acceptance of a certificate issued by a trusted root CA results in some level of authentication and therefore should be followed by SASL negotiation using the EXTERNAL mechanism.
This document requires no interaction with the Internet Assigned Numbers Authority (IANA) [6].
This document requires no interaction with the XMPP Registrar [7].
Thanks to Philipp Hancke, Norman Rasmussen, and Tomasz Sterna for their feedback.
Series: XEP
Number: 0238
Publisher: XMPP Standards Foundation
Status:
Deferred
Type:
Informational
Version: 0.1
Last Updated: 2008-03-31
Approving Body: XMPP Council
Dependencies: XMPP Core, XEP-0220
Supersedes: None
Superseded By: None
Short Name: N/A
Source Control:
HTML
RSS
This document in other formats:
XML
PDF
Email:
stpeter@jabber.org
JabberID:
stpeter@jabber.org
URI:
https://stpeter.im/
The Extensible Messaging and Presence Protocol (XMPP) is defined in the XMPP Core (RFC 3920) and XMPP IM (RFC 3921) specifications contributed by the XMPP Standards Foundation to the Internet Standards Process, which is managed by the Internet Engineering Task Force in accordance with RFC 2026. Any protocol defined in this document has been developed outside the Internet Standards Process and is to be understood as an extension to XMPP rather than as an evolution, development, or modification of XMPP itself.
The primary venue for discussion of XMPP Extension Protocols is the <standards@xmpp.org> discussion list.
Discussion on other xmpp.org discussion lists might also be appropriate; see <http://xmpp.org/about/discuss.shtml> for a complete list.
Errata can be sent to <editor@xmpp.org>.
The following requirements keywords as used in this document are to be interpreted as described in RFC 2119: "MUST", "SHALL", "REQUIRED"; "MUST NOT", "SHALL NOT"; "SHOULD", "RECOMMENDED"; "SHOULD NOT", "NOT RECOMMENDED"; "MAY", "OPTIONAL".
1. RFC 3920: Extensible Messaging and Presence Protocol (XMPP): Core <http://tools.ietf.org/html/rfc3920>.
2. XEP-0220: Server Dialback <http://xmpp.org/extensions/xep-0220.html>.
3. RFC 3920: Extensible Messaging and Presence Protocol (XMPP): Core <http://tools.ietf.org/html/rfc3920>.
4. "XMPP 0.9" is the core XML streaming protocol used in the Jabber community before the formalization of XMPP 1.0 by the IETF in RFC 3920, including STARTTLS and SASL.
5. "XMPP 1.0" is defined in RFC 3920 and includes STARTTLS and SASL negotiation.
6. The Internet Assigned Numbers Authority (IANA) is the central coordinator for the assignment of unique parameter values for Internet protocols, such as port numbers and URI schemes. For further information, see <http://www.iana.org/>.
7. The XMPP Registrar maintains a list of reserved protocol namespaces as well as registries of parameters used in the context of XMPP extension protocols approved by the XMPP Standards Foundation. For further information, see <http://xmpp.org/registrar/>.
Note: Older versions of this specification might be available at http://xmpp.org/extensions/attic/
Initial published version.
(psa)First draft.
(psa)END