华为ENSP综合实验:eth-trunk、vlan底层、vrrp负载分担、MSTP、DHCP中继

news/2024/11/24 13:32:14/

提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档

文章目录

  • 前言
  • 一、实验目的:在局域网内实验,dhcp服务器负责地址分配、核心交换机做链路聚合增加带宽
  • 二、使用步骤
    • 1、eth-trunk配置
    • 2、VLAN二层配置
    • 3、MSTP配置
    • 4、vrrp负载分担
    • 5、DHCP中继服务器
  • 总结


前言

这个实验我尝试过很多次,在MSTP配置在整个拓扑图出现环路情况,不能正常获取到地址,开始以为是ensp系统bag,但经过多次排查后发现是MSTP配置问题,现在 实验步骤如下:

 


实验结果:PC1、PC2数据往LSW1走、PC3、PC4数据往LSW2走,当LW1设备g0/0/4断开,则切换到LW2上,PC1、PC2从LSW2路径走,往DHCP获取地址。当LW2设备g0/0/4链路断开,PC3、PC4能从LSW1链路走,往DHCP获取地址,具体配置如下(局域网dhcp服务器配置及负载分担) 


 1、eth-trunk配置:

LSW1:
sy
un in en  (关闭信息提示)
interface Eth-Trunk1port link-type trunkport trunk allow-pass vlan 2 to 4094trunkport g 0/0/1 to 0/0/3  加入端口LSW2:
sy
un in en  (关闭信息提示)
interface Eth-Trunk1port link-type trunkport trunk allow-pass vlan 2 to 4094trunkport g 0/0/1 to 0/0/3

2、vlan二层配置:

LSW1:
vlan batch 10 20 30 40 100
int g0/0/4
port link-type access
port default vlan 100
int g0/0/5
port link-t trunk
port trunk allow-p vlan 10 20 
int g0/0/6
port link-t trunk
port trunk allow-p vlan 30 40 LSW2:
vlan batch 10 20 30 40 101
int g0/0/4
port link-type access
port default vlan 101
int g0/0/5
port link-t trunk
port trunk allow-p vlan 10 20 
int g0/0/6
port link-t trunk
port trunk allow-p vlan 30 40 JIERU1:
sy
un in en
vlan batch 10 20 30 40 
int g0/0/1
port link-t trunk
port trunk allow-p vlan 10 20 
int g0/0/2
port link-t trunk
port trunk allow-p vlan 10 20 
int g0/0/3
port link-type access
port default vlan 10
int g0/0/4
port link-type access
port default vlan 20JIERU2:
sy
un in en
vlan batch 10 20 30 40 
int g0/0/1
port link-t trunk
port trunk allow-p vlan 30 40 
int g0/0/2
port link-t trunk
port trunk allow-p vlan 30 40 
int g0/0/3
port link-type access
port default vlan 30
int g0/0/4
port link-type access
port default vlan 40

3、MSTP配置:

LSW1:
stp enable
stp region-configurationregion-name 1instance 1 vlan 10 20instance 2 vlan 30 40active region-configuration
stp instance 1 root primary  主根桥
stp instance 2 root secondary  备用根桥LSW2:
stp enable
stp region-configurationregion-name 1instance 1 vlan 10 20instance 2 vlan 30 40active region-configuration
stp instance 1 root secondary
stp instance 2 root primaryJIERU1:
stp enable
stp region-configurationregion-name 1instance 1 vlan 10 20instance 2 vlan 30 40active region-configurationJIERU2:
stp enable
stp region-configurationregion-name 1instance 1 vlan 10 20instance 2 vlan 30 40active region-configuration

4、虚拟地址及vrrp配置:

