mirror of
https://github.com/sigp/lighthouse.git
synced 2026-04-26 01:03:40 +00:00
Some updates to Lighthouse book (#6995)
* #6447 - Move some deprecated pages to a new section under `Archived` - Remove fallback log in mev as the log will not be present after VC using `/eth/v3/validator/blocks` endpoint by default - Add warning against using Btrfs file system (thank you @ChosunOne for the report) - Add data shared by @mcdee on tree states API queries time - Rename partial withdrawals to validator sweep to differentiate it from the upcoming execution layer partial withdrawals - Update NAT API response - Update docs on IPv6 - Rename .md files to follow a standard prefix section name, e.g., installation_*.md, advanced_*.md - Standardise .md files using underscore `_` instead of hyphen `-` to be consistent with other files naming conventions.
This commit is contained in:
@@ -123,8 +123,12 @@ Lighthouse listens for connections, and the parameters used to tell other peers
|
||||
how to connect to your node. This distinction is relevant and applies to most
|
||||
nodes that do not run directly on a public network.
|
||||
|
||||
Since Lighthouse v7.0.0, Lighthouse listens to both IPv4 and IPv6 by default if it detects a globally routable IPv6 address. This means that dual-stack is enabled by default.
|
||||
|
||||
### Configuring Lighthouse to listen over IPv4/IPv6/Dual stack
|
||||
|
||||
To listen over only IPv4 and not IPv6, use the flag `--listen-address 0.0.0.0`.
|
||||
|
||||
To listen over only IPv6 use the same parameters as done when listening over
|
||||
IPv4 only:
|
||||
|
||||
@@ -136,7 +140,7 @@ TCP and UDP.
|
||||
If the specified port is 9909, QUIC will use port 9910 for IPv6 UDP connections.
|
||||
This can be configured with `--quic-port`.
|
||||
|
||||
To listen over both IPv4 and IPv6:
|
||||
To listen over both IPv4 and IPv6 and using a different port for IPv6::
|
||||
|
||||
- Set two listening addresses using the `--listen-address` flag twice ensuring
|
||||
the two addresses are one IPv4, and the other IPv6. When doing so, the
|
||||
@@ -165,7 +169,7 @@ To listen over both IPv4 and IPv6:
|
||||
> It listens on the default value of --port6 (`9000`) for both UDP and TCP.
|
||||
> QUIC will use port `9001` for UDP, which is the default `--port6` value (`9000`) + 1.
|
||||
|
||||
> When using `--listen-address :: --listen-address --port 9909 --discovery-port6 9999`, listening will be set up as follows:
|
||||
> When using `--listen-address :: --listen-address 0.0.0.0 --port 9909 --discovery-port6 9999`, listening will be set up as follows:
|
||||
>
|
||||
> **IPv4**:
|
||||
>
|
||||
|
||||
Reference in New Issue
Block a user