PowerShell Logo Small

Get-SmbServerNetworkInterface



This is the built-in help made by Microsoft for the command 'Get-SmbServerNetworkInterface', in PowerShell version 5 - as retrieved from Windows version 'Microsoft Windows Server 2012 R2 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 network interfaces used by the Server Message Block (SMB) server.

SYNTAX


Get-SmbServerNetworkInterface [-AsJob] [-CimSession <CimSession[]>] [-ThrottleLimit <Int32>] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Get-SmbServerNetworkInterface cmdlet retrieves the network interfaces used by the Server Message Block (SMB) server.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/?LinkId=289534
Get-SmbClientNetworkInterface

REMARKS

<

Examples


EXAMPLE 1

PS C:\>Get-SmbServerNetworkInterface
Scope Name Interface Index RSS Capable RDMA Capable Speed IpAddress
---------- --------------- ----------- ------------ ----- ---------
Contoso-FS 14 False False 1 Gbps 192.168.100.22
Contoso-FS 12 True True 32 Gbps 192.168.101.22
Contoso-FS 15 True True 32 Gbps 192.168.102.22
* 15 True True 32 Gbps 192.168.102.22
* 15 True True 32 Gbps 192.168.102.11
* 14 False False 1 Gbps 192.168.100.22
* 14 False False 1 Gbps 192.168.100.11
* 13 False False 1 Gbps 172.30.182.8
* 12 True True 32 Gbps 192.168.101.22
* 12 True True 32 Gbps 192.168.101.11
Contoso-SO 15 True True 32 Gbps 192.168.102.11
Contoso-SO 14 False False 1 Gbps 192.168.100.11
Contoso-SO 12 True True 32 Gbps 192.168.101.11
FE80::C8C0:F65D:... 13 False False 1 Gbps 172.30.182.8



This example retrieves the network interfaces used by the SMB server.




EXAMPLE 2

PS C:\>Get-SmbServerNetworkInterface | Where-Object -Property LinkSpeed -Gt 10GB
Scope Name Interface Index RSS Capable RDMA Capable Speed IpAddress
---------- --------------- ----------- ------------ ----- ---------
Contoso-FS 12 True True 32 Gbps 192.168.101.22
Contoso-FS 15 True True 32 Gbps 192.168.102.22
* 15 True True 32 Gbps 192.168.102.22
* 15 True True 32 Gbps 192.168.102.11
* 12 True True 32 Gbps 192.168.101.22
* 12 True True 32 Gbps 192.168.101.11
Contoso-SO 15 True True 32 Gbps 192.168.102.11
Contoso-SO 12 True True 32 Gbps 192.168.101.11



This example retrieves the network interfaces used by the SMB server with the link speed of 10 gigabits or faster.




EXAMPLE 3

PS C:\>Get-SmbServerNetworkInterface | Where-Object -Property ScopeName -Eq Contoso-FS
Scope Name Interface Index RSS Capable RDMA Capable Speed IpAddress
---------- --------------- ----------- ------------ ----- ---------
Contoso-FS 14 False False 1 Gbps 192.168.100.22
Contoso-FS 12 True True 32 Gbps 192.168.101.22
Contoso-FS 15 True True 32 Gbps 192.168.102.22



This example retrieves the network interfaces used by the SMB server named Contoso-FS.




EXAMPLE 4

PS C:\>Get-SmbServerNetworkInterface | Where-Object -Property ScopeName -Eq Contoso-FS | Select-Object -Property *
FriendlyName : Internal
InterfaceIndex : 14
IpAddress : 192.168.100.22
LinkSpeed : 1000000000
RdmaCapable : False
RssCapable : False
ScopeName : Contoso-FS
PSComputerName :
CimClass : ROOT/Microsoft/Windows/SMB:MSFT_SmbServerNetworkInterface
CimInstanceProperties : {FriendlyName, InterfaceIndex, IpAddress, LinkSpeed...}
CimSystemProperties : Microsoft.Management.Infrastructure.CimSystemProperties

FriendlyName : RDMA1
InterfaceIndex : 12
IpAddress : 192.168.101.22
LinkSpeed : 32000000000
RdmaCapable : True
RssCapable : True
ScopeName : Contoso-FS
PSComputerName :
CimClass : ROOT/Microsoft/Windows/SMB:MSFT_SmbServerNetworkInterface
CimInstanceProperties : {FriendlyName, InterfaceIndex, IpAddress, LinkSpeed...}
CimSystemProperties : Microsoft.Management.Infrastructure.CimSystemProperties

FriendlyName : RDMA2
InterfaceIndex : 15
IpAddress : 192.168.102.22
LinkSpeed : 32000000000
RdmaCapable : True
RssCapable : True
ScopeName : Contoso-FS
PSComputerName :
CimClass : ROOT/Microsoft/Windows/SMB:MSFT_SmbServerNetworkInterface
CimInstanceProperties : {FriendlyName, InterfaceIndex, IpAddress, LinkSpeed...}
CimSystemProperties : Microsoft.Management.Infrastructure.CimSystemProperties



This example retrieves all of the network interfaces used by the SMB server named Contoso-FS.