I am trying to configure DHCP to use option 66 to provide a TFTP server to Sunray thin clients. The clients in a specific subnet must use a specific TFTP server so that they are served configuration specific to their subnet. Can I place the option in a subnet block as follows
subnet 192.168.1.128 netmask 255.255.255.128 {
# don't let clients modify their own A records
ignore client-updates;
# options
option subnet-mask 255.255.255.128;
option broadcast-address 192.168.1.255;
option domain-name "domain.com";
option domain-name-servers 192.168.3.55, 192.168.3.56;
option routers 192.168.1.129;
option 66 ip 192.168.16.21;
option ntp-servers 192.168.3.57;
option interface-mtu 1500;
ddns-domainname "dhcp.domain.com.";
ddns-rev-domainname "dhcp.in-addr.arpa.";
pool {
failover peer "dhcp-failover";
range 192.168.1.140 192.168.1.249;
}
}