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

Windows Docker Containers can make WIN32 API calls, use COM and ASP.NET WebForms

After the last post , I received two interesting questions related to Docker and Windows. People were interested if we do Win32 API calls from a Docker container and if there is support for COM. WIN32 Support To test calls to WIN32 API, let’s try to populate SYSTEM_INFO class. [StructLayout(LayoutKind.Sequential)] public struct SYSTEM_INFO { public uint dwOemId; public uint dwPageSize; public uint lpMinimumApplicationAddress; public uint lpMaximumApplicationAddress; public uint dwActiveProcessorMask; public uint dwNumberOfProcessors; public uint dwProcessorType; public uint dwAllocationGranularity; public uint dwProcessorLevel; public uint dwProcessorRevision; } ... [DllImport("kernel32")] static extern void GetSystemInfo(ref SYSTEM_INFO pSI); ... SYSTEM_INFO pSI = new SYSTEM_INFO(

Azure AD and AWS Cognito side-by-side

In the last few weeks, I was involved in multiple opportunities on Microsoft Azure and Amazon, where we had to analyse AWS Cognito, Azure AD and other solutions that are available on the market. I decided to consolidate in one post all features and differences that I identified for both of them that we should need to take into account. Take into account that Azure AD is an identity and access management services well integrated with Microsoft stack. In comparison, AWS Cognito is just a user sign-up, sign-in and access control and nothing more. The focus is not on the main features, is more on small things that can make a difference when you want to decide where we want to store and manage our users.  This information might be useful in the future when we need to decide where we want to keep and manage our users.  Feature Azure AD (B2C, B2C) AWS Cognito Access token lifetime Default 1h – the value is configurable 1h – cannot be modified

What to do when you hit the throughput limits of Azure Storage (Blobs)

In this post we will talk about how we can detect when we hit a throughput limit of Azure Storage and what we can do in that moment. Context If we take a look on Scalability Targets of Azure Storage ( https://azure.microsoft.com/en-us/documentation/articles/storage-scalability-targets/ ) we will observe that the limits are prety high. But, based on our business logic we can end up at this limits. If you create a system that is hitted by a high number of device, you can hit easily the total number of requests rate that can be done on a Storage Account. This limits on Azure is 20.000 IOPS (entities or messages per second) where (and this is very important) the size of the request is 1KB. Normally, if you make a load tests where 20.000 clients will hit different blobs storages from the same Azure Storage Account, this limits can be reached. How we can detect this problem? From client, we can detect that this limits was reached based on the HTTP error code that is returned by HTTP