e股脑电脑教程网
  • 首 页
  • 操作系统
  • 应用软件
  • 下载工具
  • 影音视频
  • 办公软件
  • 媒体制作
  • 网站建设
  • 平面设计
  • 数据库
  • 程序开发
  • 视频教程
编辑推荐: | 文章搜索:
您现在的位置: e股脑 >> 操作系统 >> FreeBSD教程 >> isc dhcpd 3.0 快速安装实例 . --保存 >> 教程正文
 
教程搜索
 
 
相关教程
  • 开始接触FREEBSD
  • FreeBSD下Console功能设置
  • 达到 ipnat 180万的极致点
  • FreeBSD内存管理系统理解(一)
  • How do I use a console resolution o
  • apache压缩技术与配置
  • OpenBSD 内核 PPPoE 补丁
  • FreeBSD代码同步手记
  • port安装php+apche+mysql
  • ARP地址解析协议详解及其漏洞分析. --
  • isc dhcpd 3.0 快速安装实例 . --保存
  • 也做一块网卡多个IP的配置
  • RH下的透明代理及带宽分配
  • freebsd安装笔记
  • 转《善加利用與管理你的ports / packa
  • Apache +tomcat安装配置
 
 

图文教程


  • Windows抢了谁的饭碗 非主流操作系统To

  • 地球还是火星 平常心看“非主流”

  • 综合运用Office 2007批量制作奖状

  • 没有系统盘如何才能修复受损系统?

  • 巧妙运用Excel中边界的附加功能!
 
 
赞 助 商
 
 
isc dhcpd 3.0 快速安装实例 . --保存
  • 来源:e股脑
  • 点击次数:
  • 更新时间:2007-8-17

############# isc-dhcpd 3.0 ##########

isc dhcpd 3.0 快速安装实例

############# isc-dhcpd 3.0 ##########

isc dhcpd 3.0 快速安装实例

阿土 Aborigen Yin

2003.06.19

目的:

为内网提供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

1 2 下一页
  • 上一篇教程: 也做一块网卡多个IP的配置
  • 下一篇教程: ARP地址解析协议详解及其漏洞分析. --保存
  •  

    关于本站 | 广告联系 | 版权声明 | 使用帮助

    Copyright © 2004-2008 www.egunao.com All rights reserved.