跳到主要內容

發表文章

目前顯示的是有「NIC Team」標籤的文章

以 PowerShell 建立 Switch Embedded Teaming (SET)

Switch Embedded Teaming (SET) 技術始於 Windows Server 2016 。這是一種整合在 Hyper-V 虛擬交換器中的 NIC 小組( NIC Teaming )解決方案,專為提升虛擬化環境的網路效能與高可用性而設計,在 Windows Server 2016 及之後版本中全面支援。是用來取代 LBFO ( Load Balancing and Failover ) ,並於 Windows Server 2022 開始宣稱棄用 LBFO( 過時 ) ,如要繼續使用 LBFO 必須使用 PowerShell 以指令方式建立 。 #SET 非依賴 Switch , LBFO 依賴 Switch LCAP 。   Ref: [Network] Windows Server 2016 攻略 ( 七 ) - 新世代虛擬網路交換器 SET ( Switch Embedded Teaming ) Ref: Host network requirements for Azure Local Switch Embedded Teaming (SET) 也必須以 PowerShell 方式: # 建立 Switch Embedded Teaming New-VMSwitch -Name "SETTeam" -NetAdapterName "NIC1","NIC2" -EnableEmbeddedTeaming 1 -EnableIov 1 -AllowManagementOS 1   # 設定負載平衡模式 ( 建議針對 10G 網卡設為 HyperVPort) Set-VMSwitchTeam -Name " SETTeam " -LoadBalancingAlgorithm HyperVPort   # ( 選配 ) 如果您的主機管理網路 (Management OS) 有 VLAN # Set-VMNetworkAdapterVlan -ManagementOS -VMNetworkAdapterName " SET...

Create NIC Team(LBFO) of VMSwitch by PowerShell after Windows Server 2016 on Hyper-V

Switch Embedded Teaming (SET) Should replace  the NIC Team(LBFO) after Windows Server 2016 on Hyper-V  Ref:  Windows Server 2016 攻略 (七) - 新世代虛擬網路交換器 SET ( Switch Embedded Teaming ) Windows 2016 以後,Hyper-V VMSwitch 預設不支持 NIC Team (LBFO),需使用 command 方式才可使用。主要原因是 NIC Team 不支援 RDMA(RoCE)、SR-IOV 範例如下: New-VMSwitch -Name VMInterfaceName -NetAdapterName NICTeamName -AllowNetLbfoTeams 1 取代的技術稱為 Switch Embedded Teaming (SET)