forked from ObolNetwork/charon-distributed-validator-node
-
Notifications
You must be signed in to change notification settings - Fork 27
Closed
Labels
Description
🐞 Bug Report
Description
The lighthouse ports definition in compose-cl.yml is as follows:
ports:
- ${CL_PORT_P2P:-9000}:9000 # P2P TCP+UDP
This definition cannot activate UDP and as a result, no new peer can be found:
lido-charon-distributed-validator-node-cl-lighthouse-1 0.0.0.0:9000->9000/tcp, [::]:9000->9000/tcp
🔬 Minimal Reproduction
The definition can be changed to enable UDP:
ports:
- ${CL_PORT_P2P:-9000}:9000/tcp
- ${CL_PORT_P2P:-9000}:9000/udp
lido-charon-distributed-validator-node-cl-lighthouse-1 0.0.0.0:9000->9000/tcp, 0.0.0.0:9000->9000/udp, [::]:9000->9000/tcp, [::]:9000->9000/udp