linux DHCP服务配置简要

DHCP,动态主机分配协议。

     redhat Linux下DHCP的安装包名称是dhcp-3.05-3.e15.i386.rpm
 
     安装好后的配置文件为/etc/dhcpd.conf
    默认配置文件没有任何配置,但是提供了模版可以复制。
   cp /usr/share/doc/dhcp-3.05/dhcpd.conf.sample /etc/dhcpd.conf
   
    安装复制后后对dhcpd.conf进行修改。
   俺自己的实验环境修改的效果是
 
 
ddns-update-style interim;
ignore client-updates;
subnet 192.168.7.0 netmask 255.255.255.0 {               #---------设置网络的网段和网关。
# --- default gateway
 option routers   192.168.7.1;                                        #--------网关
 option subnet-mask  255.255.255.0;                            #-------------掩码
 option nis-domain  "domain.org";                                 #----------nis名称
 option domain-name  "domain.org";                             #-----------域名 
 option domain-name-servers 202.96.134.133;            #----------------DNS
 option time-offset  -18000; # Eastern Standard Time
# 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.7.251 192.168.7.254;      #--------------地址池
 default-lease-time 21600;
 max-lease-time 43200;
 # we want the nameserver to appear at a fixed address
host ns {                                                                        #------------固定分配IP的主机。
  next-server marvin.redhat.com;
  hardware ethernet 12:34:56:78:AB:CD;
  fixed-address 207.175.42.254;
 }
}
 
 
 
其它一些时间参数默认就可以。也可以根据自己的实际需要修改。。。

你可能感兴趣的:(linux,安装,职场,配置文件,休闲)