Comment on Hosting a simple static site on IPFSparentComments−RX1410yNo, IPFS uses a distributed hash table to find content and nodes on the network. The only centralised servers are the gateways between the regular Internet and IPFS, due to necessity. However it is possible to run your own gateway, and many do.−eatonphil10yHow are new nodes discovered or registered?−perfmode10yFor now, there is a default bootstrap list:https://github.com/ipfs/go-ipfs/blob/7fbfecf6fab5920317de2e9...When new nodes enter the network, they connect to a subset of this list and use this as a starting point for discovery.After that, queries/operations on the DHT will result in the discovery of other nodes.−lgierth10yThe bootstrap list isn't hard coded, it's just a default. Here's how to work with the bootstrap list: https://ipfs.io/ipfs/QmTkzDwWqPbnAh5YiV5VwcTLnGdwSNsNTn2aDxd... (from ipfs.io/docs/examples)
Comments
No, IPFS uses a distributed hash table to find content and nodes on the network. The only centralised servers are the gateways between the regular Internet and IPFS, due to necessity. However it is possible to run your own gateway, and many do.
How are new nodes discovered or registered?
For now, there is a default bootstrap list:
https://github.com/ipfs/go-ipfs/blob/7fbfecf6fab5920317de2e9...
When new nodes enter the network, they connect to a subset of this list and use this as a starting point for discovery.
After that, queries/operations on the DHT will result in the discovery of other nodes.
The bootstrap list isn't hard coded, it's just a default. Here's how to work with the bootstrap list: https://ipfs.io/ipfs/QmTkzDwWqPbnAh5YiV5VwcTLnGdwSNsNTn2aDxd... (from ipfs.io/docs/examples)