如何在isc-dhcp-服务器中为DHCP设置选项66和选项67?
发布于 2017-01-22 14:11:19
我应该编辑dhcpd.conf文件
nano -w /etc/dhcp/dhcpd.conf并添加以下条目,以激活选项66和67。
#option 66
option tftp-server-name "w.x.y.z";
#option 67
option bootfile-name "test.cfg";然后重新启动DHCP服务器。
sudo service isc-dhcp-server restart发布于 2020-04-01 14:03:25
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.https://askubuntu.com/questions/874648
复制相似问题