我是靠谱客的博主 贤惠魔镜,最近开发中收集的这篇文章主要介绍MSTP负载均衡,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

MSTP负载均衡
1、拓扑图:
在这里插入图片描述
2、配置思路
(1)核心层/汇聚层交换机配置
SWA的配置
①配置mstp
1)stp enable
2)Stp mode mstp
3)Stp regin-configuration //配置mstp域
a.Region-name gg //配置mstp域名,注意同一个域,相同域名
b.Instance 1 vlan 5 7 //划分vlan5和7到一个实例里
c.Instance 2 vlan 6 8
4)Stp instance 1 priority 4096 //配置组1优先级为4096,主根
5)Stp instance 2 priority 8192 //配置组2优先级为8192,候补
配置vlan(左边的三层交换机我全部把ip设为192.168.x.252)
除了vlan10,其他的都要配置ip地址
SWB的配置
②配置mstp
1)stp enable
2)Stp mode mstp
3)Stp regin-configuration //配置mstp域
a.Region-name gg //配置mstp域名,注意同一个域,相同域名
b.Instance 1 vlan 5 7 //划分vlan5和7到一个组里
c.Instance 2 vlan 6 8
4)Stp instance 1 priority 4096 //配置组1优先级为8192,候补
5)Stp instance 2 priority 8192 //配置组2优先级为4096,主根

③在与路由器连接的端口里关闭stp
Interface g0/0/7;stp disable //swa和swb都要这样配置

配置vlan(左边的三层交换机我全部把ip设为192.168.x.253)
除了vlan9,其他的都要配置ip地址
(2)在接入层交换机配置
1)配置trunk链路和划分好各自的vlan,比如vlan 5
2)配置边缘端口
a. port link-type access
b. port default vlan 5
c. stp edged-port enable //边缘端口
3)配置BPDU保护(交换机上配置)
a.Stp bpdu-protection
4)配置环路保护(进入接入层交换机的根端口配置)
a.stp loop-protection
(3)在pc机上配置好信息(网关是其根桥中本vlan的ip地址)

(4)在核心层交换机的端口(除了eth-trunk1)都要设置根端口保护机制
1)Int g0/0/5
2)stp root-protection
(5)与路由进行通信(左边配置)右边参照这个配置就好啦
1)分别在左边三层交换机上配置vlan9的ip地址
ip route-static 9.9.9.9 255.255.255.255 192.168.9.1
ip route-static 10.10.10.10 255.255.255.255 192.168.5.253
ip route-static 10.10.10.10 255.255.255.255 192.168.7.253
interface Vlanif9
ip address 192.168.9.252 255.255.255.0
port link-type access
port default vlan 9
stp disable
看哪一个ip谁认识它,就可以作为下一跳
2)路由AR1的配置
ip route-static 192.168.5.0 255.255.255.0 192.168.9.252
ip route-static 192.168.6.0 255.255.255.0 192.168.9.252
ip route-static 192.168.7.0 255.255.255.0 192.168.9.252
ip route-static 192.168.8.0 255.255.255.0 192.168.9.252
interface GigabitEthernet0/0/0
ip address 192.168.9.1 255.255.255.0
interface LoopBack0
ip address 9.9.9.9 255.255.255.255

3、验证:
(根保护机制)

重定向报文:
在这里插入图片描述

最后

以上就是贤惠魔镜为你收集整理的MSTP负载均衡的全部内容,希望文章能够帮你解决MSTP负载均衡所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(54)

评论列表共有 0 条评论

立即
投稿
返回
顶部