LSW1:
interface Vlanif10ip address 10.1.1.254 255.255.255.0vrrp vrid 1 virtual-ip 10.1.1.1  vrrp虚拟网关vrrp vrid 1 priority 120  vrrp优先级(越大越优先)vrrp vrid 1 track interface GigabitEthernet0/0/4 reduced 50  端口监视
interface Vlanif20ip address 20.1.1.254 255.255.255.0vrrp vrid 2 virtual-ip 20.1.1.1vrrp vrid 2 priority 120vrrp vrid 2 track interface GigabitEthernet0/0/4 reduced 50
interface Vlanif30ip address 30.1.1.254 255.255.255.0vrrp vrid 3 virtual-ip 30.1.1.1
ip address 40.1.1.254 255.255.255.0vrrp vrid 4 virtual-ip 40.1.1.1
int vlanif 100
ip address 100.1.1.1 24LSW2:
interface Vlanif10ip address 10.1.1.253 255.255.255.0vrrp vrid 1 virtual-ip 10.1.1.1
interface Vlanif20ip address 20.1.1.253 255.255.255.0vrrp vrid 2 virtual-ip 20.1.1.1
interface Vlanif30ip address 30.1.1.253 255.255.255.0vrrp vrid 3 virtual-ip 30.1.1.1vrrp vrid 3 priority 120vrrp vrid 3 track interface GigabitEthernet0/0/4 reduced 50
interface Vlanif40ip address 40.1.1.253 255.255.255.0vrrp vrid 4 virtual-ip 40.1.1.1vrrp vrid 4 priority 120vrrp vrid 4 track interface GigabitEthernet0/0/4 reduced 50
interface vlanif 101
ip address 101.1.1.1 24

5、配置dhcp服务器、dhcp中继、dhcp snooping、静态路由策略:

DHCP服务器:
sy
un in en
sys DHCP
dhcp enable  开启服务
ip pool 10gateway-list 10.1.1.1  network 10.1.1.0 mask 255.255.255.0 excluded-ip-address 10.1.1.253 10.1.1.254 dns-list 8.8.8.8 
#
ip pool 20gateway-list 20.1.1.1 network 20.1.1.0 mask 255.255.255.0 excluded-ip-address 20.1.1.253 20.1.1.254 dns-list 8.8.8.8 
#
ip pool 30gateway-list 30.1.1.1 network 30.1.1.0 mask 255.255.255.0 excluded-ip-address 30.1.1.253 30.1.1.254 dns-list 8.8.8.8 
#
ip pool 40gateway-list 40.1.1.1 network 40.1.1.0 mask 255.255.255.0 excluded-ip-address 40.1.1.253 40.1.1.254 dns-list 8.8.8.8 interface GigabitEthernet0/0/0ip address 100.1.1.2 255.255.255.0 dhcp select global
#
interface GigabitEthernet0/0/1ip address 101.1.1.2 255.255.255.0 dhcp select globalinterface LoopBack0ip address 5.5.5.5 255.255.255.0 
#
ip route-static 10.1.1.0 255.255.255.0 100.1.1.1
ip route-static 10.1.1.0 255.255.255.0 101.1.1.1 preference 70
ip route-static 20.1.1.0 255.255.255.0 100.1.1.1
ip route-static 20.1.1.0 255.255.255.0 101.1.1.1 preference 70
ip route-static 30.1.1.0 255.255.255.0 100.1.1.1 preference 70
ip route-static 30.1.1.0 255.255.255.0 101.1.1.1
ip route-static 40.1.1.0 255.255.255.0 100.1.1.1 preference 70
ip route-static 40.1.1.0 255.255.255.0 101.1.1.1LSW1中继:
dhcp en
int v 10
dhcp select relay
dhcp relay server-ip 100.1.1.2
int v 20
dhcp select relay
dhcp relay server-ip 100.1.1.2
int v 30
dhcp select relay
dhcp relay server-ip 100.1.1.2
int v 40
dhcp select relay
dhcp relay server-ip 100.1.1.2ip route-static 0.0.0.0 0 100.1.1.2LSW2中继:
dhcp en
int v 10
dhcp select relay
dhcp relay server-ip 101.1.1.2
int v 20
dhcp select relay
dhcp relay server-ip 101.1.1.2
int v 30
dhcp select relay
dhcp relay server-ip 101.1.1.2
int v 40
dhcp select relay
dhcp relay server-ip 101.1.1.2ip route-static 0.0.0.0 0 101.1.1.2JIERU1 DHCP snooping配置:
dhcp en
dhcp snooping en
vlan 10dhcp snooping enable
vlan 20dhcp snooping enable
int g/0/1 
dhcp snooping enable
dhcp snooping trusted
int g0/0/2dhcp snooping enabledhcp snooping trustedJIERU2 DHCP snooping配置:
dhcp en
dhcp snooping en
vlan 30dhcp snooping enable
vlan 40dhcp snooping enable
int g/0/1 
dhcp snooping enable
dhcp snooping trusted
int g0/0/2dhcp snooping enabledhcp snooping trusted

 

