« Back to Technical Discussions

FC uplink into a VSAN

Combination View Flat View Tree View
Threads [ Previous | Next ]
Looking for a sample of the XML required to place an FC uplink into a VSAN.  Not having much luck grabbing the relevant XML from UCSM...
 

Is this what you are looking for?

Changing from Default VSAN to HDSTest1:
<configConfMos cookie="YOURCOOKIE" inHierarchical="false">
<inConfigs>
<pair key="fabric/san/net-HDSTest1/phys-switch-A-slot-2-port-1">
<fabricFcVsanPortEp adminState="enabled" dn="fabric/san/net-HDSTest1/phys-switch-A-slot-2-port-1" name="" portId="1" slotId="2" switchId="A">
</fabricFcVsanPortEp>
</pair>
</inConfigs>
</configConfMos>


Changing back to Default VSAN:
<configConfMos cookie="YOURCOOKIE" inHierarchical="false">
<inConfigs>
<pair key="fabric/san/net-default/phys-switch-A-slot-2-port-1">
<fabricFcVsanPortEp adminState="enabled" dn="fabric/san/net-default/phys-switch-A-slot-2-port-1" name="" portId="1" slotId="2" switchId="A">
</fabricFcVsanPortEp>
</pair>
</inConfigs>
</configConfMos>

Hope this helps!

Chris Atkinson

That was pretty close, yeah. Thanks!

Had to add the fabric right after the "san" part of the path (as in "fabric/san/A/..."), but other than that, it worked great.

JK