当前位置: 首页 > news >正文

网站建设官网怎么收费哪个网站可以做竖屏

网站建设官网怎么收费,哪个网站可以做竖屏,国内做设计的网站,百度收录不了网站吗MSTP 一、简介二、常用命令总结三、实验 一、简介 RSTP(快速生成树协议)​ RSTP(Rapid Spanning Tree Protocol)是 STP 的改进版本,基于 ​​IEEE 802.1w 标准​​,核心目标是解决传统 STP 收敛速度慢的问…

MSTP

  • 一、简介
  • 二、常用命令总结
  • 三、实验

一、简介

RSTP(快速生成树协议)​
RSTP(Rapid Spanning Tree Protocol)是 STP 的改进版本,基于 ​​IEEE 802.1w 标准​​,核心目标是解决传统 STP 收敛速度慢的问题。其通过引入 ​​快速过渡机制​​ 和 ​​新增端口角色​​(如替代端口、备份端口、边缘端口),将收敛时间从 STP 的 30-50 秒缩短至 ​​1 秒以内​​。

  • 端口角色扩展​​:除根端口、指定端口外,新增替代端口(Alternate Port)和备份端口(Backup Port),用于快速接管失效链路。
  • ​​快速状态转换​​:通过P/A( ​​Proposal/Agreement )机制​​直接协商端口状态,跳过 STP 的监听和学习阶段。
  • ​​兼容性​​:当检测到传统 STP BPDU 时,自动切换为 STP 模式。

MSTP(多生成树协议)
MSTP(Multiple Spanning Tree Protocol)基于 ​​IEEE 802.1s 标准​​,支持多生成树实例(MSTI)​​,允许不同 VLAN 组映射到不同的生成树实例,实现逻辑拓扑的灵活划分。

  • 实例化与区域划分​​:将网络划分为多个 ​​MST 区域​​,每个区域独立运行生成树,并通过 ​​CST(公共生成树)​​ 连接不同区域。
  • ​​VLAN 映射​​:通过配置 ​​VLAN-实例映射表​​,将流量分配到不同实例,避免单一生成树的资源浪费。
  • ​​BPDU 优化​​:使用 MST BPDU 携带区域和实例信息,减少控制报文数量。

二、常用命令总结

display stp						#查 STP 的状态和统计信息
display stp instance 0 brief	#查看 STP 的状态和统计信息摘要,特殊实例0
display stp interface GigabitEthernet 0/0/2	#查看 GE0/0/2 接口的 STP 的状态和统计信息,可查看port cost的开销#优先级确定根桥
stp priority 4096				#调整 STP 优先级,默认32768,越小越好
#直接指定根桥
stp root primary				#相当于优先级为0
stp root secondary				#相当于优先级为4096[S4-GigabitEthernet0/0/2] stp cost 40001	#修改GE0/0/2 接口的 STP cost 值为 40001。影响根路径开销,进而改变本端口角色。
[S1-GigabitEthernet0/0/11] stp port priority 64	#修改 GE0/0/11 的 STP 接口优先级,默认为128,越小越好。影响对端端口角色。display stp region-configuration	#检查 MSTP 实例和 VLAN 的映射关系
display stp instance 1 brief		#查看 MSTI1 的状态和统计信息摘要#配置MSTI1 的根桥和备份根桥
[S1]stp instance 1 root primary
[S2]stp instance 1 root secondary

三、实验

背景
你是公司的网络管理员。公司的网络采用了备份网络,为避免环路问题,在网络中部署了RSTP。所有的 VLAN 共享一棵 STP 生成树,为了实现VLAN 间数据流量的负载均衡, 在网络中部署 MSTP

拓扑
在这里插入图片描述

配置-RSTP模式

#
sysname S1
#
stp enable
stp mode rstp
stp instance 0 root primary				#直接设置为根桥
#
interface GigabitEthernet0/0/11stp instance 0 port priority 64		#设置stp接口优先级
#
return #
sysname S2
#
stp enable
stp mode rstp
stp instance 0 root secondary
#
return #
sysname S3
#
stp enable
stp mode rstp
#
return #
sysname S4
#
stp enable
stp mode rstp
#
interface GigabitEthernet0/0/2stp instance 0 cost 40001			#设置stp接口开销
#
return 

配置-MSTP模式
S1

