-
-
Notifications
You must be signed in to change notification settings - Fork 3k
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
Fixing Bootstrapping #6797
Comments
misread, the inverse of that... the ones not addressed by /dnsaddr are older and I believe all have 1024 bit keys, https://github.com/ipfs/go-ipfs-config/blob/98ec0ae9a3161d355da0615e54ca314232212615/bootstrap_peers.go#L26-L34 |
@olizilla so, something has come up: when we update our new bootstrappers to the next go-ipfs release, we need to use a custom build that can (a) connect to the old bootstrappers and (b) does not disconnect from the old bootstrappers. Otherwise, peers connecting to the old bootstrappers will be isolated from the rest of the network. |
Exciting! That's ok, we can roll out a custom build from a branch of go-ipfs like we do for gateways. @Stebalien let me know the branch you set up for that, and I'll set up an autobuild rule for it on dockerhub. |
👍 |
We're bumping to version 8 to migrate bootstrappers: 1. Switch from /ipfs to /p2p. This isn't necessary but it's still "nice". 2. Add new bootstrappers to old nodes that don't have them. part of #6797
Version information:
Description:
Libp2p recently increased the minimum RSA key size to 2048 bits. While almost all nodes in the network are using 2048 bit keys already, most of the built-in bootstrap nodes are not.
Luckily, we did have some newer nodes using 2048 bit keys. Specifically, the /dnsaddr/bootstrap.libp2p.io nodes. Unfortunately:
To solve 2, we switched to indirect dnsaddr records: now we have 4 top-level records that each resolve two two dnsaddr records, one for each IP address for each bootstrapper. These records all, individually, fit into single UDP packets.
Unfortunately, go-libp2p doesn't support recursive dnsaddr resolution: libp2p/go-libp2p#744.
So, we need to:
/ipfs
part of these multiaddrs with/p2p
(no reason not to).The text was updated successfully, but these errors were encountered: