Hi Stuart,
Welcome to our Q&A platform.
Multichannel, a part of the SMB 3.0 protocol was introduced from Windows server 2012, which increased the network performance and availability for File Servers. For multiple NIC, with Multichannel, SMB will create multiple TCP/IP connections for that single session (at least one per interface or more if they are RSS-capable). This allows SMB to use the combined NIC bandwidth available and makes it possible for the SMB client to continue to work uninterrupted if a NIC fails.
If you want to disable SMB Multichannel, you can use the following SMB cmdlets in Windows PowerShell:
To disable SMB Multichannel on the server side, type the following in Windows PowerShell:
Set-SmbServerConfiguration -EnableMultiChannel $false
To disable SMB Multichannel on the client side, type the following in Windows PowerShell:
Set-SmbClientConfiguration -EnableMultiChannel $false
To re-enable SMB Multichannel on the server side, type the following in Windows PowerShell:
Set-SmbServerConfiguration -EnableMultiChannel $true
To re-enable SMB Multichannel on the client side, type the following in Windows PowerShell:
Set-SmbClientConfiguration -EnableMultiChannel $true
For more details regarding of SMB Multichannel, you could refer to the following articles:
The basics of SMB Multichannel, a feature of Windows Server 2012 and SMB 3.0
Best Regards,
Sunny
----------
If the Answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.