无法在Azure中分配保留的IP

时间:2018-09-11 10:21:41

标签: azure networking ip static-ip-address

我遇到有关Azure中IP分配的问题。最近IP分配是动态的,我想更改为Reserved,但是在门户网站上我看不到此选项可编辑/启用更改,并且通过命令行没有像New-AzureReservedIP这样的命令。有人可以帮忙吗?我会非常感激。

谢谢

2 个答案:

答案 0 :(得分:1)

或者,您可以使用powershell来执行此操作,您可以使用以下脚本: 在执行之前,请确保公共IP地址资源未与正在运行的网络接口关联。

 Login-AzureRMaccount

$PIPName = 'Public IP Name'
$ResourceGroupName = 'Resource Group Name'


$PIP = Get-AzureRmPublicIpAddress -Name $PIPName -ResourceGroupName $ResourceGroupName
$PIP.PublicIpAllocationMethod = "Static"  
Set-AzureRmPublicIpAddress -PublicIpAddress $PIP
Get-AzureRmPublicIpAddress -Name $PIPName -ResourceGroupName $ResourceGroupName

更多详细信息,请找到here

答案 1 :(得分:0)

要将IP分配从“动态”更改为“静态”:

VM =>转到设置=>网络=>单击公共IP =>设置=>配置=>分配:静态。

enter image description here

enter image description here