Day 7: Create a Public IP Address for Azure VM

Опубликовано: 13 Май 2026
на канале: Otter Tech
3
0

🌐 Day 7: Create a Public IP Address for Azure VM | 100 Days of Cloud (Azure)

Welcome to Day 7 of the 100 Days of Cloud (Azure) series! In this lab, you’ll learn how to create a Public IP Address, which allows your Azure resources (like Virtual Machines) to communicate with the internet.

As part of their incremental cloud migration, the Nautilus DevOps team is setting up networking components step by step. A Public IP is essential for enabling external access to services hosted in Azure.

📌 Lab Objective:
Create a Public IP resource in Azure.

🛠️ Task Requirements:

Public IP Name: datacenter-pip
Platform: Microsoft Azure

🌐 Azure Portal:
https://portal.azure.com

💻 Steps Using Azure Portal:

Log in to the Azure Portal.
Search for Public IP addresses.
Click Create.
Select:
Subscription and Resource Group
Name: datacenter-pip
IP Version: IPv4
SKU: Basic (default)
Assignment: Dynamic (default)
Choose region same as your VM (recommended).
Click Review + Create → Create.

💻 Azure CLI Command:

az network public-ip create \
--name datacenter-pip \
--resource-group RESOURCE_GROUP_NAME \
--allocation-method Dynamic

🔍 Verify Public IP:

az network public-ip show \
--name datacenter-pip \
--resource-group RESOURCE_GROUP_NAME \
--output table

📚 What You’ll Learn in This Video:

What a Public IP is in Azure
Difference between static and dynamic IPs
How to create and manage Public IP resources
Connecting Azure resources to the internet
Using Azure Portal and CLI
Real-world cloud networking practices

🌟 Why This Lab Matters:
Public IPs are crucial for exposing services like web servers, APIs, and SSH access to the internet. Understanding how to configure them properly is key for cloud and DevOps engineers.

🎯 Series: 100 Days of Cloud (Azure)
Continue building Azure skills with real-world labs covering networking, compute, storage, and security.

🔔 Don’t forget to like, share, and subscribe for more tutorials from OtterTech!

#Azure #MicrosoftAzure #CloudComputing #PublicIP #AzureNetworking #DevOps #CloudSecurity #Nautilus #100DaysOfCloud #OtterTech #Day7