Skip to content

Commit b04fc54

Browse files
dvdksnclaude
andcommitted
Fix missing --ipv6 flag in IPVLAN L3 dual-stack example
The L3 dual-stack IPVLAN example omitted the --ipv6 flag when creating the network, causing Docker to default to EnableIPv6: false despite an IPv6 subnet being specified. The L2 example already includes this flag. Fixes #19337 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 6b1ebe4 commit b04fc54

File tree

1 file changed

+1
-1
lines changed
  • content/manuals/engine/network/drivers

1 file changed

+1
-1
lines changed

content/manuals/engine/network/drivers/ipvlan.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,7 @@ in order to forward broadcast and multicast packets.
534534
$ docker network create -d ipvlan \
535535
--subnet=192.168.110.0/24 \
536536
--subnet=192.168.112.0/24 \
537-
--subnet=2001:db8:abc6::/64 \
537+
--ipv6 --subnet=2001:db8:abc6::/64 \
538538
-o parent=eth0 \
539539
-o ipvlan_mode=l3 ipnet110
540540

0 commit comments

Comments
 (0)