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