■ New-AzNetworkSecurityRuleConfig 명령 : 네트워크 보안 규칙 구성 만들기
▶ 실행 명령
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
$nsgRule = New-AzNetworkSecurityRuleConfig ` -Name TestNSGRule ` -Protocol Tcp ` -Direction Inbound ` -Priority 200 ` -SourceAddressPrefix * ` -SourcePortRange * ` -DestinationAddressPrefix * ` -DestinationPortRange 80 ` -Access Allow ※ TestNSGRule : 네트워크 보안 그룹 규칙명 |