GithubHelp home page GithubHelp logo

Comments (3)

bandoos avatar bandoos commented on July 3, 2024

Hey @rahullenkala , can you clarify “sometimes”, do you mean that with some external nodes from the same network you can, and some not, or is a “temporal” sometimes?
Maybe some node is behind a firewall?

from go-libp2p-examples.

rahullenkala avatar rahullenkala commented on July 3, 2024

If the nodes are in same network we can connect but if nodes are in different network I am unable to connect @bandoos

from go-libp2p-examples.

upperwal avatar upperwal commented on July 3, 2024

@rahullenkala

I am unable to connect to a node in different network sometimes

In most of the cases this is due to the NAT. When you are in the same network, nodes can connect via loopback or 192.168.*.* or some other private IP. Connecting to a node over the internet might not be that easy due to NATs and firewalls.

You should read some text on how NATs work.

Briefly: NATs helps you translate private IPs to public (routable) IPs and vice-versa. So as a node you would only know your private IPs (192.168.*.* etc) but other nodes (like bootstrap nodes) will only be able to see your public IP address. ISPs usually host multiple connections over the same public IP and hence you are sharing your public IP with maybe a couple of hundred people.

When some third node tries to connect to you on that public IP:port pair, your ISP's NAT will first see if that IP:port pair is "open" or not. Most of the time it won't be open and hence your packet is dropped (I think this is what is happening with you). If it is open then it will look for a private IP who has "opened" that port and redirect the traffic to that private IP after replacing the public IP with the private one in the packet header.

Then how to go about it.
Most reliable solution as of now: Use a relay node.
Not so reliable: Enable UPnP in Libp2p config.
Future: Hole punching mechanism which is not yet available in libp2p.

from go-libp2p-examples.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.