直到今天,我一直在使用以下命令将 PIP 添加到 VM 中没有问题。
Get-AzureVM -ServiceName "test1vm1" -Name "test1vm1" | Set-AzurePublicIP -PublicIPName "104.40.63.116" | Update-AzureVM
在 Azure 门户上,我在 VNet (test1) 中创建了一个 VM (test1vm1),它已启动并正在运行。在门户上,VM (test1vm1) 具有
PUBLIC VIRTUAL IP (VIP) ADDRESS
104.40.63.116
当我使用 Azure PowerShell 使用上述命令添加 PIP 时,出现以下错误:
VERBOSE: 10:35:07 AM - Completed Operation: Get Deployment
VERBOSE: 10:35:08 AM - Completed Operation: Get Deployment
VERBOSE: 10:35:08 AM - Begin Operation: Update-AzureVM
Update-AzureVM : BadRequest: The public IP name 104.40.63.116 is not valid.
At line:1 char:106
+ ... 4.40.63.116" | Update-AzureVM
+ ~~~~~~~~~~~~~~
+ CategoryInfo : CloseError: (:) [Update-AzureVM], CloudException
+ FullyQualifiedErrorId : Microsoft.WindowsAzure.Commands.ServiceManagement.IaaS.UpdateAzureVMCommand
有人可以帮忙吗?