1 | initial version |
You are looking at an SMB feature called multichannel. SMB tries to optimize network traffic by spreading traffic over multiple TCP connections and multiple interfaces.
The Microsoft documentation provides some information on the management of SMB multichannel.
Try the PowerShell cmdlet Get-SmbMultichannelConnection
to see, how your systems are configured. You can disable multichannel on the client or on the server side. Try this:
Set-SmbServerConfiguration -EnableMultiChannel $false
Set-SmbClientConfiguration -EnableMultiChannel $false
Good luck
Eddi