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 subnet declaration config
  # parameter which will be changed in subnet
  /// This configuration declares some subnets but has no interfaces-config
  /// Reference Kea #245
  "Dhcp6": {
    "valid-lifetime": 1800,
    "subnet6": [
      # DHCPv4 subnet declaration
      {
        "id": 1,
        "subnet": "2001::/64",
        "pools": [
          # at least one pool is required
          {
            "pool": "2001::100 - 2001::200"
          }
        ],
        "option-data": [
          {
            "space": "dhcp6",
            "name": "domain-search",
            "code": 24,
//          "original-data": "\"example.com\", \"example.org\"",
            "data": "example.com, example.org"
          }
        ],
        "valid-lifetime": 3600,
        "pd-pools": [
          {
            "prefix": "2001:0:0:10::",
            "delegated-len": 64,
            "prefix-len": 60
          }
        ]
      }
    ]
  }
}