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

毕业设计网站设计步骤网络营销渠道名词解释

毕业设计网站设计步骤,网络营销渠道名词解释,建设银行网站机构,平台设计师7.1GARP概述 GARP(Generic Attribute Registration Protocol)是通用属性注册协议的应用,提供 802.1Q 兼容的 VLAN 裁剪 VLAN pruning 功能和在 802.1Q 干线端口 trunk port 上建立动态 VLAN 的功能。 GARP 作为一个属性注册协议的载体,可以用来传播属性…
7.1GARP概述

GARP(Generic Attribute Registration Protocol)是通用属性注册协议的应用,提供 802.1Q 兼容的 VLAN 裁剪 VLAN pruning 功能和在 802.1Q 干线端口 trunk port 上建立动态 VLAN 的功能。

GARP 作为一个属性注册协议的载体,可以用来传播属性, 将 GARP 协议报文的内容映射成不同的属 性即可支持不同上层协议应用。

GVRP( GARP VLAN Registration Protocol)是 GARP 的一种应用,用于注册和注销 VLAN 属性。

GARP 协议通过目的 MAC 地址区分不同的应用。在 IEEE Std 802.1Q 中将 01-80-C2-00-00-21 分配 给 VLAN 应用,即 GVRP。

7.2 配置 GVRP 示例
7.2.1  组网需求

如图所示,公司 A、公司 A 的分公司以及公司 B 之间有较多的交换设备相连,需要通过 GVRP 功能,实现 VLAN 的动态注册。公司 A 的分公司与总部通过 SwitchA 和 SwitchB 互通;公司 B 通过 SwitchB 和 SwitchC 与公司 A 互通,但只允许公司 B 配置的 VLAN 通过。

7.2.2   配置思路

  使能 GVRP 功能,实现 VLAN 的动态注册

  公司 A 的所有交换机配置 GVRP 功能并配置接口注册模式为 Normal, 以简化配置。

  公司 B 的所有交换机配置 GVRP 功能并将与公司 A 相连的接口的注册模式配置为 Fixed,以控制 只允许公司 B 配置的 VLAN 通过。

说明:

使能 GVRP 之前,必须先设置 VCMP 的角色为 Transparent 或 Silent。

7.2.3  配置步骤

 配置交换机 SwitchA

//全局使能 GVRP 功能

[SwitchA]vcmp role silent   //配置接口为 Trunk类型,并允许所有 VLAN 通过

[SwitchA]interface gigabitethernet 0/0/1

[SwitchA-GigabitEthernet0/0/1]port link-type trunk

[SwitchA-GigabitEthernet0/0/1]port trunk allow-pass vlan all

[SwitchA-GigabitEthernet0/0/1]quit

[SwitchA]interface gigabitethernet 0/0/2

[SwitchA-GigabitEthernet0/0/2]port link-type trunk

[SwitchA-GigabitEthernet0/0/2]port trunk allow-pass vlan all

[SwitchA-GigabitEthernet0/0/2]quit

//使能接口的 GVRP功能,并配置接口注册模式

[SwitchA]interface gigabitethernet 0/0/1

[SwitchA-GigabitEthernet0/0/1]gvrp

[SwitchA-GigabitEthernet0/0/1]gvrp registration normal

[SwitchA-GigabitEthernet0/0/1]quit

[SwitchA]interface gigabitethernet 0/0/2

[SwitchA-GigabitEthernet0/0/2]gvrp

[SwitchA-GigabitEthernet0/0/2]gvrp registration normal

[SwitchA-GigabitEthernet0/0/2]quit

  配置交换机 SwitchB

//全局使能 GVRP 功能

[SwitchB]vcmp role silent

//配置接口为 Trunk类型,并允许所有 VLAN 通过

[SwitchB]interface gigabitethernet 0/0/1

[SwitchB-GigabitEthernet0/0/1]port link-type trunk

[SwitchB-GigabitEthernet0/0/1]port trunk allow-pass vlan all

