日日操夜夜添-日日操影院-日日草夜夜操-日日干干-精品一区二区三区波多野结衣-精品一区二区三区高清免费不卡

公告:魔扣目錄網(wǎng)為廣大站長(zhǎng)提供免費(fèi)收錄網(wǎng)站服務(wù),提交前請(qǐng)做好本站友鏈:【 網(wǎng)站目錄:http://www.ylptlb.cn 】, 免友鏈快審服務(wù)(50元/站),

點(diǎn)擊這里在線咨詢(xún)客服
新站提交
  • 網(wǎng)站:51998
  • 待審:31
  • 小程序:12
  • 文章:1030137
  • 會(huì)員:747

同網(wǎng)段內(nèi)配置基于全局地址池的DHCP服務(wù)器示例

組網(wǎng)需求

如圖1所示,某企業(yè)有兩個(gè)處于同一網(wǎng)絡(luò)內(nèi)的辦公室,為了節(jié)省資源,兩個(gè)辦公室內(nèi)的主機(jī)由SwitchA作為DHCP服務(wù)器統(tǒng)一分配IP地址。

辦公室1所屬的網(wǎng)段為10.1.1.0/25,主機(jī)都加入VLAN10,辦公室1的主機(jī)只使用DNS服務(wù),不使用NetBIOS服務(wù),地址租期為10天;辦公室2所屬的網(wǎng)段為10.1.1.128/25,主機(jī)都加入VLAN20,辦公室2的主機(jī)使用DNS服務(wù)和NetBIOS服務(wù),地址租期為2天。

在SwitchA上配置全局地址池,并采取動(dòng)態(tài)地址分配方式為兩個(gè)辦公室的主機(jī)分配IP地址。

圖1 配置基于全局地址池的DHCP服務(wù)器組網(wǎng)圖

華為交換機(jī)配置基于全局地址池的DHCP服務(wù)器

 

配置思路

DHCP服務(wù)器的配置思路如下:

  1. 在SwitchA上創(chuàng)建兩個(gè)全局地址池,并配置各自的地址池相關(guān)屬性,實(shí)現(xiàn)根據(jù)不同需求,為辦公室1和辦公室2動(dòng)態(tài)分配地址。
  2. 在SwitchA上配置VLANIF接口下本地DHCP服務(wù)器的地址分配方式,實(shí)現(xiàn)DHCP服務(wù)器從全局地址池中給客戶(hù)端分配IP地址。

操作步驟

啟動(dòng)DHCP服務(wù) <HUAWEI> system-view
[HUAWEI] sysname SwitchA
[SwitchA] dhcp enable
  1. 創(chuàng)建地址池并配置相關(guān)屬性
  2. # 配置IP地址池1的屬性(地址池范圍、DNS地址、出口網(wǎng)關(guān)、不參與分配的地址和地址池租期)。
[SwitchA] ip pool 1
[SwitchA-ip-pool-1] network 10.1.1.0 mask 255.255.255.128
[SwitchA-ip-pool-1] dns-list 10.1.1.2
[SwitchA-ip-pool-1] gateway-list 10.1.1.1
[SwitchA-ip-pool-1] excluded-ip-address 10.1.1.2
[SwitchA-ip-pool-1] excluded-ip-address 10.1.1.4
[SwitchA-ip-pool-1] lease day 10
[SwitchA-ip-pool-1] quit
  1. # 配置IP地址池2的屬性(地址池范圍、DNS地址、出口網(wǎng)關(guān)、NetBIOS地址和地址池租期)。
[SwitchA] ip pool 2
[SwitchA-ip-pool-2] network 10.1.1.128 mask 255.255.255.128
[SwitchA-ip-pool-2] dns-list 10.1.1.2
[SwitchA-ip-pool-2] nbns-list 10.1.1.4
[SwitchA-ip-pool-2] gateway-list 10.1.1.129
[SwitchA-ip-pool-2] lease day 2
[SwitchA-ip-pool-2] quit
  1. 配置VLANIF接口下地址分配方式
  2. # 配置接口GigabitEthernet1/0/1和GigabitEthernet1/0/2分別加入相應(yīng)的VLAN。
[SwitchA] vlan batch 10 20
[SwitchA] interface gigabitethernet 1/0/1
[SwitchA-GigabitEthernet1/0/1] port link-type hybrid
[SwitchA-GigabitEthernet1/0/1] port hybrid pvid vlan 10
[SwitchA-GigabitEthernet1/0/1] port hybrid untagged vlan 10
[SwitchA-GigabitEthernet1/0/1] quit
[SwitchA] interface gigabitethernet 1/0/2
[SwitchA-GigabitEthernet1/0/2] port link-type hybrid
[SwitchA-GigabitEthernet1/0/2] port hybrid pvid vlan 20
[SwitchA-GigabitEthernet1/0/2] port hybrid untagged vlan 20
[SwitchA-GigabitEthernet1/0/2] quit
  1. # 配置VLANIF10接口下的客戶(hù)端從全局地址池中獲取IP地址。
