1
2
3
4
5
6
7
8
9
10
11
12
13
|
[root@localhost ~]
# vi /etc/dhcp/dhcpd.conf
ddns-update-style interim;
ignore client-updates;
subnet 192.168.0.0 netmask 255.255.255.0 {
range dynamic-bootp192.168.0.200 192.168.0.210;
optionbroadcast-address 192.168.0.254;
option routers192.168.0.1;
optiondomain-name-servers 192.168.0.1;
default-lease-time600;
max-lease-
time
7200;
filename
"pxelinux.0"
;
next-server192.168.0.202;
}
|