参考官方文件
我的配置dhcpd.conf
default-lease-time 86400;
max-lease-time 604800;
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;
subnet 10.0.0.0 netmask 255.255.255.0 {
## dhcp start and end IP range ##
range 10.0.0.20 10.0.0.90;
option subnet-mask 255.255.255.0; ## subnet
option broadcast-address 10.0.0.255; ## broadcast
option routers 10.0.0.1; ## router IP
host RH_eth0 {
hardware ethernet 00:0c:29:c7:4b:f5;
fixed-address 10.0.0.100;
}
host kali {
hardware ethernet 00:0c:29:8a:d6:20;
fixed-address 10.0.0.150;
}
host oter {
hardware ethernet 52:54:00:9f:ea:3f;
fixed-address 10.0.0.200;
}
}
VMware环境
客户机与主机都设置为仅主机模式,并且不使用DHCP服务,避免实验时候混乱
检查安装包
rpm -qa | grep 'dhcp'
如果没有,请使用yum命令安装
yum -y install dhcp*
如果yum命令不能使用,多半是你没有注册订阅(RH)
参考这个链接链接: https://www.mf8.biz/rhel-dev-license/.
更改配置文件
vim /etc/dhcp/dhcpd.conf
配置规则 参考
/usr/share/doc/dhcp-version_number/dhcpd.conf.exampl
如果觉得复杂,可以直接使用的我配置文件,记得特殊规则需要修改网卡MAC口红
配置完后保存退出
尝试:
systemctl start dhcpd.service
错误1:
按照提示查看错误
大概意思是没有侦听网卡
解决办法:
cp /usr/lib/systemd/system/dhcpd.service /etc/systemd/system/
vim /etc/systemd/system/dhcpd.service
在后面添加上你侦听的网卡名称ens33 或 eth0
添加侦听端口后
systemctl restart dhcpd
还有错误
按照提示
systemctl daemon-reload
无提示,说明成功了
systemctl restart dhcpd
重启一下
无错误提示
点击连接
连接成功,验证信息
与配置文件信息匹配
服务器连接,验证信息
与配置文件信息匹配
修改配置文件,验证非特殊mac 的ip