首页  ·  知识 ·  基础设施
linuxDHCP的安装和配置
佚名  本站原创  数据中心  编辑:dezai  图片来源:网络
Linux作为DHCP服务器而windows95/98作为DHCP客户。Linux也可以作为DHCP客户,即你要安装dhcpcdrpm软件包,Linux作为DHCP服务
Linux作为DHCP服务器而windows 95/98作为DHCP客户。 
Linux也可以作为DHCP客户,即你要安装dhcpcd rpm 软件包 ,Linux作为DHCP服务器, 
只需要安装dhcpd rpm 包 

一.DHCP服务器工作的前提条件: 
为了使DHCP服务器为windows机器服务,你可能需要创建一个到地址255.255.255.255 
的路由,加这条路由命令到/etc/rc.d/rc.local使得每次启动后自动运行。 
#route add -host 255.255.255.255 dev eth0 
如果报告错误消息: 
255.255.255.255: Unkown host 
试着加下面的入口到/etc/hosts文件 
255.255.255.255 dhcp, then try: 
#route add -host dhcp dev eth0 


二.DHCPd后台程序总是读取配置文件/etc/dhcpd.conf, 下面给出一个DHCP配置文件的例子: 
#Sample /etc/dhcpd.conf 
default-lease-time 1200; 
max-lease-time 9200; 
option subnet-mask 255.255.255.0; 
option broadcast-address 192.168.1.255; 
option routers 192.168.1.254; 
option domain-name-servers 192.168.1.1,192.168.1.2; 
option domain-name "mydomain.org"; 

