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

# group and host declarations config

# subnet4 declaration
subnet 10.5.5.0 netmask 255.255.255.224 {
    range 10.5.5.5 10.5.5.10;
}

# host declaration
host test1 {
    hardware ethernet 00:0B:FD:32:E6:FA;
    fixed-address 10.5.5.1, 10.10.10.10;
}

# group declaration
group "foobar" {
    default-lease-time 1800;
    option domain-search "example.com", "example.org";
    next-server 192.168.0.1;

    # host declarations
    host test2 {
        hardware ethernet 00:07:0E:36:48:19;
        fixed-address 10.5.5.2;
	option domain-name "example.com";
	option domain-search "example.com", "com";
    }

    host test3 {
        hardware fddi 00:07:0E:36:48:19;
        fixed-address 10.10.10.1;
	default-lease-time 3600;
    }
}

subnet 10.10.10.0 netmask 255.255.255.224 { }