DHCP server configuration example
For details on how to configure your DHCP server, please refer to the
manual for that software.
dhcpd.conf example with metadata channel subsets using ISC DHCP Server V3.
The following configuration could be used if the server does not support Vendor Encapsulated Options.
se-time 3600;
max-lease-time 7200;
option time-offset 0;
subnet 192.168.100.0 netmask 255.255.255.0 {
range 192.168.100.20 192.168.100.250;
option routers 192.168.100.10;
option option-128 "224.2.2.2:22222";
option option-132 "2,3";
option option-131 "2,3";
option option-133 "kreatv-splash_1500";
next-server 192.168.100.10;
filename "kreatv-bi_1500";
option vendor-encapsulated-options 01:02:32:33:02:02:32:33:16:04:C0:A8:64:0A:15:09:2F:31:39:30:30:2E:62:69:6E:14:0B:2F:73:70:6C:61:73:68:2E:62:69:6E;
# Option 01 = 0x01 (splash-protocol)
# 01:02:32:33
# 2,3
# Option 02 = 0x02 (kernel-protocol)
# 02:02:32:33
# 2,3
# Option 03 = 0x03 (bootloader-log)
# 03:15:31:39:32:2E:31:36:38:2E:31:30:30:2E:31:30:30:3A:31:39:39:39:37
# 1 9 2 . 1 6 8 . 1 0 0 . 1 0 0 : 1 9 9 9 7
# Option 22 = 0x16 (tftp-server-pool)
# 16:04:C0:A8:64:0A
# 192.168.100.10
# Option 21 = 0x15 (tftp-kernel-filename)
# 15:09:2F:31:39:30:30:2E:62:69:6E
# / 1 9 0 0 . b i n
# Option 20 = 0x14 (tftp-splash-filename)
# 14:0B:2F:73:70:6C:61:73:68:2E:62:69:6E
# / s p l a s h . b i n
}