How can I create / build / design a fully tracked distributed p2p network architecture (no queue)?
If I have seeds / peers with a static IP address and seeds / peers in different WANs .
I read about BTS and DHT
also i found:
File extensions Torrent
In the torrent dictionary without a tracker, the "announcement" key is missing. Instead, a tracker without a tracker has a “nodes” key. This key must be installed in the nearest nodes K in the routing table of the client generating the torrent. Alternatively, the key can be installed in a well-known good node, such as managed by a person who generates a torrent. Please do not automatically add “router.bittorrent.com” to torrent files or automatically add these node tables to client routing tables.
nodes = [["<host>", <port>], ["<host>", <port>], ...]
nodes = [["127.0.0.1", 6881], ["your.router.node", 4804]]
But I did not understand where I should execute flash (hard code) these IP addresses.
source share