PowerShell Logo Small

Get-SmbMultichannelConnection



This is the built-in help made by Microsoft for the command 'Get-SmbMultichannelConnection', in PowerShell version 3 - as retrieved from Windows version 'Microsoft Windows Server 2012 Standard' PowerShell help files on 2016-06-23.

For PowerShell version 3 and up, where you have Update-Help, this command was run just before creating the web pages from the help files.

SYNOPSIS

Retrieves the Server Message Block (SMB) connections made between the SMB client network interfaces and the SMB server network interfaces.

SYNTAX


Get-SmbMultichannelConnection [[-ServerName] <String[]>] [-AsJob [<SwitchParameter>]] [-CimSession <CimSession[]>] [-IncludeNotSelected
[<SwitchParameter>]] [-ThrottleLimit <Int32>] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Get-SmbMulitchannelConnection cmdlet retrieves the Server Message Block (SMB) connections made between the SMB client network interfaces
and the SMB server network interfaces. This cmdlet provides information about how the SMB multi-channel pairs the client and the server
network interfaces and which pairs are selected to use for the SMB connections.



<

RELATED LINKS

Update-SmbMultichannelConnection

REMARKS

<

Examples


EXAMPLE 1

PS C:\> Get-SmbMulitchannelConnection
Server Name Selected Client IP Server IP Client Server Client RSS Client RDMA
Interface Interface Capable Capable
Index Index
----------- -------- --------- --------- -------------- -------------- -------------- --------------
Contoso-SO True 192.168.102.13 192.168.102.11 15 15 False True
Contoso-SO True 192.168.101.13 192.168.101.11 12 12 False True
Contoso-FS True 192.168.101.13 192.168.101.22 12 12 False True
Contoso-FS True 192.168.102.13 192.168.102.22 15 15 False True
Contoso-FS1 True 192.168.102.13 192.168.102.22 15 15 False True
Contoso-FS1 True 192.168.101.13 192.168.101.22 12 12 False True



This example retrieves the SMB connections made between the SMB client network interfaces and the SMB server network interfaces.




EXAMPLE 2

PS C:\> Get-SmbMultichannelConnection -ServerName Contoso-SO
Server Name Selected Client IP Server IP Client Server Client RSS Client RDMA
Interface Interface Capable Capable
Index Index
----------- -------- --------- --------- -------------- -------------- -------------- --------------
Contoso-SO True 192.168.102.13 192.168.102.11 15 15 False True
Contoso-SO True 192.168.101.13 192.168.101.11 12 12 False True



This example retrieves the SMB connections made between the SMB client network interfaces and the SMB server network interfaces for the SMB
server named Contoso-SO.




EXAMPLE 3

PS C:\> Get-SmbMultichannelConnection -ServerName Contoso-SO | Select –Property *
ClientInterfaceFriendlyName : RDMA2
ClientInterfaceIndex : 15
ClientIpAddress : 192.168.102.13
ClientLinkSpeed : 32000000000
ClientRdmaCapable : True
ClientRSSCapable : False
CurrentChannels : 2
Failed : False
FailureCount : 0
MaxChannels : 2
Selected : True
ServerInterfaceIndex : 15
ServerIpAddress : 192.168.102.11
ServerLinkSpeed : 32000000000
ServerName : Contoso-SO
ServerRdmaCapable : True
ServerRSSCapable : False
PSComputerName :
CimClass : ROOT/Microsoft/Windows/SMB:MSFT_SmbMultichannelConnection
CimInstanceProperties : {ClientInterfaceFriendlyName, ClientInterfaceIndex, ClientIpAddress, ClientLinkSpeed...}
CimSystemProperties : Microsoft.Management.Infrastructure.CimSystemProperties

ClientInterfaceFriendlyName : RDMA1
ClientInterfaceIndex : 12
ClientIpAddress : 192.168.101.13
ClientLinkSpeed : 32000000000
ClientRdmaCapable : True
ClientRSSCapable : False
CurrentChannels : 2
Failed : False
FailureCount : 0
MaxChannels : 2
Selected : True
ServerInterfaceIndex : 12
ServerIpAddress : 192.168.101.11
ServerLinkSpeed : 32000000000
ServerName : Contoso-SO
ServerRdmaCapable : True
ServerRSSCapable : False
PSComputerName :
CimClass : ROOT/Microsoft/Windows/SMB:MSFT_SmbMultichannelConnection
CimInstanceProperties : {ClientInterfaceFriendlyName, ClientInterfaceIndex, ClientIpAddress, ClientLinkSpeed...}
CimSystemProperties : Microsoft.Management.Infrastructure.CimSystemProperties



This example retrieves all of the information about the SMB connections made between the SMB client network interfaces and the SMB server
network interfaces for the SMB server named Contoso-SO.




EXAMPLE 4

PS C:\> Get-SmbMultichannelConnection -ServerName Contoso-SO -IncludeNotSelected

Server Name Selected Client IP Server IP Client Server Client RSS Client RDMA
Interface Interface Capable Capable
Index Index
----------- -------- --------- --------- -------------- -------------- -------------- --------------
Contoso-SO True 192.168.102.13 192.168.102.11 15 15 False True
Contoso-SO False 192.168.102.13 192.168.102.11 15 15 True False
Contoso-SO True 192.168.101.13 192.168.101.11 12 12 False True
Contoso-SO False 192.168.101.13 192.168.101.11 12 12 True False
Contoso-SO False 192.168.100.13 192.168.100.11 14 14 False False
Contoso-SO False 172.30.182.10 192.168.102.11 32 15 False False
Contoso-SO False 172.30.182.10 192.168.102.11 32 15 False False
Contoso-SO False 172.30.182.10 192.168.100.11 32 14 False False
Contoso-SO False 172.30.182.10 192.168.101.11 32 12 False False
Contoso-SO False 172.30.182.10 192.168.101.11 32 12 False False



This example retrieves the all of the connections made between the SMB client network interfaces and the SMB server network interfaces for the
SMB server named Contoso-SO.