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

# zone executable statement construct

# empty configs are not accepted by Kea
default-lease-time 1800;

# a zone
zone example.com {
    primary 10.5.5.1, 10.5.5.2;
    secondary 10.10.10.1;
    primary6 2001::1, 2001::2;
    secondary6 2002::1;
    key "mykey";
}

# a key;
key "mykey" {
    algorithm hmac-md5;
    secret "somekeydata";
}

# another key (with bind 8 semi-colon)
key example.com {
    algorithm aes-gmac.dreams;
};