You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By default, pouch daemon configures the container network for IPv4 only. This feature which defines --enable-ipv6 flag will setup the bridge p0 with IPv6 link-local address fe80::1.
By default, containers that are created will only get a link-local IPv6 address. To assign globally routable IPv6 addresses to your containers you have to specify an IPv6 subnet to pick the addresses from. Set the IPv6 subnet via the --fixed-cidr-v6 parameter when starting pouch daemon:
Why you need it?
To compatible with IPv6 application
How it could be?
By default, pouch daemon configures the container network for IPv4 only. This feature which defines --enable-ipv6 flag will setup the bridge p0 with IPv6 link-local address fe80::1.
By default, containers that are created will only get a link-local IPv6 address. To assign globally routable IPv6 addresses to your containers you have to specify an IPv6 subnet to pick the addresses from. Set the IPv6 subnet via the --fixed-cidr-v6 parameter when starting pouch daemon:
pouchd --enable-ipv6 true --fixed-cidr-v6 2002:db8:1::1/64
Other related information
This section divides feature into several parts:
ipv6
andfixed-cidr-v6
into BridgeConfigipv6
andfixed-cidr-v6
into DaemonConfigThe text was updated successfully, but these errors were encountered: