■ New-AzVM 명령을 사용해 가상 머신을 생성하는 방법을 보여준다.
▶ 실행 명령
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
New-AzVm ` -ResourceGroupName TestResourceGroup ` -Name TestVM ` -Location EastUS ` -VirtualNetworkName TestVNet ` -SubnetName TestSubnet ` -SecurityGroupName TestNetworkSecurityGroup ` -PublicIpAddressName TestPublicIpAddress ` -OpenPorts 80,3389 ※ TestResourceGroup : 리소스 그룹명 TestVM : 가상 머신명 EastUS : 리전명 TestVNet : 가상 네트워크명 TestSubnet : 서브넷명 TestNetworkSecurityGroup : 네트워크 보안 그룹 TestPublicIpAddress : 공인 IP 주소명 80,3389 : 공개 포트 |