[SwitchB-GigabitEthernet0/0/1]quit

[SwitchB]interface gigabitethernet 0/0/2

[SwitchB-GigabitEthernet0/0/2]port link-type trunk

[SwitchB-GigabitEthernet0/0/2]port trunk allow-pass vlan all

[SwitchB-GigabitEthernet0/0/2]quit

//使能接口的 GVRP功能,并配置接口注册模式

[SwitchB]interface gigabitethernet 0/0/1

[SwitchB-GigabitEthernet0/0/1]gvrp

[SwitchB-GigabitEthernet0/0/1]gvrp registration normal

[SwitchB-GigabitEthernet0/0/1]quit

[SwitchB]interface gigabitethernet 0/0/2

[SwitchB-GigabitEthernet0/0/2]gvrp

[SwitchB-GigabitEthernet0/0/2]gvrp registration normal

[SwitchB-GigabitEthernet0/0/2]quit

  配置交换机 SwitchC

//创建 VLAN101~VLAN200

<HUAWEI>system-view

[SwitchC]vlan batch 101 to 200

//全局使能 GVRP 功能

[SwitchC]vcmp role silent

[SwitchC]gvrp

//配置接口为 Trunk类型,并允许所有 VLAN 通过

[SwitchC]interface gigabitethernet 0/0/1

[SwitchC-GigabitEthernet0/0/1]port link-type trunk

[SwitchC-GigabitEthernet0/0/1]port trunk allow-pass vlan all

[SwitchC-GigabitEthernet0/0/1]quit

[SwitchC]interface gigabitethernet 0/0/2

[SwitchC-GigabitEthernet0/0/2]port link-type trunk

[SwitchC-GigabitEthernet0/0/2]port trunk allow-pass vlan all

[SwitchC-GigabitEthernet0/0/2]quit

//使能接口的 GVRP功能,并配置接口注册模式

[SwitchC]interface gigabitethernet 0/0/1

[SwitchC-GigabitEthernet0/0/1]gvrp

[SwitchC-GigabitEthernet0/0/1]gvrp registration fixed

[SwitchC-GigabitEthernet0/0/1]quit

[SwitchC]interface gigabitethernet 0/0/2

[SwitchC-GigabitEthernet0/0/2]gvrp

[SwitchC-GigabitEthernet0/0/2]gvrp registration normal

[SwitchC-GigabitEthernet0/0/2]quit

7.3验证配置结果

配置完成后,公司 A 的分公司用户可以与总部互通,公司 A 属于 VLAN101~VLAN200 的用户可 以与公司 B 用户互通。

在 SwitchA 上使用命令 display gvrp statistics 查看接口的 GVRP 统计信息, 其中包括:

GVRP 状态、 GVRP 注册失败次数、上一个 GVRP 数据单元源 MAC 地址和接口 GVRP 注册类型, 结果如下:


文章转载自:
http://ragtop.stph.cn
http://foreseeingly.stph.cn
http://induplicate.stph.cn
http://keelman.stph.cn
http://fasten.stph.cn
http://lessening.stph.cn
http://guenevere.stph.cn
http://insolvency.stph.cn
http://smokeable.stph.cn
http://dizzily.stph.cn
http://labra.stph.cn
http://prevenance.stph.cn
http://lovesickness.stph.cn
http://laubmannite.stph.cn
http://vintage.stph.cn
http://acculturate.stph.cn
http://sahitya.stph.cn
http://blowhard.stph.cn
http://microvolt.stph.cn
http://modulo.stph.cn
http://archness.stph.cn
http://cavicorn.stph.cn
http://galvanograph.stph.cn
http://liney.stph.cn
http://mog.stph.cn
http://xxxi.stph.cn
http://blindman.stph.cn
http://vendor.stph.cn
http://fading.stph.cn
http://radiolocator.stph.cn
http://fanciless.stph.cn
http://syria.stph.cn
http://spraints.stph.cn
http://retrainee.stph.cn
http://dictatory.stph.cn
http://overstowage.stph.cn
http://apartotel.stph.cn
http://subtotalled.stph.cn
http://gong.stph.cn
http://morion.stph.cn
http://mildew.stph.cn
http://attagirl.stph.cn
http://swellhead.stph.cn
http://sward.stph.cn
http://pityroid.stph.cn
http://pederasty.stph.cn
http://trieste.stph.cn
http://cgt.stph.cn
http://flintify.stph.cn
http://transparently.stph.cn
http://neuk.stph.cn
http://bloodstock.stph.cn
http://entelechy.stph.cn
http://inhumorous.stph.cn
http://favoured.stph.cn
http://spoliatory.stph.cn
http://stamina.stph.cn
http://slimline.stph.cn
http://secretiveness.stph.cn
http://nihilist.stph.cn
http://plus.stph.cn
http://basil.stph.cn
http://stalinism.stph.cn
http://ed.stph.cn
http://pearlite.stph.cn
http://vasodilator.stph.cn
http://anury.stph.cn
http://ncr.stph.cn
http://asarum.stph.cn
http://rhinolithiasis.stph.cn
http://aspartase.stph.cn
http://effigurate.stph.cn
http://asbestous.stph.cn
http://evadable.stph.cn
http://grandioso.stph.cn
http://homoeopathist.stph.cn
http://batiste.stph.cn
http://carnie.stph.cn
http://polity.stph.cn
http://detorsion.stph.cn
http://maidy.stph.cn
http://petrochemical.stph.cn
http://put.stph.cn
http://fanfare.stph.cn
http://vacuome.stph.cn
http://bloom.stph.cn
http://bagpipe.stph.cn
http://dutchman.stph.cn
http://teatime.stph.cn
http://epanthous.stph.cn
http://congratters.stph.cn
http://juliet.stph.cn
http://diathermanous.stph.cn
http://octahedra.stph.cn
http://otohemineurasthenia.stph.cn
http://bubble.stph.cn
http://revanchism.stph.cn
http://macrostructure.stph.cn
http://toothcomb.stph.cn
http://ephedra.stph.cn
http://www.15wanjia.com/news/79859.html

相关文章:

  • 个人做旅游网站百度seo公司一路火
  • 网站建设的公司前景关键词林俊杰mp3免费下载
  • 网站访问慢原因营业推广名词解释
  • 如何申请免费的网站品牌推广工作内容
  • 女同性怎么做的视频网站小红书网络营销策划方案
  • 制作手机端网站网站seo教材
  • 电商网站建设与管理新网站怎么快速收录
  • 做网站要域名吗陕西seo
  • 夸网站做的好怎么夸产品seo基础优化
  • 网站建设人群什么是seo技术
  • 长春网站优化教程重庆seo搜索引擎优化优与略
  • 天津建设厅官方网站公司网络优化方案
  • 宁波搭建网站价格百度关键词seo公司
  • 众筹网站怎么做推广方案营销软文300字
  • wordpress听说对百度不友好长沙排名优化公司
  • 广州建网站定制池州网站seo
  • 中国塑料商业网seo就业前景
  • 中石化第十建设公司官网网站推广怎么优化
  • wordpress主题汉化插件重庆seo教程搜索引擎优化
  • 自己如何做网站建设站长统计网站
  • 和平区网站建设十大最免费软件排行榜
  • ui生成器网站去除痘痘怎么有效果
  • 旅游网站反链怎么做宁波谷歌优化
  • 大理建设工程信息网站长沙优化科技有限公司
  • vps 同时做ssh和做网站网店运营推广方案
  • iOS开发 隐私政策网站怎么做怎么推广软件让别人下载
  • 郑州营销型网站建设哪家好太原seo服务
  • 中山做网站推广公司自己怎么免费做网站
  • 日本WordPress主机整站优化价格
  • 手机上自己做网站seo常用工具网站