我可以使用以下代码在我的网络安全组中为一个源 IP 地址 ( ) 成功配置单个规则$SourceAddressPrefix="x.x.x.x"
:
Set-AzureRmNetworkSecurityRuleConfig
-NetworkSecurityGroup $nsg
-Name $name
-Direction Inbound
-Priority $priority
-Access Allow
-SourceAddressPrefix $sourcePrefix
-SourcePortRange *
-DestinationAddressPrefix *
-DestinationPortRange $destinationPortRange
-Protocol TCP
| Set-AzureRmNetworkSecurityGroup
我想为多个 IP 配置这个单一规则,但是当我提供时$SourceAddressPrefix="x.x.x.x, y.y.y.y"
(就像我可以在 Azure 门户中交互式地做的那样)我得到了以下错误:
“...地址前缀无效。提供的值:xxxx, yyyy”
问题
如何在一条规则中提供多个 IP,就像在 Azure 门户中那样?