温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

redhat7.3-dhcp和dhcp中继服务器配置

发布时间:2020-07-01 13:28:48 来源:网络 阅读:1881 作者:fxl风 栏目:建站服务器

1.设置host、firewald、selinux 

hostnamectl set-hostname fengxiaoli41.com

systemctl stop firewalld.service

systemctl disable firewalld.service 

setenforce 0

2.配置基本dhcp服务

yum install -y dhcp

vim /etc/dhcp/dhcpd.conf

#全局参数

option domain-name "fengxiaoli41.com";

option domain-name-servers dns.fengxiaoli41.com;

default-lease-time 600;

max-lease-time 7200;

authoritative;

log-facility local7;

#配置192.168.1.0网段动态获取

subnet 192.168.1.0 netmask 255.255.255.0 {

range dynamic-bootp 192.168.1.20 192.168.1.254;

option broadcast-address 192.168.1.255;

option routers 192.168.1.1;

}

#配置192.168.1.0网络给该mac分配固定ip

host feng {

#hardware ethernet MAC

fixed-address 192.168.1.5;

}

systemctl restart dhcpd

systemctl status dhcpd

-------------至此客户端可以获取动态和固定ip

3.中继服务器

vim /etc/dhcp/dhcpd.conf

#配置192.168.2.0dhcp中继网段(若没有中)

subnet 192.168.2.0 netmask 255.255.255.0 {

range dynamic-bootp 192.168.2.20 192.168.2.254;

option broadcast-address 192.168.2.255;

option routers 192.168.2.254;

}

cp /lib/systemd/system/dhcrelay.service /etc/systemd/system/

cd /etc/systemd/system/

vim dhcrelay.service

[Service]

ExecStart=/usr/sbin/dhcrelay -d --no-pid 192.168.1.10

4.重启服务

systemctl --system daemon-reload

systemctl restart dhcrelay.service

 注:配置之前先要保证dhcp服务器和中继服务器网络互通,dhcp服务器为192.168.1.0网段,中继服务器192.168.2.0网段。另外也可在dhcp服务器上添加两块网卡,将中继服务器与dhcp服务器配置在同一服务器上。

向AI问一下细节
推荐阅读:
  1. DHCP中继原理
  2. DHCP中继

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI