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

{
  # DHCPv4 range config
  # subnet declaration
  /// This configuration declares some subnets but has no interfaces-config
  /// Reference Kea #245
  "Dhcp4": {
    "subnet4": [
      {
        "id": 1,
        "subnet": "10.5.5.0/27",
        "option-data": [
          # range declaration
          {
            "space": "dhcp4",
            "name": "domain-search",
            "code": 119,
//          "original-data": "\"example.com\", \"example.org\"",
            "data": "example.com, example.org"
          }
        ],
        "valid-lifetime": 1800,
        "pools": [
          {
            "pool": "10.5.5.5 - 10.5.5.10"
          }
        ]
      }
    ]
  }
}