harmony-one / harmony

The core protocol of harmony
https://harmony.one
GNU Lesser General Public License v3.0
1.46k stars 286 forks source link

fix boot node instability issue, refactor p2p host configurations and add new features to p2p #4676

Closed GheisMohammadi closed 2 months ago

GheisMohammadi commented 2 months ago

Issue

After upgrading the boot nodes to the latest version of the main branch, which includes several changes compared to the previous boot node code, the boot node service process began restarting repeatedly. This was accompanied by numerous error messages related to the QUIC protocol, noise, sessions, muxers, and various other lower layer P2P issues.

This PR addresses these issues by making the following changes:

Additionally, this PR introduces several new configurations and flags, detailed below: NoTransportSecurity: to disable p2p security (tls and noise) NAT: enable p2p NAT. NAT Manager takes care of setting NAT port mappings, and discovering external addresses UserAgent: custom user agent; explicitly set the user-agent, so we can differentiate from other Go libp2p users DialTimeout: p2p dial timeout MuxerType: P2P multiplexer type (default:Mplex, 0:Mplex, 1:Yamux) NoRelay: No relay services, direct connections between peers only

sophoah commented 2 months ago

Thanks @GheisMohammadi

leaving here a link to the an explanation of the new p2p configuration : https://github.com/harmony-one/harmony/pull/4674#issuecomment-2124472042