■ New-AzNetworkSecurityGroup 명령을 사용해 네트워크 보안 그룹을 만드는 방법을 보여준다.
▶ 실행 명령
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
$testNSRuleConfig = New-AzNetworkSecurityRuleConfig ` -Name TestNSGRule ` -Protocol Tcp ` -Direction Inbound ` -Priority 200 ` -SourceAddressPrefix * ` -SourcePortRange * ` -DestinationAddressPrefix * ` -DestinationPortRange 80 ` -Access Allow $testNSG = New-AzNetworkSecurityGroup ` -ResourceGroupName TestResourceGroup ` -Location EastUS ` -Name TestNSG ` -SecurityRules $testNSRuleConfig ※ TestNSGRule : 네트워크 보안 그룹 규칙명 TestResourceGroup : 리소스 그룹명 EastUS : 지역명 TestNSG : 네트워크 보안 그룹명 |