-
Notifications
You must be signed in to change notification settings - Fork 33
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
Upgrade Bootstrap nodes IP version? #61
Comments
Related to this -- @p-shahi you were noting that there are Browser-to-Browser IPv6 issues: To help in troubleshooting
Looking to see how you are observing & troubleshooting the Browser-to-Browser IPv6 issues currently |
@DougAnderson444 I created this issue: #64 thanks for the reminder.
Yes that's a good idea, right now, we have to open console, set debug log and grab the listen addr for the browser peer. Ideally it should be displayed in the frontend . Created another ticket here: #65 Let me know if you want to hop on a zoom call to pair together as well |
I'm curious, @DougAnderson444 was there any specific reason or benefit to upgrading to IPv6? |
Other than The fact that IP4 is legacy and has been for several years? My use case was specifically individuals running a node at home. So they need a globally accessible internet protocol address. As we know, since IP4 addresses are few and far between, getting this global address means a bunch of fancy maneuvers. However, with IP6 they are basically all globally available. So no gateway or mask moves are needed. So that's why I was focusing on IP6. IP6 is a magically convenient way to get a globally addressable address. Plus, it's the right thing to do. If we can't get IP6 working, and then nobody has a hope. |
Also note that as of several weeks ago, Amazon web services started charging a premium for IP4 addresses. Meaning the cost is a lot higher to run IP4 than IP6 |
Right on! I recently re-deployed the bootstrap nodes (they hadn't been running for a while). The new node has both IPv4 and IPv6. In parallel, I've shifted the frontend to rely on delegated routing to discover the multiaddrs of the bootstrap nodes from the peer IDs: universal-connectivity/js-peer/src/lib/constants.ts Lines 11 to 12 in 0d235e7
The rust-peer is listening on both IPv4 and IPv6 (though due to another bug in the rust peer code, it's seen as listening on many ports). The go-peer is only listening on the IPv4. I'll open a PR to ensure it's also listening on the IPv6 address. |
universal-connectivity/packages/frontend/src/lib/constants.ts
Lines 5 to 6 in b136592
Did we want to upgrade these to
IPv6
as well?The text was updated successfully, but these errors were encountered: