VTP配置

image-20221128140142971.png

VTP:用于vtp client交换机学习vtp server 交换机的vlan信息。

1、vtp server配置

  1. 配置vtp模式

    switch(config)#vtp mode {server|client|transparent}
    

    server模式:可创建vlan,删除vlan,发布vlan信息给client

    client模式:只学习server发来的vlan信息

    transparent模式:只转发,也不会学习

  2. 配置vtp域

    switch(config)#vtp domain vtp.com
    
  3. 配置vtp密码

    switch(config)#vtp password 123456
    
  4. 查看vtp状态

    switch#show vtp status
    

2、vtp client配置

  1. 配置vtp模式

    switch(config)#vtp mode client
    
  2. 配置vtp域

    switch(config)#vtp domain vtp.com
    

    client的vtp域名要和server的vtp域名一致,密码也要一致

  3. 配置vtp密码

    switch(config)#vtp password 123456
    

STP配置

image-20221128204942109.png

  1. 启用STP

    switch(config)#spanning-tree vlan 1
    
  2. 指定主根桥

    switch(config)#spanning-tree vlan 1 root primary
    
  3. 指定副根桥

    switch(config)#spanning-tree vlan 1 root secondary
    
  4. 修改BID根桥优先级

    switch(config)#spanning-tree vlan 1 priority<0-65535>
    

    优先级需是4096的倍数。

  5. 恢复默认优先级

    switch(config)#no spanning-tree vlan 1 priority
    
  6. 关闭STP

    switch(config)#no spanning-tree vlan 1
    
  7. 指定接口cost

    switch(config-if)#spanning-tree vlan 1 cost <0-200000000>
    
  8. 配置接口优先级

    switch(config-if)#spanning-tree vlan 1 port-priority <0-255>
    
  9. 检查vlan生成树配置

    switch#show spanning-tree summary
    switch#show spanning-tree vlan 1
    
  10. 检查生成树端口配置信息

    switch#show spanning-tree int f0/1