Skip to main content

Different ways to access Azure instances using Public IP

Let's talk about IP Addressing in Microsoft Azure. In this post we will talk about ILPIP (Instance-Level Public IP, used to be known as PIP - Public IP) and Reserved  Public IP (that is a new feature of offered by Microsoft Azure).

Virtual IP (VIP)
Before jumping into this subject, we need to understand what is a Virtual IP (VIP).
A Virtual IP is a public IP that is assigned to a resource like Web Role, Worker Role or Virtual Machine in the moment when we create a cloud service. This VIP is allocated automatically and allow our resource to communicate with external resource. Using VIP, a request from internet can access our Azure Resource.
This VIP will never change as long as the cloud contains at least one instance of that resources. For example we can have 10 instances of Web Roles with a specific deployment. As long as we have at least one, we will not lose the IP. Only when we deprovision the resource we will lose the VIP.
A "fix" for this issue, before having Reserved Public IP was to have all the time a small instance of resources allocated all the time - a small and cheap hack.
 

Using VIP you could connect directly to an instance of your resource only if you would allocate use the VIP and a Port Number. For each instance of your resource you can assign a specific port. As showed below.


Instance-Level Public IP (ILPIP)
This IP can be assigned directly to your instance of your resource (like VM). In this way you can target directly your instance and not the cloud services. Basically it allow us to connect and communicate directly to a specific instance of our resource (directly to a Web Role, Worker Role or Virtual Machine instance).
For example we can connect directly from internet to a VM instance, like in the diagram below.

Even if we can access an instance of our resource directly from internet using a 'Public IP', we still cannot have a fixed and dedicated IP if you recreate your resource. The story is similar with the one from Virtual IP (VIP).

Reserved IP
This feature allows us to reserve a fixed IP to our cloud resource. This means that we can have in front of our Azure resources a public IP that will not change in time, even if we stop or reallocate this resources.

This solution is more similar with Virtual IP because the Reserved IP is in front of our cloud services. There is no public IP reserved for each instance of your cloud services. Only one public IP will be reserved for all cloud services.
This means that if you want to access a specific instance, you will need a similar solution with Virtual IP, where you map a port to a specific instance.


Based on our needs we can reserved a public IP for our cloud services or not. We should be aware that we can control at IP level only for Web Roles, Worker Roles and VMs. For Azure Services like Azure Storage, Service Bus of Event Hub we don't have any kind of control.

Comments

Popular posts from this blog

Why Database Modernization Matters for AI

  When companies transition to the cloud, they typically begin with applications and virtual machines, which is often the easier part of the process. The actual complexity arises later when databases are moved. To save time and effort, cloud adoption is more of a cloud migration in an IaaS manner, fulfilling current, but not future needs. Even organisations that are already in the cloud find that their databases, although “migrated,” are not genuinely modernised. This disparity becomes particularly evident when they begin to explore AI technologies. Understanding Modernisation Beyond Migration Database modernisation is distinct from merely relocating an outdated database to Azure. It's about making your data layer ready for future needs, like automation, real-time analytics, and AI capabilities. AI needs high throughput, which can be achieved using native DB cloud capabilities. When your database runs in a traditional setup (even hosted in the cloud), in that case, you will enc...

Cloud Myths: Migrating to the cloud is quick and easy (Pill 2 of 5 / Cloud Pills)

The idea that migration to the cloud is simple, straightforward and rapid is a wrong assumption. It’s a common misconception of business stakeholders that generates delays, budget overruns and technical dept. A migration requires laborious planning, technical expertise and a rigorous process.  Migrations, especially cloud migrations, are not one-size-fits-all journeys. One of the most critical steps is under evaluation, under budget and under consideration. The evaluation phase, where existing infrastructure, applications, database, network and the end-to-end estate are evaluated and mapped to a cloud strategy, is crucial to ensure the success of cloud migration. Additional factors such as security, compliance, and system dependencies increase the complexity of cloud migration.  A misconception regarding lift-and-shits is that they are fast and cheap. Moving applications to the cloud without changes does not provide the capability to optimise costs and performance, leading to ...

Cloud Myths: Cloud is Cheaper (Pill 1 of 5 / Cloud Pills)

Cloud Myths: Cloud is Cheaper (Pill 1 of 5 / Cloud Pills) The idea that moving to the cloud reduces the costs is a common misconception. The cloud infrastructure provides flexibility, scalability, and better CAPEX, but it does not guarantee lower costs without proper optimisation and management of the cloud services and infrastructure. Idle and unused resources, overprovisioning, oversize databases, and unnecessary data transfer can increase running costs. The regional pricing mode, multi-cloud complexity, and cost variety add extra complexity to the cost function. Cloud adoption without a cost governance strategy can result in unexpected expenses. Improper usage, combined with a pay-as-you-go model, can result in a nightmare for business stakeholders who cannot track and manage the monthly costs. Cloud-native services such as AI services, managed databases, and analytics platforms are powerful, provide out-of-the-shelve capabilities, and increase business agility and innovation. H...