共计 1013 个字符,预计需要花费 3 分钟才能阅读完成。
实验环境:CentOS 7.4 版本
[root@test ~]# cat /etc/RedHat-release
[root@test ~]# uname -r
[root@test ~]# systemctl stop firewalld
[root@test ~]# setenforce 0
[root@test ~]# ifconfig
[root@test ~]# yum install -y dhcpd
[root@test ~]# rpm -qc dhcp
[root@test ~]# vi /etc/dhcp/dhcpd.conf
添加以下内容:
subnet 192.168.80.0 netmask 255.255.255.0 {//subnet + 网关 netmask+ 子网掩码
range 192.168.80.100 192.168.80.200; // 设置用于分配的 ip 地址池
option routers 192.168.80.100; // 设置客户机的默认网关
option domain-name-servers 2.2.2.2, 3.3.3.3; // 设置 DNS 服务器地址
}
[root@test ~]# systemctl restart dhcpd
[root@test ~]# netstat -anpu | grep dhcp
————- 测试 —————————-
ipconfig /release —- 解放 Ip 地址池
ipconfig /renew —- 重建
之前我们设置用于分配的 ip 地址池 192.168.80.100 到 192.168.80.200
设置客户机的默认网关 192.168.80.100,
所以 windows 7 划分到 192.168.80.101,这说明试验成功。
第二部分:给 Windows 7 虚拟机分配指定 IP 地址
[root@test ~]# cat /var/lib/dhcpd/dhcpd.leases
如图,这是刚才 windows 7 虚拟机分配到的租约信息
[root@test ~]# vi /etc/dhcp/dhcpd.conf
添加以下内容:
host boss {// 主机声明
hardware ethernet + 指定要分配的 pc 的 MAC 地址 // 指定其它 pc 的 mac 地址
fixed-address 192.168.80.188; // 固定地址
}
————- 测试 ——–
ipconfig /release
ipconfig /renew
如图,// 显示分配到的 IP 地
: