SlideShare una empresa de Scribd logo
1 de 2
Descargar para leer sin conexión
SPANNING TREE                                             PART 1                                                          packetlife.net
                                                              Spanning Tree Protocols
                 Legacy STP                   PVST                PVST+             RSTP                 RPVST+               MST

  Algorithm Legacy ST                         Legacy ST           Legacy ST         Rapid ST             Rapid ST             Rapid ST
                                                                                    802.1w,                                   802.1s,
 Defined By 802.1D-1998                       Cisco               Cisco                                  Cisco
                                                                                    802.1D-2004                               802.1Q-2003
  Instances 1                                 Per VLAN            Per VLAN          1                    Per VLAN             Configurable
     Trunking N/A                             ISL                 802.1Q, ISL       N/A                  802.1Q, ISL          802.1Q, ISL

                                                     Spanning Tree Instance Comparison
                STP                                             PVST+                                        MST
        Root                                        VLAN 1,10 Root  VLAN 20,30 Root            MSTI 0 Root          MSTI 1 Root

        A                   B                             A                   B                   A                       B

                                        All VLANs                                  VLAN 1                                       MSTI 0 (1, 10)
                        x                                          xx xx           VLAN 10                   x     x            MSTI 1 (20, 30)
                                                                                   VLAN 20
                C                                                   C              VLAN 30                   C

     BPDU Format                                       Spanning Tree Specifications                                     Link Costs
Field               Bits                                                                                         Bandwidth           Cost
                                              802.1s                802.1Q-2003              802.1Q-2005
Protocol ID         16                                                                                           4 Mbps              250
Version             8                                                                                            10 Mbps             100
BPDU Type           8                    802.1D-1998                                       802.1D-2004           16 Mbps             62
Flags               8                                                                                            45 Mbps             39
Root ID             64                                    802.1Q-1998             802.1w                         100 Mbps            19
Root Path Cost      32                                                                                           155 Mbps            14
                                        ISL            PVST               PVST+              RPVST+
Bridge ID           64                                                                                           622 Mbps            6
Port ID             16                  IEEE 802.1D-1998            Deprecated legacy STP standard               1 Gbps              4
Message Age         16                  IEEE 802.1w           Introduced RSTP                                    10 Gbps             2
Max Age             16                                                                                           20+ Gbps            1
                                IEEE




                                        IEEE 802.1D-2004            Replaced legacy STP with RSTP
Hello Time          16                  IEEE 802.1s           Introduced MST                                            Port States
Forward Delay       16                  IEEE 802.1Q-2003            Added MST to 802.1Q                          Legacy ST       Rapid ST

     Default Timers                     IEEE 802.1Q-2005            Most recent 802.1Q revision                  Disabled

Hello               2s                  PVST        Per-VLAN implementation of legacy STP                        Blocking        Discarding
                                Cisco




Forward Delay       15s                 PVST+         Added 802.1Q trunking to PVST                              Listening

Max Age             20s                 RPVST+         Per-VLAN implementation of RSTP                           Learning        Learning
                                                                                                                 Forwarding      Forwarding
                                         Spanning Tree Operation
     Determine root bridge                                                                                              Port Roles
 1
     The bridge advertising the lowest bridge ID becomes the root bridge                                         Legacy ST       Rapid ST
     Select root port                                                                                            Root            Root
 2
     Each bridge selects its primary port facing the root
                                                                                                                 Designated      Designated
     Select designated ports
 3                                                                                                                               Alternate
     One designated port is selected per segment
                                                                                                                 Blocking
     Block ports with loops                                                                                                      Backup
 4
     All non-root and non-desginated ports are blocked

by Jeremy Stretch                                                                                                                           v3.0
SPANNING TREE                            PART 2                                             packetlife.net
        PVST+ and RPVST+ Configuration                                 Bridge ID Format
                                                        4         12                        48
spanning-tree mode {pvst | rapid-pvst}
                                                       Pri    Sys ID Ext             MAC Address
! Bridge priority
spanning-tree vlan 1-4094 priority 32768             Priority
                                                     4-bit bridge priority (configurable from 0 to 61440 in
! Timers, in seconds
spanning-tree vlan 1-4094 hello-time 2
                                                     increments of 4096)
spanning-tree vlan 1-4094 forward-time 15            System ID Extension
spanning-tree vlan 1-4094 max-age 20                 12-bit value taken from VLAN number (IEEE 802.1t)
                                                     MAC Address
! PVST+ Enhancements
spanning-tree backbonefast                           48-bit unique identifier
spanning-tree uplinkfast
                                                                           Path Selection
! Interface attributes                               1 Bridge with lowest root ID becomes the root
interface FastEthernet0/1
 spanning-tree [vlan 1-4094] port-priority 128       2 Prefer the neighbor with the lowest cost to root
 spanning-tree [vlan 1-4094] cost 19
                                                     3 Prefer the neighbor with the lowest bridge ID
 ! Manual link type specification                    4 Prefer the lowest sender port ID
 spanning-tree link-type {point-to-point | shared}
                                                                Optional PVST+ Ehancements
 ! Enables PortFast if running PVST+, or
 ! designates an edge port under RPVST+              PortFast
 spanning-tree portfast                              Enables immediate transition into the forwarding state
                                                     (designates edge ports under MST)
 ! Spanning tree protection
 spanning-tree guard {loop | root | none}            UplinkFast
                                                     Enables switches to maintain backup paths to root
 ! Per-interface toggling                            BackboneFast
 spanning-tree bpduguard enable                      Enables immediate expiration of the Max Age timer in
 spanning-tree bpdufilter enable                     the event of an indirect link failure

                MST Configuration                                 Spanning Tree Protection
                                                     Root Guard
spanning-tree mode mst
                                                     Prevents a port from becoming the root port
! MST Configuration                                  BPDU Guard
spanning-tree mst configuration                      Error-disables a port if a BPDU is received
 name MyTree
 revision 1                                          Loop Guard
                                                     Prevents a blocked port from transitioning to listening
 ! Map VLANs to instances                            after the Max Age timer has expired
 instance 1 vlan 20, 30                              BPDU Filter
 instance 2 vlan 40, 50                              Blocks BPDUs on an interface (disables STP)
! Bridge priority (per instance)                                        RSTP Link Types
spanning-tree mst 1 priority 32768
                                                     Point-to-Point
! Timers, in seconds                                 Connects to exactly one other bridge (full duplex)
spanning-tree mst hello-time 2                       Shared
spanning-tree mst forward-time 15
                                                     Potentially connects to multiple bridges (half duplex)
spanning-tree mst max-age 20
                                                     Edge
! Maximum hops for BPDUs                             Connects to a single host; designated by PortFast
spanning-tree mst max-hops 20
                                                                        Troubleshooting
! Interface attributes
interface FastEthernet0/1
                                                     show spanning-tree [summary | detail | root]
 spanning-tree mst 1 port-priority 128               show spanning-tree [interface | vlan]
 spanning-tree mst 1 cost 19
                                                     show spanning-tree mst […]

by Jeremy Stretch                                                                                         v3.0

Más contenido relacionado

La actualidad más candente

20110224 saf cfip_brochure_en
20110224 saf cfip_brochure_en20110224 saf cfip_brochure_en
20110224 saf cfip_brochure_en
nezinamais
 
Rdb45350 access point_specifications
Rdb45350 access point_specificationsRdb45350 access point_specifications
Rdb45350 access point_specifications
Advantec Distribution
 
Layer-2 VPN
Layer-2 VPNLayer-2 VPN
Layer-2 VPN
rosmida
 
Chapter 6 intervlanrouting
Chapter 6   intervlanroutingChapter 6   intervlanrouting
Chapter 6 intervlanrouting
kratos2424
 
7.) convergence (w automation)
7.) convergence (w automation)7.) convergence (w automation)
7.) convergence (w automation)
Jeff Green
 
Candidate experience overview (2013)
Candidate experience overview (2013)Candidate experience overview (2013)
Candidate experience overview (2013)
Roman Malendevich
 
Acceleration for big data, hadoop and memcached it168文库
Acceleration for big data, hadoop and memcached it168文库Acceleration for big data, hadoop and memcached it168文库
Acceleration for big data, hadoop and memcached it168文库
Accenture
 

La actualidad más candente (19)

Juniper Networks Product Comparisons
Juniper Networks Product ComparisonsJuniper Networks Product Comparisons
Juniper Networks Product Comparisons
 
6.) switch quick config (fixed summits)
6.) switch quick config (fixed summits)6.) switch quick config (fixed summits)
6.) switch quick config (fixed summits)
 
Cisco 刘洋 从“路由”回归“交换”
Cisco 刘洋 从“路由”回归“交换”Cisco 刘洋 从“路由”回归“交换”
Cisco 刘洋 从“路由”回归“交换”
 
20110224 saf cfip_brochure_en
20110224 saf cfip_brochure_en20110224 saf cfip_brochure_en
20110224 saf cfip_brochure_en
 
Rdb45350 access point_specifications
Rdb45350 access point_specificationsRdb45350 access point_specifications
Rdb45350 access point_specifications
 
クラウドいろは勉強会
クラウドいろは勉強会クラウドいろは勉強会
クラウドいろは勉強会
 
Energy Micro RF Catalog
Energy Micro RF CatalogEnergy Micro RF Catalog
Energy Micro RF Catalog
 
Layer-2 VPN
Layer-2 VPNLayer-2 VPN
Layer-2 VPN
 
History of 100G and Internet2
History of 100G and Internet2History of 100G and Internet2
History of 100G and Internet2
 
10G SFP+ Fiber Optic Transceivers and SFP+ DAC Data Sheet
10G SFP+ Fiber Optic Transceivers and SFP+ DAC Data Sheet10G SFP+ Fiber Optic Transceivers and SFP+ DAC Data Sheet
10G SFP+ Fiber Optic Transceivers and SFP+ DAC Data Sheet
 
Network sellers compatible list 11.16
Network sellers compatible list 11.16Network sellers compatible list 11.16
Network sellers compatible list 11.16
 
V24 Product Brief - Aggregation & Filtering Taps
V24 Product Brief - Aggregation & Filtering TapsV24 Product Brief - Aggregation & Filtering Taps
V24 Product Brief - Aggregation & Filtering Taps
 
Overview of Spanning Tree Protocol (STP & RSTP)
Overview of Spanning Tree Protocol (STP & RSTP)Overview of Spanning Tree Protocol (STP & RSTP)
Overview of Spanning Tree Protocol (STP & RSTP)
 
Chapter 6 intervlanrouting
Chapter 6   intervlanroutingChapter 6   intervlanrouting
Chapter 6 intervlanrouting
 
7.) convergence (w automation)
7.) convergence (w automation)7.) convergence (w automation)
7.) convergence (w automation)
 
4 G World 2012 Global Multimode Carrier Aggregation
4 G World 2012 Global Multimode Carrier Aggregation4 G World 2012 Global Multimode Carrier Aggregation
4 G World 2012 Global Multimode Carrier Aggregation
 
Candidate experience overview (2013)
Candidate experience overview (2013)Candidate experience overview (2013)
Candidate experience overview (2013)
 
China Cable - Gehua Design 2005
China Cable - Gehua Design 2005China Cable - Gehua Design 2005
China Cable - Gehua Design 2005
 
Acceleration for big data, hadoop and memcached it168文库
Acceleration for big data, hadoop and memcached it168文库Acceleration for big data, hadoop and memcached it168文库
Acceleration for big data, hadoop and memcached it168文库
 

Destacado

Switching vla ns_secugenius_harksh_mikemclain_secugenius security solutions
Switching vla ns_secugenius_harksh_mikemclain_secugenius security solutionsSwitching vla ns_secugenius_harksh_mikemclain_secugenius security solutions
Switching vla ns_secugenius_harksh_mikemclain_secugenius security solutions
Mike McLain
 
Cloud computing e gov-12
Cloud computing e gov-12Cloud computing e gov-12
Cloud computing e gov-12
Swapnil Kapate
 
The itil foundation_certificate_syllabus (2) (1)
The itil foundation_certificate_syllabus (2) (1)The itil foundation_certificate_syllabus (2) (1)
The itil foundation_certificate_syllabus (2) (1)
Swapnil Kapate
 

Destacado (20)

CCNA - Switching Concepts made easy
CCNA - Switching Concepts made easyCCNA - Switching Concepts made easy
CCNA - Switching Concepts made easy
 
Switching vla ns_secugenius_harksh_mikemclain_secugenius security solutions
Switching vla ns_secugenius_harksh_mikemclain_secugenius security solutionsSwitching vla ns_secugenius_harksh_mikemclain_secugenius security solutions
Switching vla ns_secugenius_harksh_mikemclain_secugenius security solutions
 
Ceh v5 module 10 session hijacking
Ceh v5 module 10 session hijackingCeh v5 module 10 session hijacking
Ceh v5 module 10 session hijacking
 
Ce hv6 module 60 firewall technologies
Ce hv6 module 60 firewall technologiesCe hv6 module 60 firewall technologies
Ce hv6 module 60 firewall technologies
 
0407 ceh certificate
0407   ceh certificate0407   ceh certificate
0407 ceh certificate
 
Ceh v5 module 01 introduction to ethical hacking
Ceh v5 module 01 introduction to ethical hackingCeh v5 module 01 introduction to ethical hacking
Ceh v5 module 01 introduction to ethical hacking
 
CATALOGUE QUESTEK (Tiếng Việt)
CATALOGUE QUESTEK (Tiếng Việt)CATALOGUE QUESTEK (Tiếng Việt)
CATALOGUE QUESTEK (Tiếng Việt)
 
Ce hv6 module 54 proxy server technologies
Ce hv6 module 54 proxy server technologiesCe hv6 module 54 proxy server technologies
Ce hv6 module 54 proxy server technologies
 
Ppp
PppPpp
Ppp
 
Voip basics
Voip basicsVoip basics
Voip basics
 
Ccna
CcnaCcna
Ccna
 
Networking
NetworkingNetworking
Networking
 
Physical terminations
Physical terminationsPhysical terminations
Physical terminations
 
Tcpdump
TcpdumpTcpdump
Tcpdump
 
Cloud computing e gov-12
Cloud computing e gov-12Cloud computing e gov-12
Cloud computing e gov-12
 
The itil foundation_certificate_syllabus (2) (1)
The itil foundation_certificate_syllabus (2) (1)The itil foundation_certificate_syllabus (2) (1)
The itil foundation_certificate_syllabus (2) (1)
 
Cctns trg syllabus
Cctns trg syllabusCctns trg syllabus
Cctns trg syllabus
 
Qo s
Qo sQo s
Qo s
 
Vla ns
Vla nsVla ns
Vla ns
 
Scapy
ScapyScapy
Scapy
 

Similar a Spanning tree

802.11n - Increased Speed Increased Complexity
802.11n - Increased Speed Increased Complexity802.11n - Increased Speed Increased Complexity
802.11n - Increased Speed Increased Complexity
Savvius, Inc
 
Инновации в архитектуре маршрутизатора ASR9K. Технология сетевой витруализаци...
Инновации в архитектуре маршрутизатора ASR9K. Технология сетевой витруализаци...Инновации в архитектуре маршрутизатора ASR9K. Технология сетевой витруализаци...
Инновации в архитектуре маршрутизатора ASR9K. Технология сетевой витруализаци...
Cisco Russia
 

Similar a Spanning tree (20)

Spanning Tree Protocol Cheat Sheet
Spanning Tree Protocol Cheat SheetSpanning Tree Protocol Cheat Sheet
Spanning Tree Protocol Cheat Sheet
 
802.11n - Increased Speed Increased Complexity
802.11n - Increased Speed Increased Complexity802.11n - Increased Speed Increased Complexity
802.11n - Increased Speed Increased Complexity
 
huawei-s3700-28tp-ei-dc-brochure-datasheet.pdf
huawei-s3700-28tp-ei-dc-brochure-datasheet.pdfhuawei-s3700-28tp-ei-dc-brochure-datasheet.pdf
huawei-s3700-28tp-ei-dc-brochure-datasheet.pdf
 
cisco-cbs220-8p-e-2g-datasheet.pdf
cisco-cbs220-8p-e-2g-datasheet.pdfcisco-cbs220-8p-e-2g-datasheet.pdf
cisco-cbs220-8p-e-2g-datasheet.pdf
 
Deploying Carrier Ethernet features on ASR 9000
Deploying Carrier Ethernet features on ASR 9000Deploying Carrier Ethernet features on ASR 9000
Deploying Carrier Ethernet features on ASR 9000
 
Deploying Carrier Ethernet Features on Cisco ASR 9000
Deploying Carrier Ethernet Features on Cisco ASR 9000Deploying Carrier Ethernet Features on Cisco ASR 9000
Deploying Carrier Ethernet Features on Cisco ASR 9000
 
VyattaCore TIPS2013
VyattaCore TIPS2013VyattaCore TIPS2013
VyattaCore TIPS2013
 
Ethernet technology
Ethernet technologyEthernet technology
Ethernet technology
 
cisco-ws-c2960+48pst-l-datasheet.pdf
cisco-ws-c2960+48pst-l-datasheet.pdfcisco-ws-c2960+48pst-l-datasheet.pdf
cisco-ws-c2960+48pst-l-datasheet.pdf
 
Ccnp3 lab 3_3_en
Ccnp3 lab 3_3_enCcnp3 lab 3_3_en
Ccnp3 lab 3_3_en
 
Server-side Intelligent Switching using vyatta
Server-side Intelligent Switching using vyattaServer-side Intelligent Switching using vyatta
Server-side Intelligent Switching using vyatta
 
cisco-cbs220-48t-4x-datasheet.pdf
cisco-cbs220-48t-4x-datasheet.pdfcisco-cbs220-48t-4x-datasheet.pdf
cisco-cbs220-48t-4x-datasheet.pdf
 
New 3G Industrial Cellular Router from R&S Topex
New 3G Industrial Cellular Router from R&S TopexNew 3G Industrial Cellular Router from R&S Topex
New 3G Industrial Cellular Router from R&S Topex
 
18763980 ccna-lab-manual-640802-ii-2009-ii
18763980 ccna-lab-manual-640802-ii-2009-ii18763980 ccna-lab-manual-640802-ii-2009-ii
18763980 ccna-lab-manual-640802-ii-2009-ii
 
18763980 ccna-lab-manual-640802-ii-2009-ii
18763980 ccna-lab-manual-640802-ii-2009-ii18763980 ccna-lab-manual-640802-ii-2009-ii
18763980 ccna-lab-manual-640802-ii-2009-ii
 
18763980 ccna-lab-manual-640802-ii-2009-ii
18763980 ccna-lab-manual-640802-ii-2009-ii18763980 ccna-lab-manual-640802-ii-2009-ii
18763980 ccna-lab-manual-640802-ii-2009-ii
 
NST Product Catalog
NST Product CatalogNST Product Catalog
NST Product Catalog
 
