Lab Objective
Connect an MST region configured in an earlier lab to a separate switch still running Rapid PVST+, verify a stable boundary forms between the two spanning-tree modes without creating a loop, and confirm VLAN-specific topology information is correctly translated across that boundary.
Lab Purpose
Migrating an entire production network to MST simultaneously is rarely practical. MST was deliberately designed with backward compatibility in mind, allowing an MST region to interoperate directly with switches still running Rapid PVST+, supporting a gradual, switch-by-switch migration rather than requiring a disruptive flag-day cutover.
Lab Topology
Switch1, Switch2 (MST region "REGION1",
configured in an earlier lab)
---- Gi1/0/2 ---- Switch3 (still running
Rapid PVST+, not part
of the MST region)
VLANs 10 and 20 exist on all three switchesTask 1: Verify Switch3's Current Mode
Confirm Switch3 is running Rapid PVST+, unchanged from earlier labs, while Switch1 and Switch2 remain in MST mode.
Task 2: Connect Switch3 to the MST Region
Ensure Switch2's interface toward Switch3 is properly trunked carrying VLANs 10 and 20, forming the boundary link.
Task 3: Verify the Boundary Forms Without a Loop
Confirm Spanning Tree on both sides correctly identifies a consistent root and no loop forms across the boundary.
Task 4: Verify Per-VLAN Topology Information Crosses the Boundary
Confirm Switch3, running Rapid PVST+, correctly sees consistent root bridge information for each of its individual VLAN instances, derived from the MST region's internal calculation.
Solution and Verification
Switch3# show spanning-tree summary | include Mode
Spanning tree enabled protocol rstp
-- Confirms Switch3 remains on Rapid PVST+,
-- unchangedSwitch2(config)# interface gigabitethernet1/0/2
Switch2(config-if)# switchport mode trunk
Switch2(config-if)# switchport trunk allowed vlan 10,20Switch2# show spanning-tree mst 0
##### MST0 vlans mapped: 1-9,51-4094
Bridge address 00aa.bb00.2222 priority 32768
Interface Role Sts Cost Prio.Nbr Type
Gi1/0/2 Desg FWD 20000 128.2 P2p Bound(RSTP)
-- "Bound(RSTP)" explicitly marks this port
-- as a boundary port between the MST region
-- and a neighboring RSTP/PVST+ switch --
-- MST automatically recognizes and handles
-- this mixed-mode boundarySwitch3# show spanning-tree vlan 10
VLAN0010
Spanning tree enabled protocol rstp
Root ID Priority 32768
Address 00aa.bb00.2222
-- Switch3 correctly identifies Switch2
-- as root for VLAN 10, even though
-- Switch2 does not run a separate VLAN 10
-- instance internally -- MST derives
-- this from its internal Instance 0 (IST)
-- calculation and presents it correctly
-- to the PVST+ neighbor
Switch3# show spanning-tree vlan 20
VLAN0020
Spanning tree enabled protocol rstp
Root ID Priority 32768
Address 00aa.bb00.2222
-- Identical root information correctly
-- presented for VLAN 20 as well, despite
-- VLAN 20 being mapped to MST instance 1
-- rather than 0 within the region itselfSwitch2# show spanning-tree mst 0 detail | include loop|inconsistent
-- (no output -- no loop or inconsistency
-- detected at the boundary)Key Takeaway
The "Bound(RSTP)" designation on a boundary port confirms MST is actively translating between its internal instance-based topology and the per-VLAN topology a Rapid PVST+ neighbor expects — this built-in interoperability is precisely what allows organizations to migrate to MST incrementally, switch by switch, rather than requiring every device in the network to convert simultaneously in a single high-risk maintenance window.