#
sysname S1
#
vlan batch 10 20 30 40 50 60 70 80
#
stp instance 0 root primary
stp instance 1 root primary
stp instance 2 root secondary
#
stp region-configurationregion-name hcip				#配置区域名revision-level 1				#配置修订版本,默认0instance 1 vlan 10 30 50 70 	#设置实例1 对应vlaninstance 2 vlan 20 40 60 80 	#设置实例2 对应vlanactive region-configuration	#激活区域配置
#
interface GigabitEthernet0/0/10port link-type trunkport trunk allow-pass vlan 2 to 4094
#
interface GigabitEthernet0/0/11port link-type trunkport trunk allow-pass vlan 2 to 4094stp instance 0 port priority 64
#
interface GigabitEthernet0/0/12port link-type trunkport trunk allow-pass vlan 2 to 4094
#
interface GigabitEthernet0/0/13port link-type trunkport trunk allow-pass vlan 2 to 4094
#
return 

S2

#
sysname S2
#
vlan batch 10 20 30 40 50 60 70 80
#
stp instance 0 root secondary
stp instance 1 root secondary
stp instance 2 root primary
#
stp region-configurationregion-name hciprevision-level 1instance 1 vlan 10 30 50 70 instance 2 vlan 20 40 60 80 active region-configuration
#
interface GigabitEthernet0/0/10port link-type trunkport trunk allow-pass vlan 2 to 4094
#
interface GigabitEthernet0/0/11port link-type trunkport trunk allow-pass vlan 2 to 4094
#
interface GigabitEthernet0/0/12port link-type trunkport trunk allow-pass vlan 2 to 4094
#
interface GigabitEthernet0/0/13port link-type trunkport trunk allow-pass vlan 2 to 4094
#
return 

S3

#
sysname S3
#
vlan batch 10 20 30 40 50 60 70 80
#
stp region-configurationregion-name hciprevision-level 1instance 1 vlan 10 30 50 70 instance 2 vlan 20 40 60 80 active region-configuration
#
interface GigabitEthernet0/0/1port link-type trunkport trunk allow-pass vlan 2 to 4094
#
interface GigabitEthernet0/0/2port link-type trunkport trunk allow-pass vlan 2 to 4094
#
interface GigabitEthernet0/0/3port link-type trunkport trunk allow-pass vlan 2 to 4094
#
return 

S4

#
sysname S4
#
vlan batch 10 20 30 40 50 60 70 80
#
stp region-configurationregion-name hciprevision-level 1instance 1 vlan 10 30 50 70 instance 2 vlan 20 40 60 80 active region-configuration
#
interface GigabitEthernet0/0/1port link-type trunkport trunk allow-pass vlan 2 to 4094
#
interface GigabitEthernet0/0/2port link-type trunkport trunk allow-pass vlan 2 to 4094stp instance 0 cost 40001
#
interface GigabitEthernet0/0/3port link-type trunkport trunk allow-pass vlan 2 to 4094
#
return 

总结
根桥选举:桥ID(桥priorityMAC地址),越小越好,抢占式。
根接口选举:根路径开销PRC上行桥ID(BID)、上行接口优先级上行接口ID(PID)、本地接口ID,越小越好。

http://www.dtcms.com/a/541905.html

相关文章:

  • 苏州做网站哪家比较好移动端快速排名
  • 做淘宝网站要多少钱如何申请域名邮箱
  • dede网站地图文章变量网站开发课程心得
  • 网站模板绑定域名中国交通建设集团有限公司英文名
  • BeautifulSoup 的页面中需要获取某个元素的 xpath 路径
  • 网站数字证书怎么做辽宁省建设工程注册中心网站
  • 网站开发 总结报告网站的版面设计
  • 网站策划素材网站备份流程
  • 最成功的个人网站新民电子网站建设哪家好
  • 十堰网站搜索优化价格网站建设流程新闻
  • 厦门网站制作公司创网网站后台管理系统
  • 汕头网站制作推荐小程序制作报价
  • 网站建设工作室 杭州网站建设方案论文1500
  • 6.1类的继承
  • 广东集团网站建设安徽网络seo
  • 爱站查询个人如何学习做网站
  • 怎么开发一个网站安徽省建筑工程信息平台
  • 石家庄网络建站中粮我买网是哪个公司做的网站
  • vue2弹出框组件demo
  • G-Star Landscape 3.0 更新,网页版同步上线!
  • 让进程永不掉线:Linux nohup命令的深度指南
  • 虚拟机上部署Web项目
  • 做类似淘宝的网站需多少资金销售类wordpress
  • wix做的网站在国内访问不了网站谁做的
  • 亚远景-ISO 26262与ISO 21434:汽车安全标准的双基石
  • 模板网站难做seo天津建站管理系统价格
  • ModbusRTU转CCLKIE网关:解决管廊老旧排水仪表接入三菱高速网络瓶颈
  • 女朋友做网站wordpress 在线浏览
  • 做电影网站为什么查封不了一键打开多个wordpress
  • 游戏盾是如何保障游戏安全稳定的?