標籤:dhcp
環境centos6.5 ,centos6.6
安裝dhcp服務 :yum install dhcp* -y
編輯設定檔/etc/dhcp/dhcpd.conf我這裡直接copy覆蓋之前的內容:
ddns-update-style interim;
ignore client-updates;
next-server 192.168.77.168;
filename "pxelinux.0";
allow booting;
allow bootp;
subnet 192.168.77.0 netmask 255.255.255.0 {
# --- default gateway
option routers 192.168.77.1;
option subnet-mask 255.255.255.0;
# option nis-domain "domain.org";
# option domain-name "192.168.0.10";
# option domain-name-servers 192.168.0.11;
# option ntp-servers 192.168.1.1;
# option netbios-name-servers 192.168.1.1;
# --- Selects point-to-point node (default is hybrid). Don‘t change this unless
# -- you understand Netbios very well
# option netbios-node-type 2;
range dynamic-bootp 192.168.77.100 192.168.77.200;
host ns {
hardware ethernet 00:1a:a0:2b:38:81;
fixed-address 192.168.77.101;}
}
根據自己情況更改就ok了,,,重啟服務/etc/init.d/dhcpd restart 成功
用戶端更改static為dhcp就可以自動擷取了。。。
本文出自 “毛毛鴨” 部落格,請務必保留此出處http://woshitieren.blog.51cto.com/2466034/1666087
linux下dhcp服務搭建