Skip to main content
The 2024 Developer Survey results are live! See the results

Questions tagged [peer-discovery]

The tag has no usage guidance.

peer-discovery
0 votes
0 answers
18 views

Struggling to incorporate service discovery using jmDNS for a messaging app

I am working on a P2P secure messaging app in Java, and I am starting with a broadcaster and a scanner to discover it. Unfortunately, the scanner fails to find my broadcast, and I know my broadcaster ...
plakosizzle's user avatar
2 votes
0 answers
308 views

go-libp2p: my nodes don't find any peers with DHT peer discovery

I was basically trying to follow this tutorial https://medium.com/rahasak/libp2p-pubsub-peer-discovery-with-kademlia-dht-c8b131550ac7 but I couldn't get it to work. First some assumptions, please ...
phetherer's user avatar
  • 109
1 vote
0 answers
347 views

Istio RabbitMQ StatefulSets Peer Discovery

I have a RabbitMQ cluster running in Kubernetes. It works as expected without the Istio injection enabled. Unfortunately, the cluster crashes when the istio-injection is enabled. This is caused by the ...
Yiadh TLIJANI's user avatar
2 votes
1 answer
1k views

Implementing peer discovery in libp2p

Is peer discovery in libp2p (e.g. peers telling each other about peers they know about, and managing lists of connected nodes) in Rust controlled entirely at the level of a NetworkBehavior? It looks ...
kimon's user avatar
  • 2,495
3 votes
0 answers
573 views

Libp2p DHT peer discovery example in JS

According to Libp2p documentation DHT can be used for peer discovery. Also, Filecoin claims that they are using libp2p Kademlia DHT for discovering peers in go. So far I have not been able to find any ...
Dmitry Amelchenko's user avatar
5 votes
3 answers
3k views

WifiP2pManager.discoverPeers fails in android 10

following code sample returns Error code: 0, which is the error code for internal error in android. Is there any workaround which can enable discovering peers in android 10 devices? ...
J.Maduka's user avatar
0 votes
1 answer
3k views

Using UDP broadcast for pods/peers discovery in Kubernetes

I need to use UDP broadcast for peer discovery. Environment: docker-desktop with a single node Kubernetes cluster My code looks as follows: import java.net.DatagramPacket; import java.net....
dmgcodevil's user avatar
0 votes
1 answer
527 views

rabbitmq-peer-discovery-k8s fails. I still need to manually stop, join_cluster and start every node

Deployed the sample yaml files but doesn't work as expected. I still need to run a batch job on the cluster to manually stop, join_cluster and start for every pod. In addition, is there a way to ...
khteh's user avatar
  • 3,734
0 votes
1 answer
749 views

P2P Network Bootstrapping

For P2P networks, I know that some networks have initial bootstrap nodes. However, one would assume that with all new nodes learning of peers from said bootstrap nodes, the network would have ...
Lev Knoblock's user avatar
0 votes
0 answers
78 views

Agent discovery in a mutli-agent distributed system with p2p communication

Lets say I have a set of Agents in a distributed network without a centralized unit. I want to communicate them with P2P. So every Agent is a peer right? The network should build itself and when a ...
Dominik Brandstetter's user avatar
2 votes
1 answer
333 views

Are there any BitTorrent/DHT extensions for multicast peer discovery?

Does BitTorrent or its mainline DHT has any extension for IPv6 local peer discovery using multicast?
Petr's user avatar
  • 63.1k
3 votes
1 answer
947 views

How bitcoin peer discovery works after connecting to hard coded nodes?

I am tinkering with the bitcoin source code and trying to understand the exact working of peer discovery mechanism in the testnet mode for which I have made the following changes: Disabled the DNS ...
bawejakunal's user avatar
  • 1,688
2 votes
1 answer
748 views

Where/what is the Peer Exchange (PEX) protocol specification for BitTorrent?

There's a note that BEP 11 is the pending draft for PEX. However this was never published, and there's no official specification that I can find.
Matt Joiner's user avatar