In my previous post, we started the process of deploying SharePoint 2019 to Azure by setting up the resource group. In this post, we will build the network configurations for the SharePoint environment in our Azure environment. The network will exist in the same region as the resource group created previously and will be used to all the SharePoint environments to communicate with each other as well as the internet.
This is a multi-part series. You can see what is coming and review other posts in the series by clicking one of the following links:
- Microsoft Azure – Prepping the Azure Environment for SharePoint 2019
- Microsoft Azure – Configure Azure Network Resources for SharePoint 2019 (this post)
- Microsoft Azure – Build Storage Resources for Azure SharePoint 2019
- Microsoft Azure – Creating the Domain Controller
- Microsoft Azure – Configuring the Domain Controller Network
- Microsoft Azure – Configuring DNS and Active Directory
- Microsoft Azure – Build SharePoint Server Virtual Machine
- Microsoft Azure – Deploy SQL Server
- Microsoft Azure – Build SharePoint 2019 Template with AutoSPInstaller
- Microsoft Azure – Prepping SharePoint Servers
- Microsoft Azure – Installing SharePoint 2019
- Microsoft Azure – Add a Load Balancer for External Access
Configure Azure Network Resources for SharePoint 2019
Creating a new network resource for our needs will be pretty straight forward.
- Login to your Azure Portal (https://portal.azure.com)
- On the left-hand side click on All Resouces
- Click on “+ Add”
- In the categories section click on Networking and then click on Virtual Network
- Fill in the configuration options as follows (modify as needed):
- Name: Name you wish to call your network resource (ex. SP2019-vnet)
- Address Space: add the CIDR format of your IP address space. I used 172.100.0.0/16. This gave me a ton of addresses within the address space (we’ll limit that in the subnet).
- Subscription: Select the subscription (if you have more than one) you wish to assign the network to.
- Resource Group: Select the resource group you created in the previous post.
- Location: The location should default to the location recently used or the location of the resource group, but just make sure it is correct.
- Next we are going to create a subnet (it is in the same blade as the Virtual Network Config). As I am not intending to build a high-availability farm here I will only be creating a single subnet.
- Provide a meaningful name (SP2019Network-Subnet)
- The address range should be a subset of the address group. I used 172.100.0.0/28 to give me 16 address which is plenty for my needs.
- I am going to leave the firewall disabled for now.
- Review all of your settings and once happy click Create.
Once you click create you will be directed back to your landing page dashboard. Wait until your notification centre updates (that bell icon). Once it indicates your network is deployed you can click on All Resources and you will see the network listed on in the list.
Next, we will build out some storage components and create our first server in this environment.
Thanks for reading!!
Comments