Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

{
  # DHCPv6 two subnets in shared-network declaration config
  # shared-network declaration
  "Dhcp6": {
    "interfaces-config": {
      "interfaces": [
        "en0"
      ]
    },
    /// Kea shared-networks are different, cf Kea #236
    "shared-networks": [
      {
        "name": "foobar",
        "subnet6": [
          # subnet declaration
          {
            "id": 1,
            "subnet": "2001::/64",
            "valid-lifetime": 3600,
            "pools": [
              {
                # pool
                "pool": "2001::1000 - 2001::2000"
              }
            ]
          },
          # second subnet declaration
          {
            "id": 2,
            "subnet": "2002::/64",
            "pd-pools": [
              {
                "prefix": "2001:0:0:10::",
                "delegated-len": 64,
                "prefix-len": 60
              }
            ]
          }
        ],
        "interface": "en0",
        "option-data": [
          # interface
          # option
          {
            "space": "dhcp6",
            "name": "domain-search",
            "code": 24,
//          "original-data": "\"example.com\", \"example.org\"",
            "data": "example.com, example.org"
          }
        ],
        "valid-lifetime": 1800
      }
    ]
  }
}