我创建了Azure (Windows2016Datacenter,Standart F2s)。不知怎么的,“加速网络”选项被禁用了(通过规范,Standart F2s vm支持网络访问,我也有一个VM运行,并且具有加家用网和完全相同的VM大小和操作系统)。
基于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' .任何帮助都将不胜感激。谢谢。
发布于 2019-04-22 12:18:37
要使用加速网络创建Azure,需要在缩放集的enableAcceleratedNetworking设置中将networkInterfaceConfigurations设置为true:
"networkProfile": {
"networkInterfaceConfigurations": [
{
"name": "niconfig1",
"properties": {
"primary": true,
"enableAcceleratedNetworking" : true,
"ipConfigurations": [
...
]
}
}
]
}有关更多细节,请参见Azure VMSS中的加速网络。还有一些加速联网的局限性和制约因素。
https://stackoverflow.com/questions/55793988
复制相似问题