■ New-AzNetworkInterface 명령을 사용해 네트워크 인터페이스를 생성하는 방법을 보여준다.
▶ 실행 명령
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
$subnet = New-AzVirtualNetworkSubnetConfig -Name TestSubnet -AddressPrefix 10.0.0.0/24 $vnet = New-AzVirtualNetwork ` -ResourceGroupName TestResourceGroup ` -Location EastUS ` -Name TestVNet ` -AddressPrefix 10.0.0.0/16 ` -Subnet $subnet $publicIPAddress = New-AzPublicIpAddress ` -ResourceGroupName TestResourceGroup ` -Location EastUS ` -AllocationMethod Dynamic ` -Name TestPublicIPAddress New-AzNetworkInterface ` -ResourceGroupName TestResourceGroup ` -Location EastUS ` -Name TestVM ` -SubnetId $vnet.Subnets[0].Id ` -PublicIpAddressId $publicIPAddress.Id ※ TestSubnet : 서브넷명 TestResourceGroup : 리소스 그룹명 EastUS : 지역명 TestVNet : 가상 네트워크명 TestPublicIPAddress : 공인 IP 주소명 TestVM : 가상 머신명 |