现有 DHT 的 Hello World
我熟悉分布式哈希表 (DHT) 的工作原理。是否可以编写一个将数据存储到现有 DHT(例如 Kademlia 或 Mainline DHT)的程序?是否有一个简单的“Hello World”类型的程序可以显示最简单的方法来执行此操作?
I am familiar with the theory of how a Distributed Hash Table (DHT) works. Is it possible to write a program that stores data to an existing DHT (such as Kademlia or Mainline DHT) ? Is there a simple 'Hello World' type of program that would show the simplest possible way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
DHT 的最佳 hello world 是将 Bittorrent 的 DHT 上的
'ping'
发送到引导节点。步骤是:这些是我在开始实施自己的 DHT 之前刚刚采取的步骤。
The best hello world for DHT would be to send a
'ping'
on Bittorrent's DHT to a bootstrap node. The steps are:These are the steps I just took before I began working on my own DHT implementation.
这个问题可能已经过时了,但无论如何。
如前所述,向现有 DHT 说“Hello”的最简单方法是向 DHT 节点之一发送
ping
消息。让我们考虑基于 Kademlia 的主线 DHT (MDHT)。在端口
6881
上的地址router.bittorrent.com
处有一个引导服务器。你可以把这个服务器想象成一个永久在线的通用DHT节点。此外,您还可以使用另一个节点,例如本地运行的 torrent 客户端,它使用 DHT。我用Python写了一个小例子:
我使用了
bencode
对消息进行 bencode 和 bdecode 的模块。有关 Mainline DHT 协议的更多信息,请参阅本文档。 (请注意,该协议与原始 Kademlia 协议略有不同。)
The question is might be outdated but anyway.
As was mentioned, the simplest way to say "Hello" to an existing DHT is to send a
ping
message to one of DHT nodes. Let's consider Kademlia-based Mainline DHT (MDHT).There is a bootstrap server at address
router.bittorrent.com
on port6881
. You can think about this server as a general DHT node which is permanently online. Also, you can use another node such as locally run torrent client, which uses DHT.I've written a small example in Python:
I've used
bencode
module to bencode and bdecode messages.More information on Mainline DHT protocol can be in this document. (Note that the protocol is slightly different from original Kademlia protocol.)