共计 2047 个字符,预计需要花费 6 分钟才能阅读完成。
Linux 可以做为 DHCP 服务器来使用。
dhcp 程序在 linux 中就叫做 dhcp*,* 代表版本号
Step1: 安装 DHCP 服务
rpm -q dhcp // 查看服务器是否安装了 dhcp 服务
yum install dhcp // 安装 dhcp 服务
Step2: 配置 DHCP 服务
rpm -ql dhcp 查看 DHCP 生成的配置文件
dhcp 包括 dhcpd 和 dhcprelay 两个服务,做为 dhcp 服务器,我们只需配置 dhcpd 即可。
dhcp 服务配置文件:/etc/dhcpd.conf // 但在安装后 DHCP 后此配置文件中默认没有内容
将 /usr/share/doc/dhcp*/dhcpd.conf.sample 拷贝到 /etc/ 下修改文件名为 dhcpd.conf
配置文件如下:
ddns-update-style interim;
ignore client-updates;
subnet 192.168.0.0 netmask 255.255.255.0 {// 要分配的地址的子网
# — default gateway
option routers 192.168.0.1; // 默认网关
option subnet-mask 255.255.255.0; // 掩码
option nis-domain “domain.org”;
option domain-name “domain.org”; // 域名
option domain-name-servers 192.168.1.1; //DNS 服务器
option time-offset -18000; # Eastern Standard Time
# option ntp-servers 192.168.1.1; //NTP 服务器
# option netbios-name-servers 192.168.1.1; //wins 服务器
# — 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.0.128 192.168.0.254;
default-lease-time 21600; // 租期
max-lease-time 43200;
# we want the nameserver to appear at a fixed address
host ns {// 为某个 MAC 分配固定地址
next-server marvin.RedHat.com; // 指定文件服务器,做 PXE 时有用
hardware ethernet 12:34:56:78:AB:CD;
fixed-address 207.175.42.254;
}
}
Step3: 重启 DHCP 服务
/etc/init.d/dhcpd restart
启动 dhcpd:[确定]
至此,完成配置。
注意:如果配置的 DHCP 地址不在服务器接口,会报错,无法启动 DHCP 服务。
查看 DHCP 地址的分配:
/var/lib/dhcpd/dhcpd.lease 查看已经分配出去的 IP 地址信息
Linux 系统下构建 DHCP 服务器 http://www.linuxidc.com/Linux/2013-06/86531.htm
DHCP 服务的搭建 http://www.linuxidc.com/Linux/2016-06/132395.htm
在 Debian Linux 上安装配置 ISC DHCP 服务器 http://www.linuxidc.com/Linux/2015-12/126765.htm
CentOS 下配置主从 DNS 服务器以及 DHCP 下的 DDNS http://www.linuxidc.com/Linux/2013-06/85634.htm
SUSE Linux 11 pxe+DHCP+tftp+ftp 无人值守安装 http://www.linuxidc.com/Linux/2013-06/85481.htm
Linux 下架设 DHCP 服务器过程及 3 种测试 http://www.linuxidc.com/Linux/2013-05/84832.htm
Linux 上一步一步实现 DHCP 服务器 http://www.linuxidc.com/Linux/2013-04/82244.htm
CentOS 6.5 系统下构建 DHCP 服务器 http://www.linuxidc.com/Linux/2014-06/103203.htm
Linux 下 DHCP 服务器的搭建(RHEL5.2)http://www.linuxidc.com/Linux/2014-11/108899.htm
本文永久更新链接地址:http://www.linuxidc.com/Linux/2016-07/132920.htm