在Azure资源组中创建公共IP时设置ReverseFqdn

时间:2016-02-05 20:35:47

标签: azure ip azure-powershell azure-resource-manager

我正在使用Azure的资源组。我创建了一个组,现在我正在尝试添加一个公共IP地址,我希望设置ReverseFqdn,它是DnsSettings的子项。

我正在尝试这个命令:

New-AzureRmPublicIpAddress -AllocationMethod Static -ResourceGroupName MySandboxRG1 -ReverseFqdn woodswild.com -Name MySandboxRG1PIP -Location "Central US" -DomainNameLabel mysandboxrg1dns

但是这给了我这个错误信息:

enter image description here

我已经阅读了20次错误信息,而我却没有理解它。如果我省略这个参数:

 -ReverseFqdn woodswild.com

比它有效。但是,我当然没有设置ReverseFqdn。如果我然后试着像这样设置它:

$ip =get-AzureRmPublicIpAddress -Name MySandboxRG1PIP -ResourceGroupName MySandboxRG1 
$ip.DnsSettings += @{ReverseFqdn = "woodswild.com"}
Set-AzureRmPublicIpAddress -PublicIpAddress $ip

我明白了:

enter image description here

0 个答案:

没有答案