TOC |
|
This Internet-Draft is submitted to IETF in full conformance with the provisions of BCP 78 and BCP 79.
Internet-Drafts are working documents of the Internet Engineering Task Force (IETF), its areas, and its working groups. Note that other groups may also distribute working documents as Internet-Drafts.
Internet-Drafts are draft documents valid for a maximum of six months and may be updated, replaced, or obsoleted by other documents at any time. It is inappropriate to use Internet-Drafts as reference material or to cite them other than as “work in progress.”
The list of current Internet-Drafts can be accessed at http://www.ietf.org/ietf/1id-abstracts.txt.
The list of Internet-Draft Shadow Directories can be accessed at http://www.ietf.org/shadow.html.
This Internet-Draft will expire on November 14, 2009.
Copyright (c) 2009 IETF Trust and the persons identified as the document authors. All rights reserved.
This document is subject to BCP 78 and the IETF Trust's Legal Provisions Relating to IETF Documents in effect on the date of publication of this document (http://trustee.ietf.org/license-info). Please review these documents carefully, as they describe your rights and restrictions with respect to this document.
This document defines two URI schemes and the resolution mechanism to generate a list of server transport addresses that can be tried to create a Traversal Using Relays around NAT (TURN) allocation.
1.
Introduction
2.
Terminology
3.
Syntax of a TURN or TURNS URI
4.
TURN or TURNS URI Resolution
5.
Example
6.
Security Considerations
7.
IANA Considerations
7.1.
TURN URI Registration
7.2.
TURNS URI Registration
7.3.
RELAY Application Service Tag Registration
7.4.
turn.udp Application Protocol Tag Registration
7.5.
turn.tcp Application Protocol Tag Registration
7.6.
turn.tls Application Protocol Tag Registration
8.
Running Code Considerations
9.
Acknowledgements
10.
References
10.1.
Normative References
10.2.
Informative References
Appendix A.
Release notes
A.1.
Modifications between -02 and -01
A.2.
Modifications between -01 and -00
A.3.
Design Notes
A.4.
TODO List
§
Author's Address
TOC |
The TURN specification (Rosenberg, J., Mahy, R., and P. Matthews, “Traversal Using Relays around NAT (TURN): Relay Extensions to Session Traversal Utilities for NAT (STUN),” April 2009.) [I‑D.ietf‑behave‑turn] defines a process for a TURN client to find TURN servers by using DNS SRV resource records, but this process does not let the TURN server administrators provision the preferred TURN transport protocol between the client and the server and for the TURN client to discover this preference. This document defines a S-NAPTR application (Daigle, L. and A. Newton, “Domain-Based Application Service Location Using SRV RRs and the Dynamic Delegation Discovery Service (DDDS),” January 2005.) [RFC3958] for this purpose. This application defines "RELAY" as application service tag and "turn.udp", "turn.tcp", and "turn.tls" as application protocol tags.
To simplify the provisioning of TURN clients, this document also defines a TURN and a TURNS URI scheme and a resolution mechanism to convert these URIs into a list of IP addresses, ports and TURN transport protocols.
Another usage of the resolution mechanism described in this document would be Remote Hosting as described in [RFC3958] (Daigle, L. and A. Newton, “Domain-Based Application Service Location Using SRV RRs and the Dynamic Delegation Discovery Service (DDDS),” January 2005.) section 4.4. For example a VoIP provider who does not want to deploy TURN servers could use the servers deployed by another company but could still want to provide configuration parameters to its customers without explicitly showing this relationship. The mechanism permits one to implement this indirection, without preventing the company hosting the TURN servers from managing them as it see fit.
TOC |
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in [RFC2119] (Bradner, S., “Key words for use in RFCs to Indicate Requirement Levels,” March 1997.).
TOC |
A TURN/TURNS URI has the following ABNF syntax [RFC5234] (Crocker, D. and P. Overell, “Augmented BNF for Syntax Specifications: ABNF,” January 2008.):
turnURI = scheme ":" host [ ":" port ] [ "?transport=" transport ] scheme = "turn" / "turns" transport = "udp" / "tcp" / transport-ext transport-ext = 1*unreserved
<host>, <port> and <unreserved> are specified in [RFC3986] (Berners-Lee, T., Fielding, R., and L. Masinter, “Uniform Resource Identifier (URI): Generic Syntax,” January 2005.).
TOC |
The URI resolution mechanism is used only to create an allocation. All other transactions use the IP address, transport and port used for a successful allocation creation.
The URI resolution algorithm uses <scheme>, <host>, <port> and <transport> as input. It also uses a list ordered by preference of TURN transports (UDP, TCP, TLS) supported by the application using the TURN client. The output of the algorithm is a list of {IP address, transport, port} tuples that a TURN client can try in order to create an allocation on a TURN server.
An Allocate error response as specified in section 6.4 of [I‑D.ietf‑behave‑turn] (Rosenberg, J., Mahy, R., and P. Matthews, “Traversal Using Relays around NAT (TURN): Relay Extensions to Session Traversal Utilities for NAT (STUN),” April 2009.) is processed as a failure as specified by [RFC3958] (Daigle, L. and A. Newton, “Domain-Based Application Service Location Using SRV RRs and the Dynamic Delegation Discovery Service (DDDS),” January 2005.) section 2.2.4. The resolution stops when a TURN client gets a successful Allocate response from a TURN server. After an allocation succeeds or all the allocations fail the resolution context MUST be discarded and the URI resolution algorithm MUST be restarted from the beginning for any subsequent allocation. Servers blacklisted as described in section 6.4 of [I‑D.ietf‑behave‑turn] (Rosenberg, J., Mahy, R., and P. Matthews, “Traversal Using Relays around NAT (TURN): Relay Extensions to Session Traversal Utilities for NAT (STUN),” April 2009.) should not be used for the specified duration even if returned by a subsequent resolution.
In some steps <transport> and <scheme> have to be converted to a TURN transport. If <scheme> is defined as "turn" and <transport> is defined as "udp" then the TURN UDP transport is used. If <scheme> is defined as "turn" and <transport> is defined as "tcp" then the TURN TCP transport is used. If <scheme> is defined as "turns" and <transport> is defined as "tcp" then the TURN TLS transport is used.
First the resolution algorithm checks that the URI can be resolved with the list of TURN transports supported:
Then the algorithm applies the following steps:
TOC |
With the DNS RRs in Figure 1 and a preferred protocol list of {TLS, TCP, UDP}, the resolution algorithm will convert the "turn:example.com" URI to the list of IP addresses, port and protocol tuples in Table 1.
example.com. IN NAPTR 100 10 "" "RELAY:turn.udp" "" datagram.example.com. IN NAPTR 200 10 "" "RELAY:turn.tcp:turn.tls" "" stream.example.com. datagram.example.com. IN NAPTR 100 10 "S" "RELAY:turn.udp" "" _udp._turn.example.com. stream.example.com. IN NAPTR 100 10 "S" "RELAY:turn.tcp" "" _turn._tcp.example.com. IN NAPTR 200 10 "A" "RELAY:turn.tls" "" a.example.com. _turn._udp.example.com. IN SRV 0 0 3478 a.example.com. _turn._tcp.example.com. IN SRV 0 0 5000 a.example.com. a.example.com. IN A 192.0.2.1
Figure 1 |
Order | Protocol | IP address | Port |
---|---|---|---|
1 | UDP | 192.0.2.1 | 3478 |
2 | TLS | 192.0.2.1 | 5349 |
3 | TCP | 192.0.2.1 | 5000 |
Table 1 |
TOC |
Security considerations for TURN are discussed in [I‑D.ietf‑behave‑turn] (Rosenberg, J., Mahy, R., and P. Matthews, “Traversal Using Relays around NAT (TURN): Relay Extensions to Session Traversal Utilities for NAT (STUN),” April 2009.).
The Application Service Tag and Application Protocol Tags defined in this document do not introduce any specific security issues beyond the security considerations discussed in [RFC3958] (Daigle, L. and A. Newton, “Domain-Based Application Service Location Using SRV RRs and the Dynamic Delegation Discovery Service (DDDS),” January 2005.).
The "turn" and "turns" URI schemes do not introduce any specific security issues beyond the security considerations discussed in [RFC3986] (Berners-Lee, T., Fielding, R., and L. Masinter, “Uniform Resource Identifier (URI): Generic Syntax,” January 2005.).
TOC |
This section contains the registration information for the "turn" and "turns" URI Schemes (in accordance with [RFC4395] (Hansen, T., Hardie, T., and L. Masinter, “Guidelines and Registration Procedures for New URI Schemes,” February 2006.)), one S-NAPTR Application Service Tag, and three S-NAPTR Application Protocol Tags (in accordance with [RFC3958] (Daigle, L. and A. Newton, “Domain-Based Application Service Location Using SRV RRs and the Dynamic Delegation Discovery Service (DDDS),” January 2005.)).
TOC |
URI scheme name: turn
Status: permanent
URI scheme syntax: See Section 3 (Syntax of a TURN or TURNS URI).
URI scheme semantics: See Section 4 (TURN or TURNS URI Resolution).
Encoding considerations: There are no encoding considerations beyond those in [RFC3986] (Berners-Lee, T., Fielding, R., and L. Masinter, “Uniform Resource Identifier (URI): Generic Syntax,” January 2005.).
Applications/protocols that use this URI scheme name:
The "turn" URI scheme is intended to be used by applications that might need access to a TURN server.
Interoperability considerations: N/A
Security considerations: See Section 6 (Security Considerations).
Contact: Marc Petit-Huguenin <petithug@acm.org>
Author/Change controller: The IESG
References: This document.
TOC |
URI scheme name: turns
Status: permanent
URI scheme syntax: See Section 3 (Syntax of a TURN or TURNS URI).
URI scheme semantics: See Section 4 (TURN or TURNS URI Resolution).
Encoding considerations: There are no encoding considerations beyond those in [RFC3986] (Berners-Lee, T., Fielding, R., and L. Masinter, “Uniform Resource Identifier (URI): Generic Syntax,” January 2005.).
Applications/protocols that use this URI scheme name:
The "turns" URI scheme is intended to be used by applications that might need access to a TURN server.
Interoperability considerations: N/A
Security considerations: See Section 6 (Security Considerations).
Contact: Marc Petit-Huguenin <petithug@acm.org>
Author/Change controller: The IESG
References: This document.
TOC |
Application Protocol Tag: RELAY
Intended usage: See Section 4 (TURN or TURNS URI Resolution).
Interoperability considerations: N/A
Security considerations: See Section 6 (Security Considerations).
Relevant publications: This document.
Contact information: Marc Petit-Huguenin <petithug@acm.org>
Author/Change controller: The IESG
TOC |
Application Protocol Tag: turn.udp
Intended usage: See Section 4 (TURN or TURNS URI Resolution).
Interoperability considerations: N/A
Security considerations: See Section 6 (Security Considerations).
Relevant publications: This document.
Contact information: Marc Petit-Huguenin <petithug@acm.org>
Author/Change controller: The IESG
TOC |
Application Protocol Tag: turn.tcp
Intended usage: See Section 4 (TURN or TURNS URI Resolution).
Interoperability considerations:
Security considerations: See Section 6 (Security Considerations).
Relevant publications: This document.
Contact information: Marc Petit-Huguenin <petithug@acm.org>
Author/Change controller: The IESG
TOC |
Application Protocol Tag: turn.tls
Intended usage: See Section 4 (TURN or TURNS URI Resolution).
Interoperability considerations: N/A
Security considerations: See Section 6 (Security Considerations).
Relevant publications: This document.
Contact information: Marc Petit-Huguenin <petithug@acm.org>
Author/Change controller: The IESG
TOC |
TOC |
Thanks to Alfred E. Heggestad, Eilon Yardeni, Dan Wing, Alfred Hoenes and Jim Kleck for their comments, suggestions and questions that helped to improve this document.
This document was written with the xml2rfc tool described in [RFC2629] (Rose, M., “Writing I-Ds and RFCs using XML,” June 1999.).
TOC |
TOC |
[RFC2119] | Bradner, S., “Key words for use in RFCs to Indicate Requirement Levels,” BCP 14, RFC 2119, March 1997 (TXT, HTML, XML). |
[RFC2782] | Gulbrandsen, A., Vixie, P., and L. Esibov, “A DNS RR for specifying the location of services (DNS SRV),” RFC 2782, February 2000 (TXT). |
[RFC3958] | Daigle, L. and A. Newton, “Domain-Based Application Service Location Using SRV RRs and the Dynamic Delegation Discovery Service (DDDS),” RFC 3958, January 2005 (TXT). |
[RFC3986] | Berners-Lee, T., Fielding, R., and L. Masinter, “Uniform Resource Identifier (URI): Generic Syntax,” STD 66, RFC 3986, January 2005 (TXT, HTML, XML). |
[RFC5234] | Crocker, D. and P. Overell, “Augmented BNF for Syntax Specifications: ABNF,” STD 68, RFC 5234, January 2008 (TXT). |
[I-D.ietf-behave-turn] | Rosenberg, J., Mahy, R., and P. Matthews, “Traversal Using Relays around NAT (TURN): Relay Extensions to Session Traversal Utilities for NAT (STUN),” draft-ietf-behave-turn-14 (work in progress), April 2009 (TXT). |
TOC |
[RFC2629] | Rose, M., “Writing I-Ds and RFCs using XML,” RFC 2629, June 1999 (TXT, HTML, XML). |
[RFC4395] | Hansen, T., Hardie, T., and L. Masinter, “Guidelines and Registration Procedures for New URI Schemes,” BCP 35, RFC 4395, February 2006 (TXT). |
TOC |
This section must be removed before publication as an RFC.
TOC |
TOC |
TOC |
TOC |
(Empty)
TOC |
Marc Petit-Huguenin | |
(Unaffiliated) | |
Email: | petithug@acm.org |