我正在使用Azure的资源组。我创建了一个组,现在我正在尝试添加一个公共IP地址,我希望设置ReverseFqdn,它是DnsSettings的子项。
我正在尝试这个命令:
New-AzureRmPublicIpAddress -AllocationMethod Static -ResourceGroupName MySandboxRG1 -ReverseFqdn woodswild.com -Name MySandboxRG1PIP -Location "Central US" -DomainNameLabel mysandboxrg1dns
但是这给了我这个错误信息:
我已经阅读了20次错误信息,而我却没有理解它。如果我省略这个参数:
-ReverseFqdn woodswild.com
比它有效。但是,我当然没有设置ReverseFqdn。如果我然后试着像这样设置它:
$ip =get-AzureRmPublicIpAddress -Name MySandboxRG1PIP -ResourceGroupName MySandboxRG1
$ip.DnsSettings += @{ReverseFqdn = "woodswild.com"}
Set-AzureRmPublicIpAddress -PublicIpAddress $ip
我明白了: