Hello Ahmed Essam,
On the SMB bandwidth limits: the Set-SMBBandwidthLimit cmdlet applies caps at the SMB protocol layer, independent of the SET weights. In your case, since you already have MinimumBandwidthWeight configured in the SET switch (Live Migration 40, Backup 40, Cluster/Host Management 10 each), applying an SMB bandwidth cap would override the dynamic allocation logic and force a hard ceiling. That can be counterproductive on 100Gbps links because SET weights are designed to proportionally share bandwidth across workloads. Unless you have a strict compliance requirement to guarantee Live Migration never exceeds a certain throughput, it is best practice to rely on SET weights alone. Microsoft’s documentation confirms that SMB bandwidth limits are optional and primarily useful in mixed or oversubscribed environments. In a converged 100Gbps fabric with RDMA enabled, you should not combine both unless you want to enforce a hard cap.
On the DCB feature requirement: the fact that Get-NetAdapterRdma shows Operational: True but PFC/ETS: False means RDMA is functional but Data Center Bridging is not active. Windows Server does not automatically enable PFC/ETS just because SCVMM weights or Nexus switch CoS/DCBX are configured. You must explicitly install the Data-Center-Bridging feature (Install-WindowsFeature Data-Center-Bridging) and then define QoS policies with New-NetQosTrafficClass and Enable-NetQosFlowControl. SCVMM can push QoS policies, but the host OS still requires the DCB feature to interpret and enforce them. In other words, the Nexus side handles CoS/DCBX advertisement, but the Windows host must have DCB enabled to negotiate and flip those flags to True. Without it, you’ll see RDMA working but no PFC/ETS enforcement, which can lead to congestion under load.
So the recommended path is: keep SET weights as your primary bandwidth governance, avoid SMB caps unless you need hard limits, and install/configure DCB on each host to align with your Intersight QoS policy. That will ensure PFC/ETS negotiation succeeds and your RDMA traffic is lossless across the fabric.
I hope you've found something useful here. If it helps you get more insight into the issue, it's appreciated to accept the answer. Should you have more questions, feel free to leave a message. Have a nice day!
Domic Vo.