Windows网卡冗余配置

  • 建议开启了 Hyper-V 功能(optionalfeatures -> 勾选 Hyper-V -> 重启)。
  • 首先确认你两个物理网卡的准确名称:Get-NetAdapter -Physical
  • 创建冗余虚拟交换机: New-VMSwitch -Name “Redundant_NIC” -NetAdapterName “以太网”,”以太网 2″ -AllowManagementOS $true -EnableEmbeddedTeaming $true
  • 删除方法: Remove-VMSwitch -Name “Redundant_NIC”