root / dotorg / v8 / html / beps / bep_0007.rst

Revision 10528, 4.0 kB (checked in by dave, 11 months ago)

Change revision number to automatically updated $Revision$ in all .rst files.
Change last-modified date to automatically updated $Date$ in all .rst files.
Add "Local Variables" to the end of all .rst files.
Fix BEP numbers.
Make header formatting in all .rst files conform to PEP-style rst formatting requirements.

Remove some HTML markup from the bep_0003.rst, the BitTorrent? protocol standard.

Line 
1BEP: 7
2Title: IPv6 Tracker Extension
3Version: $Revision$
4Last-Modified: $Date$
5Author:  Greg Hazel <greg@bittorrent.com>, Arvid Norberg <arvid@bittorrent.com>
6Status:  Draft
7Type:    Standards Track
8Created: 31-Jan-2008
9Post-History:
10
11IPv6 tracker extension
12======================
13
14This extension extends the tracker response to better support IPv6 peers as
15well as defines a way for multi homed machines to announce multiple addresses
16at the same time.  This proposal addresses the use case where peers
17are either on an IPv4 network running Teredo_ or peers are on
18an IPv6 network with an IPv4 tunnel interface.
19
20.. _Teredo: https://www.microsoft.com/technet/network/ipv6/teredo.mspx
21
22The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD",
23"SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to
24be interpreted as described in IETF `RFC 2119`_.
25
26.. _`RFC 2119`: http://tools.ietf.org/html/rfc2119
27
28announce parameter
29------------------
30
31The client MAY add an ``&ipv6=`` parameter to the HTTP GET request it sends
32to the tracker. The value is either an IPv6 endpoint (address and port) or
33just an IPv6 address. In the case where only an address is supplied, the IPv6
34port is assumed to be the same as specified by the ``&port=`` parameter.
35
36The tracker SHOULD perform a NAT check on the IPv6 endpoint.
37
38In case the client contacts the tracker on an IPv6 interface, it may add
39an ``&ipv4=`` parameter with its IPv4 address or endpoint. The value MUST
40be either an IPv4 endpoint (address and port) or just an IPv4 address. If only
41an address is supplied, the port is assumed to be the same as the ``&port=``
42parameter.
43
44The endpoints are encoded as strings as defined by `RFC 2732`_.
45
46.. _`RFC 2732`: http://tools.ietf.org/html/rfc2732
47
48If both an ``&ipv4=`` and an ``&ipv6=`` parameter are specified, the tracker
49MAY ignore the address family that is the same as the source address of the
50request. i.e. If the client connects to the tracker with an IPv4 source
51address, the tracker MAY ignore any ``&ipv4=`` address and if the client
52connects to the tracker with an IPv6 source address, the tracker MAY ignore
53any ``&ipv6=`` parameter.
54
55announce response
56-----------------
57
58In case the tracker does not support the ``compact`` response, no change is
59necessary. Since the original ``peers`` response returns peer endpoints in
60their expanded string form, IPv6 addresses can be passed back this way.
61
62In case a compact response is requested, the tracker MAY add another key
63to the response; ``peers6``. This key has the same layout as ``peers`` in
64compact mode, but instead of using 6 bytes per endpoint, 18 bytes are used.
65peers6 contains address-port pairs where the addresses are all IPv6.
66
67examples
68--------
69
70Example announce string with ``2001::53aa:64c:0:7f83:bc43:dec9`` as IPv6
71address::
72
73        GET /announce?peer_id=aaaaaaaaaaaaaaaaaaaa&info_hash=aaaaaaaaaaaaaaaaaaaa
74        &port=6881&left=0&downloaded=100&uploaded=0&compact=1
75        &ipv6=2001%3A%3A53Aa%3A64c%3A0%3A7f83%3Abc43%3Adec9
76
77Example announce string with ``[2001::53aa:64c:0:7f83:bc43:dec9]:6882`` as IPv6 endpoint::
78
79        GET /announce?peer_id=aaaaaaaaaaaaaaaaaaaa&info_hash=aaaaaaaaaaaaaaaaaaaa
80        &port=6881&left=0&downloaded=100&uploaded=0&compact=1
81        &ipv6=%5B2001%3A%3A53Aa%3A64c%3A0%3A7f83%3Abc43%3Adec9%5D%3A6882
82
83Example announce string with ``2001::53aa:64c:0:7f83:bc43:dec9`` as IPv6
84address and ``261.52.89.12`` as IPv4 address::
85
86        GET /announce?peer_id=aaaaaaaaaaaaaaaaaaaa&info_hash=aaaaaaaaaaaaaaaaaaaa
87        &port=6881&left=0&downloaded=100&uploaded=0&compact=1
88        &ipv6=2001%3A%3A53Aa%3A64c%3A0%3A7f83%3Abc43%3Adec9&ipv4=261.52.89.12
89
90Example response::
91
92        d8:intervali1800e5:peers6:iiiipp6:peers618:iiiiiiiiiiiiiiiippe
93
94rationale
95---------
96
97The naming of ``peers6`` is chosen not to collide with the current ``peers``
98response and to be backwards compatible. It is also a simple addition to the
99current response, using the same encoding.
100
101
102
103
104..
105   Local Variables:
106   mode: indented-text
107   indent-tabs-mode: nil
108   sentence-end-double-space: t
109   fill-column: 70
110   coding: utf-8
111   End:
Note: See TracBrowser for help on using the browser.