-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Connectivity within Nodes #5333
Comments
This looks like libp2p/go-libp2p#383. Dialing
Can you confirm? Try connecting directly with |
Hi @Stebalien, I was working with @VishalWaman when we were testing this. We are building a desktop application based on ElectronJS and using the
Connecting directly to the node gives success and after the Ping using the peerID also works. I also noticed that Is there any way to find the correct multiaddresses to the given peerID using Basically we were getting the list of providers for a particular content hash and then we are using the ping api to check if the node is alive. Then using the pubsub model, subscribe to a topic publish a message to which the remote node send a response back with some info. |
So, the issue here is that your node knows that it's external IP is Unfortunately, it looks like your NAT isn't mapping symmetrically. That is, it's mapping outgoing connections from port @vyzo is working on something called autonat (https://github.com/libp2p/go-libp2p-autonat) that should help with this. Basically, we'll be able to connect to some service and guess what our external addresses are. The "autonat" service can then try connecting back to us at those addresses, telling us which ones work and which ones don't. That'll allow us to "guess" that port 4001 may work and then test it with the autonat service. |
I'm going to close this in favor of libp2p/go-libp2p#383 to avoid partitioning the conversation. |
Hi,
Can you please guide us on below usecase ?
We are working on P2P network implementation over go-ipfs
We have our own bootstrap nodes for creating network
We need to have seamless discovery + DHT + Ping and pubsub within them
Below are challenges we are experiencing :
We are able to get list of all DHT providers for specific CID (content id)
When we try to ping particular node using ID ping fails
(Ping error: dial attempt failed: <peer.ID cwB1fj> -->
<peer.ID cncwpp> dial attempt failed: dial tcp4 173.18.0.1:4001: i/o timeout)
and
Error: connect QmWmfowSaHDSzHoeDXAq1jWioc2vSMrr9ZoncK3VqTBDRL failure: dial attempt
failed: <peer.ID ay2YAo> --> <peer.ID WmfowS> dial attempt failed: dial tcp4
53.20.142.177:55783: connectex: No connection could be made because the target
machine actively refused it.
Some Notes:
We are using go-ipfs latest version
We are behind NAT this case was tried on Ec2 with all open ports on provider side
The text was updated successfully, but these errors were encountered: