gpt4 book ai didi

azure - 如何创建具有加速网络的 Azure VMSS?

转载 作者:行者123 更新时间:2023-12-03 02:51:36 35 4
gpt4 key购买 nike

我创建了 Azure VMSS(Windows 2016 Datacenter、Standart F2s)。不知何故,“加速网络”选项被禁用(根据规范,Standart F2s 虚拟机支持网络加速,而且我也有单个虚拟机运行加速网络,并且虚拟机大小和操作系统完全相同)。

基于https://learn.microsoft.com/en-us/azure/virtual-network/create-vm-accelerated-networking-powershell#vmss ,升级不起作用。我收到以下错误:

Cannot add network interface '/subscriptions/****/resourceGroups/*****/providers/Microsoft.Network/networkInterfaces/|providers|Microsoft.Compute|virtualMachineScaleSets|*****|virtualMachines|1|networkInterfaces|*****' with accelerated networking to an existing virtual machine '/subscriptions/******/resourceGroups/*****/providers/Microsoft.Compute/virtualMachines/|providers|Microsoft.Compute|*****|*******|virtualMachines|1' .

如有任何帮助,我们将不胜感激。谢谢。

最佳答案

要创建具有加速网络的 Azure VMSS,您需要在规模集的 networkInterfaceConfigurations 设置中将 enableAcceleratedNetworking 设置为 true:

"networkProfile": {
"networkInterfaceConfigurations": [
{
"name": "niconfig1",
"properties": {
"primary": true,
"enableAcceleratedNetworking" : true,
"ipConfigurations": [
...
]
}
}
]
}

有关更多详细信息,请参阅 Accelerated Networking in Azure VMSS 。还有一些Limitations and Constraints of the Accelerated Networking .

关于azure - 如何创建具有加速网络的 Azure VMSS?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55793988/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com