Инновации в архитектуре маршрутизатора ASR9K. Технология сетевой витруализаци...
Инновации в архитектуре маршрутизатора ASR9K. Технология сетевой витруализаци...Инновации в архитектуре маршрутизатора ASR9K. Технология сетевой витруализаци...
Инновации в архитектуре маршрутизатора ASR9K. Технология сетевой витруализаци...
 
Osi 7 layer
Osi 7 layerOsi 7 layer
Osi 7 layer
 
Ethernet protocol
Ethernet protocolEthernet protocol
Ethernet protocol
 

Más de Swapnil Kapate (19)

Training development382
Training development382Training development382
Training development382
 
E governance
E governanceE governance
E governance
 
D2014082010
D2014082010D2014082010
D2014082010
 
Ccnp workbook network bulls
Ccnp workbook network bullsCcnp workbook network bulls
Ccnp workbook network bulls
 
Advanced troubleshooting
Advanced troubleshootingAdvanced troubleshooting
Advanced troubleshooting
 
Ccna read
Ccna readCcna read
Ccna read
 
certificate
certificatecertificate
certificate
 
Ip addressing and subnetting instructors workbook
Ip addressing and subnetting   instructors workbookIp addressing and subnetting   instructors workbook
Ip addressing and subnetting instructors workbook
 
Rip
RipRip
Rip
 
Ospf
OspfOspf
Ospf
 
Nat
NatNat
Nat
 
Media wiki
Media wikiMedia wiki
Media wiki
 
Markdown
MarkdownMarkdown
Markdown
 
Is is
Is isIs is
Is is
 
I pv4 subnetting
I pv4 subnettingI pv4 subnetting
I pv4 subnetting
 
I pv4 multicast
I pv4 multicastI pv4 multicast
I pv4 multicast
 
I psec
I psecI psec
I psec
 
Ios zone based-firewall
Ios zone based-firewallIos zone based-firewall
Ios zone based-firewall
 
Ios i pv4_access_lists
Ios i pv4_access_listsIos i pv4_access_lists
Ios i pv4_access_lists
 

