I have a 5412R connected to a 6200F in production and they're working great. I need to extend one of the vlans that exists on the 6200 through the 5412 but that would cause a vlan id collision so I'm doing vlan translation to change the vlan id as it leaves the 6200. The issue is that spanning tree shuts the vlan down on that link as soon as I configure it. The vlan in question is only tagged on a single port on the 5412 (the port that goes to the 6200) so I know there isn't a loop. How to I prevent spanning tree from shutting it down? Here's the relevant config for the 6200
CX-RFH(config-if)# show run cur
interface 1/1/50
no shutdown
no routing
vlan trunk native 1
vlan trunk allowed 44,102,4016
vlan translate 1044 44
exit
CX-RFH(config-if)# show run spanning-tree
spanning-tree mode rpvst
spanning-tree
spanning-tree vlan 44,102
And here's the relevant config from the 5412
vlan 1044
name "rf2fields"
tagged K3
no ip address
exit
spanning-tree
spanning-tree mode rapid-pvst
spanning-tree vlan 1044
When everything is setup here's the spanning tree status from the 6200
CX-RFH(config)# show spanning-tree vlan 44
VLAN44
Spanning tree status : Enabled Protocol: RPVST
Root ID Priority : 32768
MAC-Address: 44:5b:ed:27:8a:00
This bridge is the root
Hello time(in seconds):2 Max Age(in seconds):20
Forward Delay(in seconds):15
Bridge ID Priority : 32768
MAC-Address: 44:5b:ed:27:8a:00
Hello time(in seconds):2 Max Age(in seconds):20
Forward Delay(in seconds):15
Port Role State Cost Priority Type BPDU-Tx BPDU-Rx TCN-Tx TCN-Rx
------------ -------------- ---------- -------------- ---------- ---------- ---------- ---------- ---------- ----------
...
1/1/50 Disabled Blocking 4 128 P2P 11220 0 0 0
And from the 5412
S-MILLER(vlan-1044)# show spanning-tree vlan 1044
Spanning Tree Information
STP Enabled [No] : Yes
Mode : RPVST
Extended System ID : Enabled
Ignore PVID Inconsistency : Disabled
Switch MAC Address : f40343-164d00
VLAN ID : 1044
RPVST Enabled : Enabled
Root MAC Address : f40343-164d00
Root Priority : 49,152
Root Path Cost : 0
Root Port : This switch is root
Operational Hello Time (secs) : 2
Topology Change Count : 0
Time Since Last Change : 64 days
Root Inconsistent Ports :
Loop Inconsistent Ports :
PVID Inconsistent Ports : K3
Designated
Port Type Cost Priority Role State Bridge
----- ---------- --------- --------- ---------- ---------- -----------------
K3 SFP+LR 2000 128 Designated Blocking f40343-164d00
How do I get those ports to stop blocking?