Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions docs/base-chain/node-operators/run-a-base-node.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,19 @@ If utilizing Amazon Elastic Block Store (EBS), ensure timing buffered disk reads
</Note>


### Networking

Ensure the following ports are accessible (not blocked by firewall) for peer discovery and sync:

| Port | Protocol | Purpose |
|------|----------|---------|
| `30303` | TCP/UDP | P2P Discovery (discv4) & RLPx |
| `9222` | TCP/UDP | Reth Discovery v5 (discv5) |

<Note>
Port `9222` is critical for Reth peer discovery. If this port is blocked, your node may have difficulty finding peers and syncing.
</Note>

### Docker

This tutorial assumes you are familiar with [Docker](https://www.docker.com/) and have it running on your machine.
Expand Down
2 changes: 1 addition & 1 deletion docs/base-chain/node-operators/troubleshooting.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ Refer to the [Snapshots](/base-chain/node-operators/snapshots) guide for the cor
- **Check**: Are the `--http.addr` and `--ws.addr` flags set to `0.0.0.0` in the client config/entrypoint to allow external connections (within the Docker network)?

- **Issue**: Node has low peer count.
- **Check**: P2P port (default `30303`) accessibility. Is it blocked by a firewall on the host or network?
- **Check**: P2P port accessibility. Ensure `30303` (TCP/UDP) and `9222` (TCP/UDP for Reth discv5) are not blocked by a firewall on the host or network.
- **Check**: Node logs for P2P errors.
- **Action**: If behind NAT, configure the `--nat=extip:<your-ip>` flag via `ADDITIONAL_ARGS` in the `.env` file (see [Advanced Configuration](/base-chain/node-operators/run-a-base-node#improving-peer-connectivity)).

Expand Down