Browse Source

Merge pull request #424 from Logan007/yaFaq

added faq on multiple supernode ports
pull/425/head
Luca Deri 4 years ago
committed by GitHub
parent
commit
731d2deb53
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 14
      doc/Faq.md

14
doc/Faq.md

@ -26,12 +26,20 @@ You can request the current status by just sending a new line, i.e. pressing [EN
### Is there support for multiple supernodes?
As of now, one additional supernode is supported. The additional supernode is handled in a backup-fashion: A reserve-supernode can be started if one fails. The reserve-supernode just has to be known to the edges beforehand (simply by an additional `-l <ip:port>` at the edge).
Actively using several in parallel will have your network fall apart (partitioned – some edges connected to one supernode, some to another).
Actively using several supernodes in parallel will have the network fall apart (partitioned – some edges connected to one supernode, some to another).
Considering these known limitations, current discussions however seem to include thoughts on increasing supernode reliability as well as fall-back mechanisms and might even shift more towards a full p2p-approach which then would not require a supernode at all, every node could be equal highly increasing network resilience.
### Can a supernode listen on multiple ports?
The supernode itself can only listen on one port. However, your firewall might be able to map additional UDP ports to the supernode's regular port:
`sudo iptables -t nat -A PREROUTING -i <network interface name> -d <supernode's ip address> -p udp --dport <additional port number> -j REDIRECT --to-ports <regular supernode port number>`
Considering these known limitations, current discussions however seem to move more towards a fully p2p-approach which then would require no supernode at all, every node might be equal highly increasing network resilience.
This command line can be put down as additional `ExecStartPost=` line (without `sudo`) in the supernode's `.service` file which can hold several such lines if required.
## Edge

Loading…
Cancel
Save