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 pool config
  # subnet declaration
  /// This configuration declares some subnets but has no interfaces-config
  /// Reference Kea #245
  "Dhcp6": {
    "subnet6": [
      {
        "id": 1,
        "subnet": "2001::/64",
        /// default-valid-lifetime moved from an internal pool scope
        "valid-lifetime": 1800,
        "pools": [
          # pool declaration
          {
            "option-data": [
              {
                "space": "dhcp6",
                "name": "domain-search",
                "code": 24,
//              "original-data": "\"example.com\", \"example.org\"",
                "data": "example.com, example.org"
              }
            ],
            "pool": "2001::100 - 2001::200"
          }
        ]
      }
    ]
  }
}