I know about NAT traversal and about STUN, TURN and ICE and its use. I want to know whether these are implemented in peer to peer file sharing application like bittorrent. Whether trackers facilitate peers behind NATs to communicate with each other by helping in creating direct connection using STUN or relay through TURN. In the case of Distributed Hash Table(DHT) how one peer would communicate with other peer behind NAT ?
1 Answers
BitTorrent does not need to connect to any particular member in a swarm, it's not a p2p chat protocol where two specific end points want to talk to each other. All it cares about is that the connection graph of the swarm has a sufficiently high connectivity degree.
In other words, getting clients behind a NATs to talk to each other is somewhat desirable, but not to the point where major resources, such as traffic forwarding, would be expended on that goal. On the individual node level failure is an option. Thus it does not use sip/turn/etc.
Of course on the aggregate swarm level performance will still degrade with an increasing fraction of non-reachable nodes. If nobody can accept incoming connections then BitTorrent doesn't work.
Various clients use some combination of the following approaches to improve connectivity for the bulk transport connections:
- PCP, NAT-PMP or UPnP-IGD negotiation with the gateway to forward a port as long as the application is running.
- For TCP one can use source port binding (outgoing connections) and port reuse (listen + outgoing) socket options to use the same local port for all connections to exploit end-point independent (EIM) NAT mappings (also known as full cone NAT).
- Similarly for UDP one should use a single socket in combination with sendto/recvfrom or equivalent APIs to multiplex all application-level connections over a single port instead of creating one socket per peer.
- the
largely undocumentedut_holepunch extension
that uses mutually reachable swarm members in place of stun servers. - an optional UDP-based transport protocol (µTP) that can be used in combination with the previous points. generally nat traversal is easier to achieve with udp
- IPv6 capability signalling, which in principle allows clients to upgrade their connections and then gossip about v6 peers via PEX/DHT.
- prompting the user to perform manual port forwarding
In the case of the DHT only the first two points (gateway negotiation and port reuse) are used. The overhead of attempting nat traversal for a single request-reply cycle would be >100% and is not worth it.

- 40,999
- 5
- 70
- 122
-
do you know if libtorrent is in anyway compatible with TURN/STUN/ICE servers? – Gubatron Sep 21 '18 at 02:33
-
1@Gubatron question is unclear. Do you mean whether libtorrent can act as a stun server or whether it can act as a client to utilize such servers for nat traversal? – the8472 Sep 21 '18 at 14:22
-
@the8472 Probably the latter. – tejasvi88 Jan 14 '22 at 06:19