Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clarify DAL node networking, just covering the basics #475

Merged
merged 1 commit into from
Nov 28, 2024
Merged
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
6 changes: 3 additions & 3 deletions docs/tutorials/join-dal-baker/run-dal-node.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: "Step 3: Run an Octez DAL node"
authors: Tezos core developers, Tim McMackin
last_update:
date: 18 September 2024
date: 27 November 2024
---

The DAL node is responsible for temporarily storing data and providing it to bakers and Smart Rollups.
Expand All @@ -26,8 +26,8 @@ For example, this command initializes the DAL node with the address of a local `

This, too, may take some time to launch the first time because it needs to generate a new identity file, this time for the DAL network.

To set the address and port that the node listens on, pass the `--net-addr` argument.
By default, it listens on port 11732 on all available network interfaces, equivalent to `--net-addr 0.0.0.0:11732`.
If you need to change the address or port that the DAL node listens for connections to other nodes on, pass the `--public-addr` argument.
By default, it listens on port 11732 on all available network interfaces, equivalent to `--public-addr 0.0.0.0:11732`.

1. Verify that the DAL node is connected to the DAL network by running this command:

Expand Down
Loading