Skip to content

Daemon configuration file - default-address-pools example fix #11868

Description

@kbendl

File: engine/reference/commandline/dockerd.md

Please change the example configuration section for default-address-pools to use valid CIDR addresses:
Is:

"default-address-pools": [
  {
    "base": "172.80.0.0/16",
    "size": 24
  },
  {
   "base": "172.90.0.0/16",
    "size": 24
  }
],

Should use valid 172.16.0.0/12 CIDR address, so as not to collide with valid routing.

An example with valid CIDRs:

"default-address-pools": [
  {
    "base": "172.30.0.0/16",
    "size": 24
  },
  {
   "base": "172.31.0.0/16",
    "size": 24
  }
],

Thanks!

refs:

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions