博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CCNA2.0笔记_VTP
阅读量:6206 次
发布时间:2019-06-21

本文共 2321 字,大约阅读时间需要 7 分钟。

VTP(VLAN Trunking Protocol)

  一个能够宣告VLAN配置信息的信息系统;

  通过一个共有的管理域,维持VLAN配置信息的一致性;
  VTP只能在trunk端口发送要宣告的信息;
  二层交换机做VTP,最高能支持vtp version 2
  三层交换机做VTP,最高能支持vtp version 3
  VTP信息也保存在Vlan.dat中(与vlan信息储存位置相同)

VTP域的组成

  - Cisco交换机初始vty域名为空,当其中一台交换机配置了域名,其他交换机将同步此域名

  - 相同域名的,通过Trunk相互连接的,一组交换机
  - 组建vtp需要(交换机)加入VTP域,各个交换机需要加入相同的VTP域
  - 一个vty域内可以拥有多个处于server模式的vty

VTP的3种运行模式

  - 服务器模式(Server);只能创建常规VLAN (2-1001)

  - 客户机模式(Client);能创建常规Vlan和扩展Vlan (1025-4094)
  - 透明模式(Transparent)

   

  

  

  image

  image

VTP的运作

  - VTP协议通过组播地址01-00-0C-CC-CC-CC在Trunk链路(的Native Vlan)上发送VTP通告;

  - VTP Server和clients通过最高的修订号来同步数据库(当收到比自己修订号大的通告时,才更新Vlan信息);

VTP pruning

  

VTP 配置

switch(config)# vtp domian domain_name        //创建VTP 域switch(config)# vtp mode server | client | transparent        //配置交换机的VTP模式switch(config)# vtp password 123        //配置VTP口令为123switch(config)# vtp pruning        //配置VTP修剪switch(config)# vtp version 2         //VTP版本的配置switch# show vtp status        //查看VTP的配置默认情况:VTP模式为server;VTP修剪默认关闭;VTP域名有大小写敏感;VTP密码有大小写敏感;

VTP实验

  

  实验目的:掌握VLAN及VTP的配置

  实验要求:VTP域名为cisco,密码为password

  SwitchA配置成Server模式,创建VLAN 10和VLAN 20名为aa bb,并开启VTP修剪功能

  SwitchB配置成客户模式,并将端口1—10加入VLAN10,11—20划分到VLAN20
  SwitchC配置成透明模式

  实验步骤:

  步骤1:

  因为VTP信息之在trunk接口上发送,所以先将交换机相连的接口配置成trunk口

  Sw-A配置

SwitchA(config)#int f0/0SwitchA(config-if)#switchport trunk encapsulation dot1q        //如果交换机支持多种VTP封装的话,则需要先指定封装SwitchA(config-if)#switchport mode trunkSwitchA(config)#int f0/1SwitchA(config-if)#switchport trunk encapsulation dot1qSwitchA(config-if)#switchport mode trunk

  Sw-B配置

SwitchB(config)#int f0/0SwitchB(config-if)#switchport trunk encapsulation dot1qSwitchB(config-if)#switchport mode trunk

  Sw-C配置

SwitchC(config)#int f0/0SwitchC(config-if)#switchport trunk encapsulation dot1qSwitchC(config-if)#switchport mode trunk

  步骤2:

  在SwitchA上做VTP的配置并创建vlan

SwitchA(config)#vtp mode serverSwitchA(config)#vtp domain stsdSwitchA(config)#vtp password ciscoSwitchA(config)#vtp pruningSwitchA#vlan 10 name aaSwitchA#vlan 20 name bb

  步骤3:

  在SwitchB上做配置

SwitchB(config)#vtp mode clientSwitchB(config)#vtp domain stsdSwitchB(config)#vtp password cisco

  步骤4:

  在SwitchC上做配置

SwitchC(config)#vtp mode transparent

  步骤5

  在SwitchB上查看vlan信息,看是否可以看到创建的vlan10 和 vlan20
  可以尝试在SwitchB上面创建vlan,观察client模式的交换机是否能够创建vlan。在transpartent上面创建vlan,并查看vlan信息的保存位置。

转载地址:http://howja.baihongyu.com/

你可能感兴趣的文章
php 下载文件的头信息 Determine Content Type
查看>>
WPF实现3D翻转的动画效果
查看>>
IIS应用程序池_缓存回收
查看>>
gradle 将依赖打入Jar包的方法
查看>>
phantomjs - node.js parse child process output line by line (spawn) - Stack Overflow
查看>>
Android网络通信Volley框架源代码浅析(三)
查看>>
iphone label相关的圆角处理(转)
查看>>
史上最笨拙最丑陋结果又最滑稽的C代码
查看>>
HDUOJ1002A + B Problem II
查看>>
svn: “sqlite: attempt to write a readonly database”
查看>>
仅在TabControl中的Tab中添加右键菜单
查看>>
javascript如何从tr中分别获得每个td的元素
查看>>
设计模式(一)工厂模式Factory(创建型)
查看>>
DIOCP 运作核心探密
查看>>
天津人民优步司机当周奖励政策 (8.3-8.9)
查看>>
eclipse运行hadoop程序报错:Connection refused: no further information
查看>>
Java构造方法的含义和使用
查看>>
微信小程序/支付宝小程序 WxParse解析富文本(html)代码
查看>>
Netty(五):Netty中如何序列化数据
查看>>
Tomcat优化详解
查看>>