1
SMB 다중 채널이 작동 하는지 확인 - 윈도우10업데이트실패

SMB 다중 채널이 작동 하는지 확인

다음 절차를 사용 하 여 SMB 다중 채널이 작동 하는지 확인 합니다.

 

1. 네트워크 어댑터 구성이 올바른지 확인 하려면 smb 서버와 smb 클라이언트 둘 다에서 Windows PowerShell에 다음을 입력 합니다.

 

Get-NetAdapter

Get-NetAdapterRSS

Get-NetAdapterRDMA

Get-NetAdapterHardwareInfo

 

 

2. SMB 다중 채널이 사용 하도록 설정 되었는지 확인 하려면 SMB에서 네트워크 어댑터를 올바르게 식별 하 고 네트워크 어댑터의 RSS 및 RDMA 기능이 올바르게 식별 되었는지 확인 하 고 다음을 수행 합니다.

 

SMB 클라이언트의 Windows PowerShell에 다음을 입력 합니다.

Get-SmbClientConfiguration | Select EnableMultichannel

Get-SmbClientNetworkInterface

 

SMB 서버의 Windows PowerShell에 다음을 입력 합니다.

Get-SmbServerConfiguration | Select EnableMultichannel

Get-SmbServerNetworkInterface

 

 

3. Smb 클라이언트에서 장기 실행 파일 복사 작업을 수행 하 여 SMB 서버에서 진행 중인 세션을 만듭니다. 복사 작업을 실행 하는 동안 Windows PowerShell에 다음을 입력 하 여 연결에서 올바른 버전의 smb를 사용 하 고 smb 다중 채널이 작동 하는지 확인 합니다.

Get-SmbConnection

Get-SmbMultichannelConnection

Get-SmbMultichannelConnection -IncludeNotSelected

 

 

 

https://docs.microsoft.com/ko-kr/azure-stack/hci/manage/manage-smb-multichannel

이 게시물을

댓글'1'
File Server : Configure SMB Multi Channel
2020/12/28
 
To configure SMB Multi Channel feature that is implemented in SMB 3.0, it's possible to use multiple network interfaces for file service.
 
To use SMB Multi Channel feature, it must satisfy at least one of the following conditions.
* Network adopters support RSS (Receive Side Scaling)
* Network adopters are grouped with NIC Teaming
* Network adopters support RDMA (Remote Direct Memory Access)
Refer to more details follows.
⇒ https://docs.microsoft.com/ja-jp/archive/blogs/josebda/the-basics-of-smb-multichannel-a-feature-of-windows-server-2012-and-smb-3-0

[1] Run PowerShell with Admin Privilege and Configure.
Windows PowerShell
Copyright (C) Microsoft Corporation. All rights reserved.

# confirm the feature is enabled or not (enabled by default)
PS C:\Users\Administrator> Get-SmbServerConfiguration | Out-String -Stream | Select-String "EnableMultiChannel"

EnableMultiChannel              : True

# if disabled, enable like follows
PS C:\Users\Administrator> Set-SmbServerConfiguration -EnableMultiChannel $True

# confirm network interfaces
PS C:\Users\Administrator> Get-SmbServerNetworkInterface

Scope Name Interface Index RSS Capable RDMA Capable Speed    IpAddress
---------- --------------- ----------- ------------ -----    ---------
*          3               True        False        100 Gbps fe80::7494:7d50:b117:fb7f
*          7               True        False        100 Gbps fe80::6c2e:c49f:a87c:e46a
*          3               True        False        100 Gbps 10.0.0.111
*          7               True        False        100 Gbps 10.0.0.101

# set Multi Channel
# -ServerName : (hostname)
# -InterfaceIndex : (network interface to be used)
PS C:\Users\Administrator> New-SmbMultichannelConstraint -ServerName "rx-7" -InterfaceIndex 3, 7 -Force

InterfaceAlias : Ethernet 2
InterfaceGuid  : {2306e939-d659-457f-a5a7-a74732d811fb}
InterfaceIndex : 3
ServerName     : rx-7
PSComputerName :

InterfaceAlias : Ethernet
InterfaceGuid  : {fdad18a7-270b-414c-938d-3fbeb45f507f}
InterfaceIndex : 7
ServerName     : rx-7
PSComputerName :

# confirm settings
PS C:\Users\Administrator> Get-SmbMultichannelConstraint

InterfaceAlias : Ethernet 2
InterfaceGuid  : {2306e939-d659-457f-a5a7-a74732d811fb}
InterfaceIndex : 3
ServerName     : rx-7
PSComputerName :

InterfaceAlias : Ethernet
InterfaceGuid  : {fdad18a7-270b-414c-938d-3fbeb45f507f}
InterfaceIndex : 7
ServerName     : rx-7
PSComputerName :


# if remove settings, configure like follows
PS C:\Users\Administrator> Remove-SmbMultichannelConstraint -ServerName "rx-7"

Confirm
Are you sure you want to perform this action?
Performing operation 'Remove-SmbMultiChannelConstraint' on Target 'rx-7,{2306e939-d659-457f-a5a7-a74732d811fb}'.
[Y] Yes  [A] Yes to All  [N] No  [L] No to All  [S] Suspend  [?] Help (default is "Y"): Y

Confirm
Are you sure you want to perform this action?
Performing operation 'Remove-SmbMultiChannelConstraint' on Target 'rx-7,{fdad18a7-270b-414c-938d-3fbeb45f507f}'.
[Y] Yes  [A] Yes to All  [N] No  [L] No to All  [S] Suspend  [?] Help (default is "Y"): Y
[2]
Verify file transfer speed to access to the target file service from any client computer.
 

이 댓글을

공유하기

번호
분류
제목
조회 수
928
사용설명
조회 수: 275

SEARCH