46 lines
1.2 KiB
Org Mode
46 lines
1.2 KiB
Org Mode
* P2P (Peer to Peer module)
|
|
:PROPERTIES:
|
|
:CUSTOM_ID: p2p-peer-to-peer-module
|
|
:END:
|
|
In this repository the P2P module has been designed from sratch at the
|
|
point of this implementation.
|
|
[[https://pkg.go.dev/git.sr.ht/~akilan1999/p2p-rendering-computation@v0.0.0-20210404191839-6a046babcb02/p2p][More
|
|
about function implementation]]
|
|
|
|
** Terminology
|
|
:PROPERTIES:
|
|
:CUSTOM_ID: terminology
|
|
:END:
|
|
1. IPTable: Refers to a json file which stores information about the
|
|
current servers avaliable with the speedtest results ran from the
|
|
Node that triggered it.
|
|
|
|
#+begin_example
|
|
{
|
|
"ip_address": [
|
|
{
|
|
"ipv4": "localhost",
|
|
"latency": 14981051,
|
|
"download": 8142.122540206258,
|
|
"upload": 3578.766512629995,
|
|
}
|
|
]
|
|
}
|
|
#+end_example
|
|
|
|
** Responsibility
|
|
:PROPERTIES:
|
|
:CUSTOM_ID: responsibility
|
|
:END:
|
|
- To ensure the IP table has nodes which are pingable
|
|
- Taking to nodes behind NAT. [[file:NAT-Traversal][More about the
|
|
implementation]]...
|
|
|
|
#+begin_quote
|
|
[!NOTE] If you are running in server mode it is recommended to use
|
|
[[https://routerguide.net/when-and-how-to-setup-dmz-host-for-home-use/][DMZ]]
|
|
to bypass the
|
|
[[https://en.wikipedia.org/wiki/Network_address_translation][NAT]].
|
|
|
|
#+end_quote
|