Previously we implemented a new server to act as the Active Directory Domain Controller for our farm. Before it can do that we need to configure the network settings within the DC, setup DNS and then configure Active Directory. To accomplish this I will be configuring the domain controller network to prepare it for handling the active directory needs of our environment.
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
- Microsoft Azure – Build Storage Resources for Azure SharePoint 2019
- Microsoft Azure – Creating the Domain Controller
- Microsoft Azure – Configuring the Domain Controller Network (this post)
- 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
Configuring the Domain Controller Network
Unlike an on-prem server, we can actually use Azure to set up our server with a static IP address as this is something we want to do with our servers. To configure the DC with a static IP:
- From within your Azure Control Panel click on All resources
- Click on the virtual network resource you created previously
- Under Connected Devices, click on your DC server
- Click on IP Configurations and then the ipconfig entry for your server
- Change the setting to static and provide your server with an IP address if you want it to be different than the dynamically assigned one.
- The server will reboot and when it is back up the server will have a static IP however, the server will not see it this way and will complain when you install DNS. The server will still need to have the IP address set to a static value.
- Open a PowerShell Window and run the following command to configure the IP address as static:
New-NetIPAddress -InterfaceIndex 4 -IPAddress 172.100.0.10 -DefaultGateway 172.100.0.1
Next we will configure DNS and Active Directory.
Thanks for reading!
Comments