[SwitchA] interface vlanif 10
[SwitchA-Vlanif10] ip address 10.1.1.1 255.255.255.128
[SwitchA-Vlanif10] dhcp select global
[SwitchA-Vlanif10] quit
  1. # 配置VLANIF20接口下的客戶(hù)端從全局地址池中獲取IP地址。
[SwitchA] interface vlanif 20
[SwitchA-Vlanif20] ip address 10.1.1.129 255.255.255.128
[SwitchA-Vlanif20] dhcp select global
[SwitchA-Vlanif20] quit
  1. 驗(yàn)證配置結(jié)果
  2. 在SwitchA上使用display ip pool命令用來(lái)查看IP地址池配置情況。
[SwitchA] display ip pool
 -----------------------------------------------------------------------
 Pool-name : 1
 Pool-No : 0
 Lease : 10 Days 0 Hours 0 Minutes 
 Position : Local Status : Unlocked
 Gateway-0 : 10.1.1.1
 Network : 10.1.1.0 
 Mask : 255.255.255.128
 VPN instance : --
 Address Statistic: Total :125 Used :2 
 Idle :121 Expired :0 
 Conflict :0 Disable :2 
 
 -----------------------------------------------------------------------
 Pool-name : 2
 Pool-No : 1
 Lease : 2 Days 0 Hours 0 Minutes 
 Position : Local Status : Unlocked
 Gateway-0 : 10.1.1.129
 Network : 10.1.1.128 
 Mask : 255.255.255.128
 VPN instance : --
 Address Statistic: Total :125 Used :4 
 Idle :121 Expired :0 
 Conflict :0 Disable :0 
 
 
 IP address Statistic
 Total :250
 Used :6 Idle :242
 Expired :0 Conflict :0 Disable :2

配置文件

SwitchA的配置文件

#
sysname SwitchA
#
vlan batch 10 20
#
dhcp enable
#
ip pool 1
 gateway-list 10.1.1.1
 network 10.1.1.0 mask 255.255.255.128
 excluded-ip-address 10.1.1.2
 excluded-ip-address 10.1.1.4
 lease day 10 hour 0 minute 0
 dns-list 10.1.1.2
#
ip pool 2
 gateway-list 10.1.1.129
 network 10.1.1.128 mask 255.255.255.128
 lease day 2 hour 0 minute 0
 dns-list 10.1.1.2
 nbns-list 10.1.1.4
#
interface Vlanif10
 ip address 10.1.1.1 255.255.255.128
 dhcp select global 
#
interface Vlanif20
 ip address 10.1.1.129 255.255.255.128
 dhcp select global 
#
interface GigabitEthernet1/0/1
 port link-type hybrid
 port hybrid pvid vlan 10
 port hybrid untagged vlan 10 
#
interface GigabitEthernet1/0/2
 port link-type hybrid
 port hybrid pvid vlan 20
 port hybrid untagged vlan 20 
#
return

分享到:
標(biāo)簽:華為 交換機(jī)
用戶(hù)無(wú)頭像

網(wǎng)友整理

注冊(cè)時(shí)間:

網(wǎng)站:5 個(gè)   小程序:0 個(gè)  文章:12 篇

  • 51998

    網(wǎng)站

  • 12

    小程序

  • 1030137

    文章

  • 747

    會(huì)員

趕快注冊(cè)賬號(hào),推廣您的網(wǎng)站吧!
最新入駐小程序

數(shù)獨(dú)大挑戰(zhàn)2018-06-03

數(shù)獨(dú)一種數(shù)學(xué)游戲,玩家需要根據(jù)9

答題星2018-06-03

您可以通過(guò)答題星輕松地創(chuàng)建試卷

全階人生考試2018-06-03

各種考試題,題庫(kù),初中,高中,大學(xué)四六

運(yùn)動(dòng)步數(shù)有氧達(dá)人2018-06-03

記錄運(yùn)動(dòng)步數(shù),積累氧氣值。還可偷

每日養(yǎng)生app2018-06-03

每日養(yǎng)生,天天健康

體育訓(xùn)練成績(jī)?cè)u(píng)定2018-06-03

通用課目體育訓(xùn)練成績(jī)?cè)u(píng)定