DHCP多作用域配置案例

2021-09-21 09:53:46 字數 2038 閱讀 2557

dhcp伺服器搭建案例(多作用域環境)

一、案例環境

dhcp主伺服器:   dhcp.example.com  192.168.32.31  gateway:192.168.32.254

中繼**伺服器1:d1.example.com    192.168.40.31  gateway:192.168.40.254

中繼**伺服器2:d2.example.com    192.9.210.31   gateway: 192.9.210.254

二、dhcp主伺服器配置

1、安裝和啟動

[root@dhcp ~]#yum install dhcp.i386

[root@dhcp ~]#yum install dhcp-devel.i386

[root@dhcp ~]#chkconfig dhcpd on

[root@dhcp ~]#service dhcpd start

2、dhcp服務配置

[root@dhcp ~]#vi /etc/sysconfig/dhcpd

dhcpdargs=eth0      #指定接收dhcp客戶端dhcpdiscover包的網路介面

[root@dhcp ~]#cp /usr/share/doc/dhcp*/dhcpd.conf.sample /etc/dhcpd.conf

[root@dhcp ~]#vi /etc/dhcpd.conf

#全域性引數配置

option domain-name-servers      192.168.32.31;

option time-offset              -18000; # eastern standard time

#       option ntp-servers              192.168.1.1;

#       option netbios-name-servers     192.168.1.1;

# --- selects point-to-point node (default is hybrid). don't change this unless

# -- you understand netbios very well

#       option netbios-node-type 2;

ddns-update-style interim;  

#指定支援dns動態更新方式,none:不支援、interim:dns互動模式、ad-doc:特殊dns更新方式,預設interim或none,無需修改

ignore client-updates;

#網段192.168.32.0/24的dhcp引數配置

subnet 192.168.32.0 netmask 255.255.255.0

shared-network trains

subnet 192.168.40.0 netmask 255.255.255.0

}                                         

三、中繼**伺服器配置

1、安裝和啟動(d1和d2配置完全相同)

[root@d1 ~]#yum install dhcp.i386

[root@d1 ~]#yum install dhcp-devel.i386

[root@d1 ~]#chkconfig dhcrelay on

[root@d1 ~]#service dhcrelay start

2、中繼**服務配置

[root@d1 ~]#vi /etc/sysconfig/dhcrelay

inte***ces=eth0  #指定接收dhcp客戶端dhcpdiscover包的網路介面

dhcpservers=「192.168.32.31」 #指定dhcp伺服器

[root@d1 ~]#vi /etc/sysctl.conf

net.ipv4.ip_forward = 1   #開啟ip資料**

[root@d1 ~]#sysctl -p

四、客戶端配置

這個大家都會,就不再多說了。

slot多作用域 vue vue slot

scoped slot 作用域插槽 問題 1.什麼是作用域插槽 它的作用是什麼?要解決的是什麼問題?特性是什麼?應用場景是什麼?獲取子元件slot中攜帶的資料 使用步驟 1 我們可以在標籤元素上使用v bind指令繫結乙個特性 屬性 如 v bind my prop,也被稱為插槽prop 2 在父元...

(十八)作用域 作用域鏈 查詢變數案例分析

作用域由建立時候決定的並不是執行時候 輸出是函式本身 區域性作用域到全劇作用域查詢 var obj console.log obj.fn undefined var a 2 function fn fn a is undefined 此處存在變數提公升 但是變數宣告之後並沒有直接賦值而是undefi...

華為DHCP中繼作用及配置教學

首先咱們要先了解一下dhcp中繼的作用 在大型的網路中,可能會存在多個網段。dhcp客戶機通過網路廣播訊息獲得dhcp伺服器的響應後得到ip位址。但廣播訊息是不能跨越網段的。因此,如果dhcp客戶機和伺服器在不同的網段內,客戶機還能不能向伺服器申請ip位址呢?這就要用到dhcp中繼 dhcp中繼 實...