An Azure service that is used to provision Windows and Linux virtual machines.
Hey @Goher, Amr Ragab It looks like you're asking about assigning a static IP address to a Windows Server at the Windows level. Here's how you can do that in Azure:
Static Private IP Address for an Azure Virtual Machine (VM), you can set a static private IP address using the Azure portal or Azure CLI after the VM is created. Here's a quick overview:
Azure Portal:
- Go to Virtual machines and select your VM.
- Click on Networking and find the Network interface.
- In the network interface, go to IP configurations.
- Select the ipconfig1 and change the Assignment from Dynamic to Static.
- You can optionally change the IP address here. Don’t forget to save your changes!
If you want a public static IP, you can create a standalone public IP and then associate it with your VM:
- During VM creation, specify the public IP address as static.
- Alternatively, you can create a public IP separately and link it to the VM post-creation.
Here are some documents that can provide you further guidance:
Create a virtual machine with a static private IP address - https://learn.microsoft.com/en-us/azure/virtual-network/ip-services/virtual-networks-static-private…
Virtual networks and virtual machines in Azure - https://learn.microsoft.com/en-us/azure/virtual-network/network-overview?wt.mc_id=knowledgesearch_i…
Hope this helps you set up your static IP! If you have any questions or need more details, just let me know!