subnet 192.168.1.0 netmask 255.255.255.0 { 
range 192.168.1.10 192.168.1.100; 
range 192.168.1.150 192.168.1.200; 

这将允许DHCP服务器分配两段地址范围给客户 192.168.1.10-100或者192.168.1.150-200 
如果客户不继续请求DHCP地址则1200秒后释放IP地址,否则最大允许租用的时间为9200秒。 
服务器发送下面的参数给DHCP客户机: 
用255.255.255.0作为子网掩码,用192.168.1.255作为广播地址,用192.168.1.254作为 
默认网关,用192.168.1.1 and 192.168.1.2作为DNS服务器 
如果你要为windows客户指定一个WINS服务器,你需要包括下面的选项到dhcpd.conf文件中: 
option netbios-name-servers 192.168.1.1; 

三.你也能为某块网卡指定固定的IP地址,无论何时,这块网卡将总是从DHCP服务器获得 
固定的IP地址:加下面的语句到/etc/dhcpd.conf: 

host haagen { 
hardware ethernet 08:00:2b:4c:59:23; 
fixed-address 192.168.1.222; 


也可连写为一行: 
host Jephe {hardware ethernet 00:a0:c9:a6:96:33;fixed-address 192.168.1.12;} 

你也可为某台机器指定不同的网关地址,名服务器等: 
host Jephe {hardware ethernet 00:a0:c9:a6:96:33;fixed-address 192.168.1.12;option 
routers 192.168.11.5;} 

四. 大多数情况下,DHCP的安装不创建一个dhcpd.leases 文件,在你启动DHCP服务器之前, 
你必须创建空文件 dhcpd.leases 

#touch /var/state/dhcp/dhcpd.leases 
为启动DHCP服务器,简单地打入 /usr/sbin/dhcpd 或者用#ntsysv把DHCP服务自动启动 

这将启动dhcpd在eth0设备上,如果你想在eth1设备上启动dhcpd,则 
#/usr/sbin/dhcpd eth1 

如果为了调试DHCP,则用#/usr/sbin/dhcpd -d -f 

五.两块网卡的情况: 
有时你需要在一台安装了两块网卡(作防火墙或网关)的机器上安装DHCP服务,下面的例子 
指出一台防火墙机器上的一种DHCP设置,因为对外的网卡(internet)不需要提供DHCP服务: 
因此这样设置如下: 
subnet 192.168.1.0 netmask 255.255.255.0 { 
range 192.168.1.2 192.168.1.4; 
default-lease-time 86400; 
max-lease-time 259200; 
option subnet-mask 255.255.255.0; 
option broadcast-address 192.168.1.255; 
option routers 192.168.1.254; 
option domain-name-servers 192.168.1.254; 

subnet 202.102.34.102 netmask 255.255.255.255 { 

六. FAQ 
a. 为MAC机器固定IP地址? 
当设置MAC机用DHCP功能获得IP地址后,如不知得到何地址,可在MAC机上发送一邮件出去, 
收信者可通过mail header检查发送者IP地址,而后ping 该IP地址再利用arp命令检查arp 
缓存中的该IP地址的对应物理地址。 
b. 若LAN上有windows机器装上了某DHCP功能的软件,如sygate, wingate之类,则可能 
其他windows客户会优先去寻找windows DHCP服务器,而不是Linux DHCP服务器 

参考材料: 
http://www.linuxgazette.com/issue48/pollman.html 


附录: 
在Redhat 5.2中的DHCP配置 (http://www.pcquest.com/linux/dhcp.asp ) 
Configuring DHCP And DNS Services 

Set up Linux to allocate IP address and act as a name server 

Setting up DHCP on Red Hat 

If your network has a large number of clients, manually configuring every machine 
with a static IP address is a tough job. The Dynamic Host Configuration Protocol 
(DHCP) lets you automatically assign an IP address to a machine on the network 
from a pool or range of IP addresses it has. 

To configure a DHCP server on your Linux machine, you need to create a file called 
dhcpd.conf in the /etc directory. This file contains all the information that the 
daemon needs while starting up. This file is in the following format (the line 
numbers are not part of the file, they're for the explanation that follows): 

subnet 192.168.1.0 netmask 255.255.255.0 { 
range 192.168.1.10 192.168.1.250; 
default-lease-time 86400; 
max-lease-time 259200; 
option subnet-mask 255.255.255.0; 
option broadcast-address 192.168.1.255; 
option routers 192.168.1.1; 
option domain-name-servers 192.168.1.1; 
option domain-name "abc.com"; 

Lets look at these lines a bit more closely. The first line specifies the (sub) 
network that the DHCP server is to manage or maintain. Within this network, we 
have to configure different parameters (written within the curly braces). 

The next line contains the range from which the server picks up IP addresses to 
allocate. The starting and ending IP addresses are entered here. Line 3 contains 
the default lease time. A lease is the amount of time that a particular machine 
can hold an IP address before having to renew the lease with the server. The value 
is given in number of seconds, so 86400 stands for one day. The next line, 
max-lease-time, specifies the maximum amount of time that a machine can hold on to 
a specific IP address. 

Then come other options that will also be transmitted to the machine. These include 
the subnet mask, the router, the domain name server, and the domain name. 

Once this is done, you need to create a file called dhcpd.leases, also in the 
/etc/ directory, which will contain information about which IP address has been 
allocated to which machine. Since all this will be done by the server, all you need 
to do is create a 0 byte file with the command, touch /etc/dhcpd.leases. 

The next step requires you to add a broadcast route. Do this by appending the line 
/sbin/route add -host 255.255.255.255 dev eth0 to /etc/rc.d/rc.local. 

Finally, make sure DHCP is started at bootup. You can do this by running Setup, 
choosing ntsysv, and enabling dhcpd. Restart the machine, by giving the command sync, 
followed by reboot. 

Your DHCP server will be up and running after the machine starts up. Any machine 
that logs on the network will receive an IP address and all other parameters 
automatically. If it's a Win 95 client, you can check all the settings by running 
winipcfg in the Run dialog box. 

There may be cases when you need to assign a particular machine the same IP address 
always. You can either hardwire the information in the computer or add the following 
lines to the dhcpd.conf file. 

host mynotebook { 
hardware ethernet 00:80:C8:85:B5:D2; 
fixed-address 192.168.1.20; 
option host-name "mynotebook"; 


This specifies the ethernet address, which will be unique, the IP address that will always 
be allocated to that machine, and a host name. 

With DHCP, the network administrator's nightmare of correctly setting up IP addresses 
on machines simply vanishes. You'll never need to manually configure another machine 
ever again. 
本文作者:佚名 来源:本站原创
CIO之家 www.ciozj.com 微信公众号:imciow
    >>频道首页  >>网站首页   纠错  >>投诉
版权声明:CIO之家尊重行业规范,每篇文章都注明有明确的作者和来源;CIO之家的原创文章,请转载时务必注明文章作者和来源;
延伸阅读
也许感兴趣的
我们推荐的
主题最新
看看其它的