配置完成:查看相关数据:

1、vrrp负载分担情况:

 

 

 当断开LSW1g0/0/4端口时:

 

能完成自主切换主备。

当断开LSW2g0/0/4端口时:

 

 

也能进行主备切换。

2、查看PC获取地址情况:

 

 

 

 

均能获取地址,切访问到DHCP 回环网口5.5.5.5 实验完成 

 

 

 

总结

这个实验结合了华为多种策略协议,适合做公司、部门内部网络规划,其中在在这个基础上可以添加ACL访问控制禁止部门互访,AC部署无线网络,也可以部署FTP、DNS、www服务器。在这个基础上可以增加多种网络元素,但也有不足之处,即没有做好核心部分下行的网络冗余及聚合链路的多样配置,当核心的下行接口故障,PC端则无法获取到地址,这个我目前还在寻找解决的方法,如有大神知晓,请留言相告,不胜感激。


http://www.ppmy.cn/news/633468.html

相关文章

LWM2M 简介

物联网热了几年,最基本以及广泛的铺开的应用还只是 Device Management. 基本功能包括: 软件/固件升级,应用程序升级,远程的参数监视告警 Lightweight M2M 基础 OMA是一家国际组织,最初定义了一套 OMA-DM的协议,用来远…

LwM2M简介

1、LwM2M是什么 官方文档:http://www.openmobilealliance.org/release/LightweightM2M/ release: http://openmobilealliance.org/wp/index.html LwM2M的全称是Lightweight Machine-To-Machine,由OMA(Open Mobile Alliance)提出…

VRRP实验

一、什么是vrrp? 虚拟路由器冗余协议(VRRP)是一种选择协议,它可以把一个虚拟路由器的责任动态分配到局域网上的VRRP路由器中的一台。控制虚拟路由器IP地址的VRRP路由器称为主路由器,它负责转发数据包到这些虚拟IP地址…

Valhalla LW2的进展–内联类型

过去几周(2019年6月/ 2019年7月), 瓦尔哈拉计划的LW2阶段/原型最初于2018年10月提出,在面向公众的方面取得了重大进展。 在这篇文章中,我简要总结了最近发布的一些消息,文档和Valhalla Early Access Build。…

4 测试分类

文章目录 总结:课程笔记 总结: 课程笔记

EventLog Analyzer:助力企业完成等保2.0的关键帮助

在当今数字化时代,企业面临着越来越多的网络安全威胁和数据泄露风险。为了保护敏感信息和维护业务的连续性,许多企业正在积极采取措施来实施等保2.0标准。在这一过程中,EventLog Analyzer作为一种全面的安全信息与事件管理解决方案&#xff0…

MT5搭建多账户PAM/MAN系统

PAM/man系统通常适用于基金/外汇领域。 技术部署于manage后台、MT4/MT5白标、主标皆可适用。 PAMMM系统以跟单社区的模式,设置好主账号,类似于followme、信号源会发出一定的信号, 跟随者按照指定的逻辑程序,占有比例去实时跟进…

怎么选择mt4 api跟单软件

最近有网友提问怎么区别api跟单的稳定性 下面我就以我们产品做一个产品稳定性的几点分析 希望对于区别api跟打软件的稳定性有一定帮助! 1. 选择正版软件 api跟单软件的稳定性最重要的也是最应该注意的是api跟单软件是否正版软件,最近市面上出现了各种破…