mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-28 15:46:43 +00:00
* chore: update `txarrivalwait` flag description * chore: update docs * chore: update other flags * fix: doc generation is now deterministic * chore: remove debug * feat: sort options in `bor server --help` * fix: prealloc array * fix: lint issues * internal/cli: remove nolint --------- Co-authored-by: marcello33 <marcelloardizzone@hotmail.it> Co-authored-by: Manav Darji <manavdarji.india@gmail.com>
23 lines
No EOL
852 B
Markdown
23 lines
No EOL
852 B
Markdown
# Bootnode
|
|
|
|
## Options
|
|
|
|
- ```dry-run```: validates parameters and prints bootnode configurations, but does not start bootnode (default: false)
|
|
|
|
- ```listen-addr```: listening address of bootnode (<ip>:<port>) (default: 0.0.0.0:30303)
|
|
|
|
- ```log-level```: log level (trace|debug|info|warn|error|crit), will be deprecated soon. Use verbosity instead (default: info)
|
|
|
|
- ```metrics```: Enable metrics collection and reporting (default: true)
|
|
|
|
- ```nat```: port mapping mechanism (any|none|upnp|pmp|extip:<IP>) (default: none)
|
|
|
|
- ```node-key```: file or hex node key
|
|
|
|
- ```prometheus-addr```: listening address of bootnode (<ip>:<port>) (default: 127.0.0.1:7071)
|
|
|
|
- ```save-key```: path to save the ecdsa private key
|
|
|
|
- ```v5```: Enable UDP v5 (default: false)
|
|
|
|
- ```verbosity```: Logging verbosity (5=trace|4=debug|3=info|2=warn|1=error|0=crit) (default: 3) |