庞大资源库的计算机教程网站!
设为首页
加入收藏
总编信箱
投稿或申请专栏请先 [登 陆]
首页 操作系统 程序设计 图形图像 媒体动画 机械电子 WEB开发 数 据 库 办公系列 路由技术 网络原理 网络应用
认证考试 安全技术
首页>操作系统>FreeBSD>应用技术>正文
资料搜索
Google搜索
Google
返回上级列表

推荐文章

快速保存网页中所有图片的方法
Windows中让光驱巧妙“隐身”技
防范非法用户入侵Win 2000/XP系
两款比较典型的ASP木马防范方法
有关表格边框的css语法整理
Windows XP中可以被禁用的服务
SQL Server导出导入数据方法
Javascript所有对象的属性的获
网页(HTML)中的特殊字符
与篮球共舞,尽显模式本色
QQ病毒的手工清除方法
Photoshop为极品美女打造性感睫
天衣无缝:IIS与PHP水火也相容
SQL Server存储过程编写和优化

isc dhcpd 3.0 快速安装实例

 作者:阿土    日期:2005-4-16
字号选择〖 〗/ 双击滚屏 单击停止   
目的:
为内网提供dhcp服务,每个网卡一个网段;
平台:
FreeBSD 5.1 + ports

#程序安装
cd /data/usr/ports/net/isc-dhcp3
make clean install clean

###配置
#/usr/local/etc/dhcpd.conf.sample 是个很好的参考文件;

###########
#注意:一下配置的多个网段,分别对应服务器上多个网卡的地址段,而不是单一网卡上的多个地址(address alias 地址别名);
#如果你有某网卡设置多个地址,而配置文件中分别给这些网段设置了subnet(这是很多人所谓的”多网段dhcp地址分配“),那么启动
#dhcpd时,会收到如下错误,一般是发送到/var/log/messages:
#Jun 19 14:49:14 mail dhcpd: Interface fxp1 matches multiple shared networks
#
##############

#vi /usr/local/etc/dhcpd.conf
#begin of dhcpd.conf
# dhcpd.conf
server-identifier mail.oss4e.org;
option domain-name "oss4e.org";
option domain-name-servers 202.96.134.133;

default-lease-time 600;
max-lease-time 7200;

#重要,没有这一行不能启动dhcpd。
ddns-update-style none;

# If this DHCP server is the official DHCP server for the local
# network, the authoritative directive should be uncommented.
authoritative;

# Use this to send dhcp log messages to a different log file (you also
# have to hack syslog.conf to complete the redirection).
log-facility local7;

# Hosts which require special configuration options can be listed in
# host statements. If no address is specified, the address will be
# allocated dynamically (if possible), but the host-specific information
# will still come from the host declaration.

# Fixed IP addresses can also be specified for hosts. These addresses
# should not also be listed as being available for dynamic assignment.
# Hosts for which fixed IP addresses have been specified can boot using
# BOOTP or DHCP. Hosts for which no fixed address is specified can only
# be booted with DHCP, unless there is an address range on the subnet
# to which a BOOTP client is connected which has the dynamic-bootp flag
# set.
#host fantasia {
# hardware ethernet 08:00:07:26:c0:a5;
# fixed-address fantasia.fugue.com;
#}
#group优先于subnet。
group {
# PXE-specific configuration directives...

#next-server 172.16.100.249;
#filename "/pxelinux.0";

# You need an entry like this for every host
# unless you're using dynamic addresses

host temp {
hardware ethernet 00:08:c7:08:68:2b;
#172.16.100.189 - 172.16.100.199
fixed-address 172.16.100.189;
option host-name "temp.oss4e.org";
next-server 172.16.230.254;
filename "/pxelinux.0";
}
}

#可以为不同的网段分配ip;

#subnet 172.16.100.0 netmask 255.255.255.0 {
# server-identifier 172.16.100.245;
# range dynamic-bootp 172.16.100.139 172.16.100.187;
# option domain-name-servers 172.16.100.254;
# option domain-name "oss4e.org";
# option routers 172.16.100.254;
# option broadcast-address 172.16.100.255;
# default-lease-time 6000;
# max-lease-time 72000;

# allow booting;
# allow bootp;

# next-server 172.16.100.245;
# filename "/pxelinux.0";
#}

subnet 172.16.250.0 netmask 255.255.255.0 {
server-identifier 172.16.250.254;
range dynamic-bootp 172.16.250.139 172.16.250.187;
option domain-name-servers 172.16.250.254;
option domain-name "oss4e.org";
option routers 172.16.250.254;
option broadcast-address 172.16.250.255;
default-lease-time 6000;
max-lease-time 72000;

allow booting;
allow bootp;

next-server 172.16.250.254;
filename "/pxelinux.0";
}

###
subnet 172.16.230.0 netmask 255.255.255.0 {
server-identifier 172.16.230.254;
range dynamic-bootp 172.16.230.139 172.16.230.187;
option domain-name-servers 172.16.230.254;
option domain-name "oss4e.org";
option routers 172.16.230.254;
option broadcast-address 172.16.230.255;
default-lease-time 6000;
max-lease-time 72000;

allow booting;
allow bootp;

next-server 172.16.230.254;
filename "/pxelinux.0";
}

#subnet 192.168.0.0 netmask 255.255.255.0 {
# server-identifier 192.168.0.254;
# range dynamic-bootp 192.168.0.139 192.168.0.187;
# option domain-name-servers 192.168.0.254;
# option domain-name "websofts.com";
# option routers 192.168.0.254;
# option broadcast-address 192.168.0.255;
# default-lease-time 6000;
# max-lease-time 72000;

# #allow booting;
# #allow bootp;

# #next-server 192.168.0.254;
# #filename "/pxelinux.0";
#}

#end of dhcpd.conf

cp -p /usr/local/etc/rc.d/isc-dhcpd.sh.sample /usr/local/etc/rc.d/isc-dhcpd.sh
###end
上一篇:利用IPFW实现限制局域网使用QQ    下一篇:FreeBSD 5.x 中 gbfs 的修正,及安装方法  
[发送给好友]  [关闭窗口]  [返回顶部]   转载请注明来源:www.it00.com   
特别声明: 本站除部分特别声明禁止转载的专稿外的其他文章可以自由转载,但请务必注明出处和原始作者。文章版权归文章原始作者所有。对于被本站转载文章的个人和网站,我们表示深深的谢意。如果本站转载的文章有版权问题请联系编辑人员,我们尽快予以更正。
责任编辑: 原点 投稿作者: 阿土
信息来源: 网络 录入时间: 2005-4-16
关于我们 - 广告服务 - 版权申明 - 网站地图 - 联系方式 - 总编信箱 - 会员投稿