dhcp 配置文件详解
ddns-update-style none; #配置DHCP-DNS 互动更新模式
ignore client-updates; #忽略客户端更新此参数只在服务器端使用
next-server 10.5.5.120; #设置服务器从引导文件中装如主机名,应用于无盘工作站
option domain-name "example.org"; #为客户端指明DNS名字
option domain-name-servers ns1.example.org, ns2.example.org; #为客户端指明DNS服务器IP地址
default-lease-time 600; #IP租约时间,单位为秒
max-lease-time 7200; #最长租赁时间,单位为秒
allow booting; #响应激活查询
allow bootp; #响应使用者查询
log-facility local7;
filename “pxelinux.0” ; #开始启动文件的名称,应用于无盘工作站
subnet 10.5.5.0 netmask 255.255.255.224 {
range dynamic-bootp 10.5.5.26 10.5.5.30; #ip地址池
option domain-name-servers ns1.internal.example.org;
option domain-name "internal.example.org";
option routers 10.5.5.1; # 为客户端设定默认网关
option broadcast-address 10.5.5.31; #为客户端设定广播地址
default-lease-time 600;
max-lease-time 7200;
}
host passacaglia { #为特定的网卡,配置ip
hardware ethernet 0:0:c0:5d:bd:95; #指定网卡接口类型和MAC地址
fixed-address 10.5.5.110; #分配给客户端一个固定的地址
server-name "toccata.fugue.com";
}
}
原文地址:http://blog.51cto.com/pizining/2058692
时间: 2024-10-09 00:43:16