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 permit authenticated client config
  # empty configs are not accepted by Kea
  /// This configuration declares some subnets but has no interfaces-config
  /// Reference Kea #245
  "Dhcp6": {
    "valid-lifetime": 1800,
    "subnet6": [
      # subnet declaration
      {
        "id": 1,
        "subnet": "2001::/64",
        "pools": [
          # pool declaration
          {
            # avoid empty pool
            "pool": "2001::100 - 2001::200",
            /// From:
            ///   deny unauthenticated clients
            /// [un]authenticated-clients is not supported by ISC DHCP and Kea
            "client-class": "gen#_AND_#!ALL#"
          }
        ]
      }
    ],
    "client-classes": [
      {
        "name": "gen#_AND_#!ALL#",
        "test": "not member('ALL')"
      }
    ]
  }
}