Skip to main content

Creating a Virtual Network

Follow these steps to create a virtual network (VNet) in the Azure portal when you are connecting your Azure account to Dremio Cloud or adding a project to an organization.

caution

Dremio Cloud on Azure currently supports only one subnet for a project. Ensure that your subnet is appropriately sized for the number of virtual machines that will be running in your project[s]. VNet and subnet sizes cannot be updated after creation.

  1. Log in to the Azure portal.

  2. Search for "Virtual networks" and select the Virtual networks service in the search results.

  3. Click Create in the top left.

  4. On the Basics tab, complete the following:

    a. For Subscription, select the appropriate subscription from the dropdown.

    b. For Resource group, select the appropriate resource group from the dropdown.

    c. For Virtual network name, enter a name for your VNet.

    d. For Region, select the region for your VNet.

    e. Click Next.

  5. On the Security tab, click Next without making any modifications.

  6. On the IP addresses tab, complete the following:

    a. (Optional) Modify the default subnet by taking these steps:

    • Click the pencil icon displayed to the right of the subnet name in the table.

    • In the Edit subnet panel on the right, for Subnet size, select the size from the dropdown. Dremio advises /16 for the subnet size. Then click Save.

    b. Click Next.

  7. On the Tags tab, complete the following:

    a. (Optional) For Name, enter a tag name for your resource group.

    b. (Optional) For Value, enter a value to help search and filter your resources or track your Azure costs.

    c. Click Next.

  8. On the Review + create tab, click Create.

CIDR Block Reference Table

note

The number of IP addresses of the VNet must be equal to or greater than the number of IP addresses for the subnet.

The reference table below gives information pertaining to the number of IP addresses created for CIDR blocks.

CIDR Notation# of IP Addresses
/1665,536
/1732,768
/1816,384
/198,192
/204,096
/212,048
/221,024
/23512
/24256

Azure CLI

A VNet can also be created through the Azure CLI. See the following instructions:

#example of a resource group, a VNet, subnet names, and CIDR blocks given
az network vnet create -g dremiocloudresourcegroup -n dremio-cloud-vnet --address-prefix /16 --subnet-name dremio-cloud-sn --subnet-prefix /16