You need to implement resolution steps as mentioned in the KB to avoid False Trunk cable connection formed between two devices.
However before adding required MAC address range to the parameter VSSMACRange you need to know all the devices exposing this particular MAC address range in IP domain.
All supported releases of Smart
NOTE: Please try this in your non-production environment first.
1). Use the following command to check which device hosts the required MAC address:
dmctl -s <IP-Domain> get MAC::MAC-##-##-##-##-##-##::HostedBy
2). Use below asl script to get the list of devices actively exposing the required MAC address ##-##-##-##-##-## as the designated bridge on respective ports:
find_mac.asl and add the following code: START {
.. eol
} do {
foreach nodeName (getInstances("STPNode")) {
nodeObj = object("STPNode", nodeName);
if (!nodeObj->isNull()) {
macObj = nodeObj->DesignatedBridgeMAC;
if (glob("*MAC::MAC-##-##-##-##-##-##*", macObj)) {
print("Match found: ".nodeName);
}
}
}
}
/BASE_DIR/bin/sm_adapter -s <IP-Domain> /path-to-file/find_mac.asl