The dht tag has no wiki summary.
1
vote
0answers
38 views
How to get Monotorrents DHT to work?
Iam trying to get the dht implementation of monotorrent to work but i just cant seem to find any peers.
ive tried most of the examplecode code availeble on the net like the testclient and dhttest.
...
0
votes
0answers
21 views
which simulator supports bamboo DHT and OpenDHT?
As OpenDHT is not supported more within PlanetLab,are there any other simulators implement it?
ex, overlayWaver? how about bamboo DHT? I need to test my own algorithms on them, so I need such an ...
0
votes
0answers
33 views
Storing files in DHT
I have a project where I'm supposed to implement in a simple file transfer protocol in java that can be used to store files in the DHT(which I have done in C code) and fetch them from any node ...
0
votes
1answer
166 views
How to get the first peer from a torrent-magnet link?
I've been trying to understand the torrent-magnet technology, but I can't seem to figure out how you get connected to the first peer when opening a magnet link.
When you get a magnet link like below, ...
0
votes
1answer
170 views
How does “DHT search engine” work?
I'm interested in the Btdigg.org which is called a "DHT search engine". According to this article, it doesn't store any content and even has no database. Then how does it work? Doesn't it need to ...
0
votes
0answers
102 views
DHT Library for Perl or PHP [closed]
I'm after a DHT library for Perl or PHP (on Linux). I realise that there are libraries available for other languages (e.g. Java), however I have existing work that I want to integrate the ...
0
votes
1answer
144 views
Kademlia routing table and distance metric
Its been the first time I read about Kademlia today, and some points I don't think I got them right.
The distance between nodes and keys is the xor of their values.
So, if I have key x and node y, ...
0
votes
1answer
269 views
Connect to torrent “swarm” or DHT with ruby
I'm probably lacking in some fundamental understanding of how BitTorrent, DHT, and the "swarm" work, as I'm not even sure if DHT and the "swarm" are one and the same.
However, I'm trying to find ...
0
votes
0answers
65 views
Having trouble understanding series of events when joining a DHT (chord implementation)
I'm trying to implement the Chord protocol (using this paper as a reference). However, I'm stuck trying to understand what to do when a node joins. I understand how its done if I diagram it out, but ...
1
vote
1answer
171 views
ping router.utorrent.com using netcat for dht
I'm just trying to get a response from router.utorrent.com to potentially make a dht service down the track.
for example the magnet link would give me
...
0
votes
1answer
183 views
Routing table creation at a node in a Pastry P2P network
This question is about the routing table creation at a node in a p2p network based on Pastry.
I'm trying to simulate this scheme of routing table creation in a single JVM. I can't seem to understand ...
0
votes
1answer
36 views
What is the necessity of error messages in the unreliable RPC protocol that BitTorrent Mainline DHT uses?
Mainline DHT is the DHT used by BitTorrent, which implements an RPC protocol over UDP called KRPC. KRPC includes support for error messages outlined here.
Why is this necessary? As this is an ...
0
votes
0answers
68 views
About the changed DHT Protocol [closed]
Currently i am fixing the bugs of my Bittorrent downloader.
I find that the torrents "nodes" information is changed to have values like:
{20729, 0}
Which is different from before, which is:
{ip, ...
0
votes
2answers
138 views
How to update entries in a DHT
I know how data is (in theory) stored in a DHT. However, I am uncertain as to how one might go about updating a piece of data associated with a key. Is this possible? Also, how are conflicts handled ...
1
vote
1answer
175 views
Simulating node failure in a DHT
I'm currently doing some performance testing with the free pastry DHT. Freepastry is an open source DHT done in Java.
The goal is to monitor the effect on the DHT when a certain number of nodes go ...
0
votes
1answer
170 views
Where would a Distributed Hash Table be used in place of BitTorrent?
The lack of recent research into the field of DHTs in comparison to BitTorrent (Tribler being the most significant research project) has lead me to wonder about the usage of DHTs.
Both BitTorrent ...
0
votes
1answer
53 views
Get list of nodes in pastry overlay
Please, how can i get the list of nodes in pastry overlay ? is that possible ?
Thank you.
0
votes
2answers
393 views
Why does Kademlia structure it's routing table how it does?
I understand that the Kademlia routing table is made up of 160 buckets.
Nodes are put into buckets 0-159, depending on their prefix length (which is the number of leading unset bits in the XOR of the ...
1
vote
0answers
79 views
Implement DHT with system RPC [closed]
Objective: Implement Kademlia DHT using Microsoft Windows RPC (Microsoft IDL/DCE 1.1)
Requirement:
No COM, COM+, DCOM, .Net. It must be done in Visual C/C++ by using pure system RPC APIs.
Think ...
0
votes
1answer
368 views
How PEX protocol (Magnetic links) finds it first IP?
I'm trying to understand how can a magnetic link work, as I've read they use DHT and PEX to get the peers, but if I'm a new node in the network how can I find peers with only the hash of the file?! ...
0
votes
1answer
509 views
Chord p2p distributed hash table (dht) implementation over http protocol
I have to implement the chord protocol over http as my project until now I've considered three ways:
Using jxta in java
Try to edit open-chord [which uses tcp/ip]
Coding from scratch using sockets ...
0
votes
2answers
197 views
Calculate total number of actual seeders
I'm creating a PHP torrent scraper based on the info hash of torrents. I managed to get the number of seeds and peers per torrent on a lot of trackers. But how do I calculate the 'average' number of ...
1
vote
0answers
151 views
DHT routing library for Java
I need some sort of routing library, similar to openkad, which does not provide any hashtable functionality but simply provides facilities to
register new node in the network
receive a message when ...
0
votes
1answer
96 views
Libtorrent Logging through python bindings, possible?
I noticed the Rasterbar/Libtorrent page mentions the possiblity of "verbose logging of the DHT protocol traffic"
http://www.rasterbar.com/products/libtorrent/building.html
Does anyone know if its ...
-1
votes
1answer
308 views
Mainline bit torrent DHT implementation library [closed]
Would anyone know where I can find a reusable mainline DHT implementation that I could use to connect to the real bittorrent network ?
Preferably java, but any other language would do.
0
votes
1answer
158 views
DHT in P2P systems
In a P2P system, what is a difference between:
send a query message to a known node and the node re-send a response(I mean I explicitly contact a node by sending a message to ask him somethings).
...
0
votes
3answers
212 views
Why does Kademlia use UDP?
Why does the Kademlia Distributed Hash Table use UDP as its network transport protocol, even though it's unreliable?
1
vote
1answer
276 views
Chord Implementation in Android+Java
Here is the Problem.I am implementing Chord DHT in Android.I have started the server(not exactly server) at 5554 and that is where every new node gives request to join the circle.Now I compare the ...
2
votes
1answer
336 views
PHP DHT info_hash list?
I'd like to (via PHP) gather the info_hashes currently being downloaded or search the DHT.
I've seen BTDigg which uses DHT for a search engine and I'd like to do something similar.
Also, after I ...
0
votes
1answer
139 views
Joining a Chord network (dht)
I'm writing a chord netowrk on my LAN (the node key is an hash of the IP)
I read many articles about Chord network
but I didn't figure it out:
when a new client want to join the network, it must know ...
0
votes
1answer
190 views
Mainline DHT unspecified entry in bencoded dictionary
I have found an entry in a bencoded dictionary in DHT traffic, generated by BitTorrent, which I do not understand, nor can find anything about in the DHT specification at ...
0
votes
1answer
391 views
Query DHT Server
I'm trying to make a simple query to a DHT server.
I'm trying to make a simple simple example to test queries to the servers, but I don't get a response from the server in any form...
Little ...
0
votes
2answers
460 views
Chord (Distributed Hash Table)
I want to create my own Chord implementation for P2P file sharing
I followed an article which explained that every node has it's ID (hash of the IP for example)
my questions are:
how a new client ...
0
votes
2answers
90 views
Similar to hash values but something that returns an int
Using the hash function MD5 on a string creates a very long value, and it creates the same value for the same string every time. Now, my question is: is there a way to do something similar, like give ...
0
votes
1answer
612 views
Chord protocol. Distribuited Hash Table (DHT). Peer to peer. (P2P)
I'm trying to implement this protocol: http://en.wikipedia.org/wiki/Chord_(peer-to-peer)
What i understood from it is that each node that joins the "circle" is placed in a random place inside the ...
3
votes
1answer
217 views
P2P overlay networks since 2001?
What has been happening with the four big P2P distributed hash table (DHT) overlay networks — Pastry, CAN, Chord, and Tapestry — since they all came out in 2001?
I know that academic projects ...
2
votes
1answer
182 views
Is it allowed to run several different DHT nodes behind the same ip:port pair in Mainline DHT?
Is it allowed to run several different DHT nodes behind the same ip:port pair in Mainline DHT?
And which node should reply on the DHT query message?
All or one of them?
Thank you in advance.
1
vote
1answer
181 views
Is it possible to create a DHT without any static IPs?
I want to use a distributed hash table in an application but I don't want to have a central server as entry point. Is there a way to implement this?
2
votes
1answer
971 views
DHT: BitTorrent vs kademlia vs clones (python)
I'm in the middle of implementing my own dht for internal cluster. Since it will be used in file-sharing program like bittorrent, "Mainline DHT" was the first thing I was look at. After that I found ...
1
vote
0answers
264 views
how does DHT works?
I grabbed the basic idea about DHT from wiki:
Store Data:
In a DHT-network, every node is responsible for a specific range of key-space. To store a file in the DHT, first, hash the file's name to ...
3
votes
1answer
396 views
Mainline DHT bootstrap process
Can somebody clarify me the statement from the specification of mainline DHT?
Upon inserting the first node into its routing table and when starting up thereafter, the node should attempt to find ...
0
votes
2answers
218 views
What is the maximum size of the udp packet which is sent by the mainline DHT node for the get_peers query?
What is the maximum size of the udp packet which is sent by the mainline DHT node for the get_peers query?
How does the node response when it store 3000 peers? (the packet is very large in that case).
...
1
vote
1answer
335 views
What is the role of the BitTorrent Mainline DHT routing table in peer lookup requests?
As I understand the first lookup request is sent to the node which is the closest one in the routing table to the info hash of the torrent
During the process of peer lookup I can receive many nodes. ...
1
vote
1answer
129 views
Bittorrent MDHT responses
What does the 'v' key value correspond to in Bittorrent Mainline DHT (MDHT) responses?
Here's an example buncoded response:
{'y': b'r',
'r': {'id': ...
3
votes
1answer
1k views
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 in DHT.
How does a DHT in a Bittorent client get ...
1
vote
1answer
465 views
Distributed System Topology
Trying to implement an electronic voting system as a college project and just faced the most important step towards my aim < the system architecture >
Multi-Server/Multi-Client , MUST really be ...
1
vote
1answer
482 views
libtorrent dht peer request?
Ive been playing around with the python bindings for libtorrent/rasterbar.
What I wanted to do was generate a new 'node-id' and reannounce it to the other nodes.
I read that a 'bencoded dicionary' ...
0
votes
3answers
769 views
Getting a torrent title from metadata or torrent file
Is it possible to extract the torrent title from the meta data loaded from DHT or the file downloaded from some server like TPB? any api,lib any language would do
1
vote
2answers
1k views
C++ implementation of DHT
I am looking for opensource implementations of Kademlia DHT in C/C++. It must be lightweight and crossplatform (win/linux/mac).
It must be able to post information to DHT and retrieve it.
1
vote
1answer
325 views
Hello World for an existing DHT
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 ...
