dhcp的简单配置


#------------------------------------------------------------------------------------------------------dhcp的简单配置

所需包

dhcp-3.0pl1-23
dhcp-devel-3.0pl1-23
安装包使用的命令
rpm -ivh [路径][包名]

安装完包后,可以使用locate或者whereis命令查找dhcpd.conf.sample的路径
之后使用cp [路径]dhcpd.conf.sample /var/dhcpd.conf
使用vi dhcpd.conf对此文件进行如下修改
修改完后通过service dhcpd start 来启动dhcpd服务
此时服务器端已配置完成



#dhcpd.conf
ddns-update-style interim;
ignore client-updates;

subnet 192.168.58.0 netmask 255.255.255.0 {
#将子网改为192.168.58.0 掩码为255.255.255.0


# --- default gateway

#--------------------------------须修改start
option routers 192.168.58.11;#默认路由
option subnet-mask 255.255.255.0;
option broadcast-address 192.168.58.255;#广播地址
option domain-name-servers 192.168.58.11;#域名服务器地址
range dynamic-bootp 192.168.58.128 192.168.58.254;#分配地址的范围
#--------------------------------须修改end

#--------------------------------须看情况修改start 
option nis-domain "domain.org";
option domain-name "domain.org";
default-lease-time 21600;
max-lease-time 43200;
option time-offset -18000; # Eastern Standard Time
#--------------------------------须看情况修改end

# 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;



# we want the nameserver to appear at a fixed address
host ns {
next-server marvin.redhat.com;
hardware ethernet 12:34:56:78:AB:CD;
fixed-address 207.175.42.254;

}


#-------------------------------------------------------------------------------------------------------至此服务器端已经配置完成

你可能感兴趣的:(dhcp的简单配置)