gpt4 book ai didi

Azure NSG - 从输入 csv 中筛选某些 IP

转载 作者:行者123 更新时间:2023-12-03 01:41:32 24 4
gpt4 key购买 nike

我正在使用 PowerShell 创建 Azure NSG,它将使用带有安全规则的 .csv 文件中的输入。我正在使用下面的脚本。

$NSG = Get-AzureRmNetworkSecurityGroup -Name test -ResourceGroupName RG-VM-QTY

foreach($rule in import-csv "SystemPath\inputfile.csv")
{
$NSG | Add-AzureRmNetworkSecurityRuleConfig -Name $rule.name -Access Allow -Protocol $rule.protocol -Direction $rule.direction -Priority $rule.priority
-SourceAddressPrefix $rule.source -SourcePortRange *
-DestinationAddressPrefix $rule.destination -DestinationPortRange $rule.port
}

$NSG | Set-AzureRmNetworkSecurityGroup

想要检查是否有办法限制添加特定 IP(例如 127.0.0.1)在任何规则中添加为源或目标。如果 .csv 中存在 IP 127.0.0.1,我可以进行任何检查以避免完全创建 NSG?

提前谢谢大家。!干杯。

最佳答案

这是修改后的 PowerShell 脚本,添加了一个简单的 if 条件,以检查 SourceAddressPrefix 和 DestinationAddressPrefix 是否不应该正好是 127.0.0.1

$NSG = Get-AzureRmNetworkSecurityGroup -Name test -ResourceGroupName RG-VM-QTY 

foreach($rule in import-csv "SystemPath\inputfile.csv")
{
# additional if condition to check that source or destination address prefix should not be 127.0.0.1
if($rule.SourceAddressPrefix -ne "127.0.0.1" -And $rule.DestinationAddressPrefix -ne "127.0.0.1")
{
$NSG | Add-AzureRmNetworkSecurityRuleConfig -Name $rule.name -Access Allow -Protocol $rule.protocol -Direction $rule.direction -Priority $rule.priority
-SourceAddressPrefix $rule.source -SourcePortRange * -DestinationAddressPrefix $rule.destination -DestinationPortRange $rule.port
}
}

$NSG | Set-AzureRmNetworkSecurityGroup

您现在的状况很容易检查 127.0.0.1,因此状况是否足够好。

如果您遇到更复杂的逻辑,请考虑创建一个单独的函数,例如 ValidateRule(),它可以封装所有条件并调用该函数来检查是否应添加规则。

关于Azure NSG - 从输入 csv 中筛选某些 IP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52878939/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com