Torrent DHT udp
Im trying to get access to a Torrent DHT network, and im having a hard time figuring out howto get access to the "entry" node i开发者_运维百科n DHT.
How does a DHT in a Bittorent client get "bootstrapped"?
Describes that a couple of standard entry nodes could be used router.bittorrent.com and router.utorrent.com running on port 6881 (UDP). AND http://www.bittorrent.org/beps/bep_0005.html describes the protocol on howto interact with a DHT server.
But if i send a simple UDP message to router.utorrent.com:6881, how do i know which port messages will be sent back to me in response to my requests? i tried listening for messages on the same port as i send to 6881 but i receive nothing.
Is these entry points limited to their own client (uTorrent) or can any thirdparty client use their "router"?
DHT responses are always sent to the same port the query was sent from.
If you're not getting a response from router.utorrent.com, it could be because it's temporarily down or because its network interface is saturated (last time I checked it was handling 6000 requests per second, iirc). If you only sent a single message, it could have been lost in the network as well.
Another reason for the DHT router not to respond would be if your query is mal-formed. I would suggest running wireshark, comparing uTorrent's DHT messages with your own, side-by-side.
uTorrent's DHT router is not locked in to any specific client, anyone can use it for bootstrapping.
As an alternative way to bootstrap, you could download some popular .torrent files, announce to the tracker and bootstrap off of the peers.
精彩评论