Setting Options 66 and 67 for ISC DHCP Server

How to set Option 66 and Option 67 for DHCP in isc-dhcp-server?

  • 066 Boot Server Host Name
  • 067 Bootfile Name
3

2 Answers

I should edit dhcpd.conf file

nano -w /etc/dhcp/dhcpd.conf

and 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.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like