Document dual-stack support and :: bind-ip default#303
Open
tillrohrmann wants to merge 2 commits into
Open
Conversation
Update the networking docs to reflect the default bind-ip change from 0.0.0.0 to :: in Restate Server 1.7.0, which enables dual-stack (IPv6 and IPv4) listening and IPv6-only environments. Addresses #286. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
tillrohrmann
commented
Jun 4, 2026
| bind-address = "192.168.1.10:8080" | ||
| ``` | ||
|
|
||
| ### Dual-Stack and IPv6 |
Contributor
Author
There was a problem hiding this comment.
Maybe this is a bit too detailed in terms of what's interesting to users. @gvdongen do you have a recommendation for whether to keep or remove this section?
Collaborator
There was a problem hiding this comment.
You could put it as a collapsed section and call it "Advanced: Dual-stack and IPv6" and put it at the bottom of the section.
You can collapse it with <Accordion title="..."> ... </Accordion>
Explain that :: accepts IPv4 connections as IPv4-mapped IPv6 addresses when the IPv6 stack is present, and document that a kernel with IPv6 disabled fails to bind (no automatic fallback), requiring bind-ip = 0.0.0.0. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Updates the networking documentation to reflect dual-stack support, addressing #286 (which tracks restatedev/restate#4529).
Restate Server 1.7.0 changed the default
bind-ipfrom0.0.0.0(IPv4 only) to::(IPv6 unspecified), which creates a dual-stack socket accepting both IPv4 and IPv6 connections on most systems.Changes to
docs/server/networking.mdx:bind-ipdefault to::in the global options table and per-service text.net.ipv6.bindv6only=1edge case, and how to restore IPv4-only behavior.[::]:....--bind-ip=::.Details verified against the restate source (
crates/types/src/net/address.rsdefault::) and the 4529 release note. The change ships in v1.7.0.Note: this targets
restate-1.7, so merging will not auto-close #286 (that only happens on merge tomain).🤖 Generated with Claude Code