Open
Description
System information
Geth version: v1.15.2
OS & Version: macOS Sequoia 15.2
Expected behaviour
When I start a geth node with configured bootnode addresses in the format of enode:<public_key>@<hostname>
where the hostname
is a valid DNS resolvable address I expect the node to join the network and operate normally. NOTE: We are not specifying IPs because we want to rely on the dynamic DNS resolve functionality introduced in v1.15.0.
Actual behaviour
After I run the geth node with the above mentioned configured bootnodes using docker
:
docker run --rm --volume=./config.toml:/tmp/config.toml ethereum/client-go:v1.15.2 --config=/tmp/config.toml
I am unable to start the node because of getting:
Fatal: Error starting protocol stack: bad bootstrap node "enode://3116e85de20404db0c64a75b72afffa90e914b2e7c5e7141c445e03fd6702c3da986e23ea554b87c1b6feb58e2423a8588ec17b9a635f3fa0ab2c0b341bb0cf5@foo.com:30303": missing IP address
Fatal: Error starting protocol stack: bad bootstrap node "enode://3116e85de20404db0c64a75b72afffa90e914b2e7c5e7141c445e03fd6702c3da986e23ea554b87c1b6feb58e2423a8588ec17b9a635f3fa0ab2c0b341bb0cf5@foo.com:30303": missing IP address
Steps to reproduce the behaviour
Given the following [Node.P2P]
section of config.toml
file:
[Node.P2P]
NoDiscovery = false
DiscoveryV4 = true
DiscoveryV5 = true
BootstrapNodes = ["enode://3116e85de20404db0c64a75b72afffa90e914b2e7c5e7141c445e03fd6702c3da986e23ea554b87c1b6feb58e2423a8588ec17b9a635f3fa0ab2c0b341bb0cf5@foo.com:30303"]
[Node.HTTPTimeouts]
ReadTimeout = 30000000000
ReadHeaderTimeout = 30000000000
WriteTimeout = 30000000000
IdleTimeout = 120000000000
and running the node via docker
:
docker run --rm --volume=./config.toml:/tmp/config.toml ethereum/client-go:v1.15.2 --config=/tmp/config.toml
I get:
Fatal: Error starting protocol stack: bad bootstrap node "enode://3116e85de20404db0c64a75b72afffa90e914b2e7c5e7141c445e03fd6702c3da986e23ea554b87c1b6feb58e2423a8588ec17b9a635f3fa0ab2c0b341bb0cf5@foo.com:30303": missing IP address
Fatal: Error starting protocol stack: bad bootstrap node "enode://3116e85de20404db0c64a75b72afffa90e914b2e7c5e7141c445e03fd6702c3da986e23ea554b87c1b6feb58e2423a8588ec17b9a635f3fa0ab2c0b341bb0cf5@foo.com:30303": missing IP address
Backtrace
INFO [02-18|22:42:17.209] Starting Geth on Ethereum mainnet...
INFO [02-18|22:42:17.210] Bumping default cache on mainnet provided=1024 updated=4096
INFO [02-18|22:42:17.219] Maximum peer count ETH=50 total=50
INFO [02-18|22:42:17.221] Smartcard socket not found, disabling err="stat /run/pcscd/pcscd.comm: no such file or directory"
WARN [02-18|22:42:17.229] Sanitizing cache to Go's GC limits provided=4096 updated=2612
INFO [02-18|22:42:17.230] Set global gas cap cap=50,000,000
INFO [02-18|22:42:17.230] Initializing the KZG library backend=gokzg
INFO [02-18|22:42:17.290] Enabling metrics collection
INFO [02-18|22:42:17.291] Enabling stand-alone metrics HTTP endpoint address=127.0.0.1:6060
INFO [02-18|22:42:17.291] Starting metrics server addr=http://127.0.0.1:6060/debug/metrics
INFO [02-18|22:42:17.291] Allocated trie memory caches clean=391.00MiB dirty=653.00MiB
INFO [02-18|22:42:17.292] Defaulting to pebble as the backing database
INFO [02-18|22:42:17.292] Allocated cache and file handles database=/geth/geth/chaindata cache=1.28GiB handles=524,288
INFO [02-18|22:42:17.337] Opened ancient database database=/geth/geth/chaindata/ancient/chain readonly=false
INFO [02-18|22:42:17.338] State schema set to default scheme=path
INFO [02-18|22:42:17.338] Initialising Ethereum protocol network=1650 dbversion=<nil>
ERROR[02-18|22:42:17.339] Head block is not reachable
WARN [02-18|22:42:17.340] Sanitizing invalid node buffer size provided=653.00MiB updated=256.00MiB
INFO [02-18|22:42:17.351] Opened ancient database database=/geth/geth/chaindata/ancient/state readonly=false
INFO [02-18|22:42:17.351] Initialized path database cache=391.00MiB buffer=256.00MiB history=90000
INFO [02-18|22:42:17.351] Writing default main-net genesis block
INFO [02-18|22:42:17.559]
INFO [02-18|22:42:17.559] ---------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [02-18|22:42:17.560] Chain ID: 1 (mainnet)
INFO [02-18|22:42:17.560] Consensus: Beacon (proof-of-stake), merged from Ethash (proof-of-work)
INFO [02-18|22:42:17.560]
INFO [02-18|22:42:17.560] Pre-Merge hard forks (block based):
INFO [02-18|22:42:17.560] - Homestead: #1150000 (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/homestead.md)
INFO [02-18|22:42:17.560] - DAO Fork: #1920000 (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/dao-fork.md)
INFO [02-18|22:42:17.560] - Tangerine Whistle (EIP 150): #2463000 (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/tangerine-whistle.md)
INFO [02-18|22:42:17.560] - Spurious Dragon/1 (EIP 155): #2675000 (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/spurious-dragon.md)
INFO [02-18|22:42:17.560] - Spurious Dragon/2 (EIP 158): #2675000 (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/spurious-dragon.md)
INFO [02-18|22:42:17.560] - Byzantium: #4370000 (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/byzantium.md)
INFO [02-18|22:42:17.560] - Constantinople: #7280000 (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/constantinople.md)
INFO [02-18|22:42:17.560] - Petersburg: #7280000 (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/petersburg.md)
INFO [02-18|22:42:17.560] - Istanbul: #9069000 (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/istanbul.md)
INFO [02-18|22:42:17.560] - Muir Glacier: #9200000 (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/muir-glacier.md)
INFO [02-18|22:42:17.560] - Berlin: #12244000 (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/berlin.md)
INFO [02-18|22:42:17.560] - London: #12965000 (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/london.md)
INFO [02-18|22:42:17.560] - Arrow Glacier: #13773000 (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/arrow-glacier.md)
INFO [02-18|22:42:17.560] - Gray Glacier: #15050000 (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/gray-glacier.md)
INFO [02-18|22:42:17.560]
INFO [02-18|22:42:17.560] Merge configured:
INFO [02-18|22:42:17.560] - Hard-fork specification: https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/paris.md
INFO [02-18|22:42:17.560] - Network known to be merged
INFO [02-18|22:42:17.560] - Total terminal difficulty: 58750000000000000000000
INFO [02-18|22:42:17.560]
INFO [02-18|22:42:17.560] Post-Merge hard forks (timestamp based):
INFO [02-18|22:42:17.560] - Shanghai: @1681338455 (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/shanghai.md)
INFO [02-18|22:42:17.560] - Cancun: @1710338135 (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/cancun.md)
INFO [02-18|22:42:17.560]
INFO [02-18|22:42:17.560] ---------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [02-18|22:42:17.560]
INFO [02-18|22:42:17.561] Loaded most recent local block number=0 hash=d4e567..cb8fa3 age=55y11mo1w
WARN [02-18|22:42:17.562] Failed to load snapshot err="missing or corrupted snapshot"
INFO [02-18|22:42:17.562] Rebuilding state snapshot
INFO [02-18|22:42:17.563] Initialized transaction indexer range="last 2350000 blocks"
INFO [02-18|22:42:17.565] Resuming state snapshot generation root=d7f897..0f0544 accounts=0 slots=0 storage=0.00B dangling=0 elapsed=2.269ms
INFO [02-18|22:42:17.597] Generated state snapshot accounts=8893 slots=0 storage=409.64KiB dangling=0 elapsed=35.117ms
INFO [02-18|22:42:17.619] Gasprice oracle is ignoring threshold set threshold=2
WARN [02-18|22:42:17.620] Engine API enabled protocol=eth
INFO [02-18|22:42:17.620] Starting peer-to-peer node instance=Geth/TestJoinNetwork/v1.15.2-stable-c8c62daf/linux-amd64/go1.23.6
Fatal: Error starting protocol stack: bad bootstrap node "enode://3116e85de20404db0c64a75b72afffa90e914b2e7c5e7141c445e03fd6702c3da986e23ea554b87c1b6feb58e2423a8588ec17b9a635f3fa0ab2c0b341bb0cf5@foo.com:30303": missing IP address
Fatal: Error starting protocol stack: bad bootstrap node "enode://3116e85de20404db0c64a75b72afffa90e914b2e7c5e7141c445e03fd6702c3da986e23ea554b87c1b6feb58e2423a8588ec17b9a635f3fa0ab2c0b341bb0cf5@foo.com:30303": missing IP address
Activity