Setting Options 66 and 67 for ISC DHCP Server
By James Williams
How to set Option 66 and Option 67 for DHCP in isc-dhcp-server?
- 066 Boot Server Host Name
- 067 Bootfile Name
2 Answers
I should edit dhcpd.conf file
nano -w /etc/dhcp/dhcpd.confand to add the following entries for activating the option 66 and 67.
#option 66
option tftp-server-name "w.x.y.z";
#option 67
option bootfile-name "test.cfg";Then to restart the DHCP Server.
sudo service isc-dhcp-server restart 1 man dhcpd.conf
next-server server-name; The next-server statement is used to specify the host address of the server from which the initial boot file (specified in the filename statement) is to be loaded. Server-name should be a numeric IP address or a domain name.