Spanning tree

  • 1. SPANNING TREE PART 1 packetlife.net Spanning Tree Protocols Legacy STP PVST PVST+ RSTP RPVST+ MST Algorithm Legacy ST Legacy ST Legacy ST Rapid ST Rapid ST Rapid ST 802.1w, 802.1s, Defined By 802.1D-1998 Cisco Cisco Cisco 802.1D-2004 802.1Q-2003 Instances 1 Per VLAN Per VLAN 1 Per VLAN Configurable Trunking N/A ISL 802.1Q, ISL N/A 802.1Q, ISL 802.1Q, ISL Spanning Tree Instance Comparison STP PVST+ MST Root VLAN 1,10 Root VLAN 20,30 Root MSTI 0 Root MSTI 1 Root A B A B A B All VLANs VLAN 1 MSTI 0 (1, 10) x xx xx VLAN 10 x x MSTI 1 (20, 30) VLAN 20 C C VLAN 30 C BPDU Format Spanning Tree Specifications Link Costs Field Bits Bandwidth Cost 802.1s 802.1Q-2003 802.1Q-2005 Protocol ID 16 4 Mbps 250 Version 8 10 Mbps 100 BPDU Type 8 802.1D-1998 802.1D-2004 16 Mbps 62 Flags 8 45 Mbps 39 Root ID 64 802.1Q-1998 802.1w 100 Mbps 19 Root Path Cost 32 155 Mbps 14 ISL PVST PVST+ RPVST+ Bridge ID 64 622 Mbps 6 Port ID 16 IEEE 802.1D-1998 Deprecated legacy STP standard 1 Gbps 4 Message Age 16 IEEE 802.1w Introduced RSTP 10 Gbps 2 Max Age 16 20+ Gbps 1 IEEE IEEE 802.1D-2004 Replaced legacy STP with RSTP Hello Time 16 IEEE 802.1s Introduced MST Port States Forward Delay 16 IEEE 802.1Q-2003 Added MST to 802.1Q Legacy ST Rapid ST Default Timers IEEE 802.1Q-2005 Most recent 802.1Q revision Disabled Hello 2s PVST Per-VLAN implementation of legacy STP Blocking Discarding Cisco Forward Delay 15s PVST+ Added 802.1Q trunking to PVST Listening Max Age 20s RPVST+ Per-VLAN implementation of RSTP Learning Learning Forwarding Forwarding Spanning Tree Operation Determine root bridge Port Roles 1 The bridge advertising the lowest bridge ID becomes the root bridge Legacy ST Rapid ST Select root port Root Root 2 Each bridge selects its primary port facing the root Designated Designated Select designated ports 3 Alternate One designated port is selected per segment Blocking Block ports with loops Backup 4 All non-root and non-desginated ports are blocked by Jeremy Stretch v3.0
  • 2. SPANNING TREE PART 2 packetlife.net PVST+ and RPVST+ Configuration Bridge ID Format 4 12 48 spanning-tree mode {pvst | rapid-pvst} Pri Sys ID Ext MAC Address ! Bridge priority spanning-tree vlan 1-4094 priority 32768 Priority 4-bit bridge priority (configurable from 0 to 61440 in ! Timers, in seconds spanning-tree vlan 1-4094 hello-time 2 increments of 4096) spanning-tree vlan 1-4094 forward-time 15 System ID Extension spanning-tree vlan 1-4094 max-age 20 12-bit value taken from VLAN number (IEEE 802.1t) MAC Address ! PVST+ Enhancements spanning-tree backbonefast 48-bit unique identifier spanning-tree uplinkfast Path Selection ! Interface attributes 1 Bridge with lowest root ID becomes the root interface FastEthernet0/1 spanning-tree [vlan 1-4094] port-priority 128 2 Prefer the neighbor with the lowest cost to root spanning-tree [vlan 1-4094] cost 19 3 Prefer the neighbor with the lowest bridge ID ! Manual link type specification 4 Prefer the lowest sender port ID spanning-tree link-type {point-to-point | shared} Optional PVST+ Ehancements ! Enables PortFast if running PVST+, or ! designates an edge port under RPVST+ PortFast spanning-tree portfast Enables immediate transition into the forwarding state (designates edge ports under MST) ! Spanning tree protection spanning-tree guard {loop | root | none} UplinkFast Enables switches to maintain backup paths to root ! Per-interface toggling BackboneFast spanning-tree bpduguard enable Enables immediate expiration of the Max Age timer in spanning-tree bpdufilter enable the event of an indirect link failure MST Configuration Spanning Tree Protection Root Guard spanning-tree mode mst Prevents a port from becoming the root port ! MST Configuration BPDU Guard spanning-tree mst configuration Error-disables a port if a BPDU is received name MyTree revision 1 Loop Guard Prevents a blocked port from transitioning to listening ! Map VLANs to instances after the Max Age timer has expired instance 1 vlan 20, 30 BPDU Filter instance 2 vlan 40, 50 Blocks BPDUs on an interface (disables STP) ! Bridge priority (per instance) RSTP Link Types spanning-tree mst 1 priority 32768 Point-to-Point ! Timers, in seconds Connects to exactly one other bridge (full duplex) spanning-tree mst hello-time 2 Shared spanning-tree mst forward-time 15 Potentially connects to multiple bridges (half duplex) spanning-tree mst max-age 20 Edge ! Maximum hops for BPDUs Connects to a single host; designated by PortFast spanning-tree mst max-hops 20 Troubleshooting ! Interface attributes interface FastEthernet0/1 show spanning-tree [summary | detail | root] spanning-tree mst 1 port-priority 128 show spanning-tree [interface | vlan] spanning-tree mst 1 cost 19 show spanning-tree mst […] by Jeremy Stretch v3.0