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 one-subnet shared-network declaration config

# shared-network declaration
shared-network "foobar" {
    # interface
    interface "en0";
    # option
    option dhcp6.domain-search "example.com", "example.org";
    # parameter
    default-lease-time 1800;
    # subnet declaration
    subnet6 2001::/64 {
        # redefined parameter
        default-lease-time 3600;
        # pool
        range6 2001::1000 2001::2000;
    }
    # tried another pool here but DHCPv6 pools are allowed only in subnets
}