Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Version History

Version 1 Next »

After uploading the vNIOS image, you are ready to create a VM instance and deploying it from the Azure CLI.
To deploy the vNIOS instance on an unmanaged disk, complete the following steps from the Azure CLI:

  1. Create two network interfaces that specify the corresponding resource group, subnet, and virtual network names:
    1. az network nic create --name <NIC-1_name> --resource-group <resource_group_name> --subnet <subnet_name> --vnet-name <virtual_network_name>
    2. az network nic create --name <NIC-2_name> --resource-group <resource_group_name> --subnet <subnet_name> --vnet-name <virtual_network_name>
  2. Create a NIOS instance by attaching the network interfaces with the following details:
    az vm create --resource-group <resource_group_name> --name <instance_name> --nics <NIC-1_name> <NIC-2_name> --os-type Linux --storage-account <storage_account_name> --storage-container-name <storage_container_blob_name> --image "https://<storage_account_name>.blob.core.windows.net/<storage>/
    <container_blob_name>/<image_name>" --os-disk-name <instance_name> --size <VM_size> --admin-username azureuser --admin-password Infoblox@123 --use-unmanaged-disk --location <location_where_VM_must_be_deployed>


    Example:
    az vm create --resource-group rg-east-01 --name test-vm --nics nic1 nic2 --os-type Linux --storage-account rgeastcloudautomation --storage-container-name images --image "https://rgeastcloudautomation.blob.core.windows.net/images/nios-image.vhd" --os-disk-name test-vm --size Standard_DS12_v2 --admin-username azureuser --admin-password Infoblox@123 --use-unmanaged-disk --location eastus
  • No labels