BitTorrent DHT Public Bootstrap Node Providers
The BitTorrent Mainline Distributed Hash Table (DHT) network relies on bootstrap nodes—often referred to as DHT routers—to help new or disconnected clients discover peers and populate their local routing tables. While the DHT itself is completely decentralized once a client is connected, the initial joining process requires entry points hosted by specific organizations, open-source projects, and client developers. This article details the primary entities that maintain the major public bootstrap nodes used across the BitTorrent ecosystem.
Rainberry, Inc. (Formerly BitTorrent, Inc.)
Rainberry, Inc., the creator of the original BitTorrent protocol and current parent entity behind the official BitTorrent and µTorrent clients (now operating under the TRON ecosystem), hosts the most heavily utilized public bootstrap routers:
- router.bittorrent.com (Port 6881)
- router.utorrent.com (Port 6881)
Because the official BitTorrent and µTorrent applications constitute a substantial portion of legacy and active desktop installations, these two addresses process the largest volume of bootstrap traffic on the network.
The Transmission Project
The Transmission Project, which develops the popular open-source, multi-platform BitTorrent client Transmission, operates its own dedicated bootstrap infrastructure:
- dht.transmissionbt.com (Port 6881)
This node serves as the default entry point for Transmission users and is frequently added as a secondary or fallback router by other third-party clients and custom DHT implementations.
Comet Networks (BitComet)
Comet Networks, the organization behind the long-running BitComet client, maintains public routing nodes to support its user base and the broader Mainline DHT network:
- router.bitcomet.com (Port 6881)
Libtorrent / Open-Source Communities
The libtorrent (rasterbar) library, developed by Arvid
Norberg and utilized by major clients like qBittorrent and Deluge,
hardcodes several of the aforementioned major nodes (primarily
router.bittorrent.com, dht.transmissionbt.com,
and router.utorrent.com) as standard bootstrap points.
Rather than maintaining separate corporate infrastructure, many modern
open-source clients distribute traffic across the established nodes
provided by Rainberry and Transmission.
How Bootstrap Nodes Function
Bootstrap nodes do not participate in storing or sharing torrent
files. Instead, they operate permanently reachable Kademlia nodes whose
only purpose is to respond to find_node and
ping queries. When a client contacts a router, the router
returns the IP addresses and ports of other active DHT nodes closer to
the target identifier, allowing the client to quickly discover regular
peers and integrate into the decentralized swarm.