{"id":6012,"date":"2014-05-20T00:00:00","date_gmt":"2014-05-20T00:00:00","guid":{"rendered":"https:\/\/azure.microsoft.com\/blog\/internal-load-balancing"},"modified":"2025-09-12T10:12:07","modified_gmt":"2025-09-12T17:12:07","slug":"internal-load-balancing","status":"publish","type":"post","link":"https:\/\/azure.microsoft.com\/en-us\/blog\/internal-load-balancing\/","title":{"rendered":"Internal Load Balancing"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">We are very excited to announce the support for \u2018Internal Load Balancing\u2019 (ILB) in Azure. Internal load balancing (ILB) enables you to run highly available services behind a private IP address which is accessible only within a cloud service or Virtual Network (VNet), giving additional security on that endpoint. When used within a Virtual Network the ILB endpoint is also accessible from on-premises and other inter-connected VNets allowing some powerful hybrid scenarios.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">ILB can be used in two flavors<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li class=\"wp-block-list-item\">Within a Cloud service, where the load balanced IP is acquired from Azure&#8217;s private IP address space<\/li>\n\n\n\n<li class=\"wp-block-list-item\">Within a Virtual network, where the load balanced IP is acquired from a virtual subnet or a static VNet IP address specified by the customer.<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"key-scenarios\">Key Scenarios<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">ILB is a security enhancement over the current public load balancing that is offered in Azure. It restricts the accessibility and creates a trust boundary between the load balanced Virtual IP address to a Cloud Service or a Virtual Network that doesn\u2019t require the public internet. This enables internal Line of Business applications to run in Azure and be accessed within the cloud or from on-premises. The following section lists some of the common use cases:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li class=\"wp-block-list-item\">Application tier and backend databases can be run behind an ILB so that they are not exposed to public Internet but still get high availability through load balancing. This is a huge security enhancement.<\/li>\n<\/ul>\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/05\/ILBpic3_thumb.webp\" alt=\"graphical user interface, diagram\" class=\"wp-image-8597 webp-format\" title=\"ILBpic3\" data-orig-src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/05\/ILBpic3_thumb.webp\"><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li class=\"wp-block-list-item\">The ILB VIP is accessible within the entire virtual network as well as from on-premises and inter connected VNets through the secure IP Sec tunnel. This enables you to run intranet facing (CorpNet only) SharePoint farms by placing the FrontEnd VIPs behind the ILB as shown in the picture below:<\/li>\n<\/ul>\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/05\/ILBPic2_thumb.webp\" alt=\"graphical user interface, diagram\" class=\"wp-image-8599 webp-format\" title=\"ILBPic2\" data-orig-src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/05\/ILBPic2_thumb.webp\"><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"usage-instructions\">Usage Instructions<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Internal Load Balancing is currently in Preview, this will be Generally Available (GA) in the near future. Detailed documentation on ILB can be found here<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Internal load balancing cannot be configured through the portal as of today, this will be supported in the future. However, It can be configured using powershell cmdlets. ILB can be used in a deployment inside a Regional Virtual Network as well in a new deployment that is outside the Virtual Network.&nbsp; The sections below will outline both types of usage.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"ilb-in-a-regional-virtual-network\">ILB in a Regional Virtual Network<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li class=\"wp-block-list-item\">ILB endpoint created in a Cloud Service in a Regional Virtual Network will be accessible within the entire Virtual Network as well as inter connected VNets and on-premise sites.<\/li>\n\n\n\n<li class=\"wp-block-list-item\">Use the below snippet as a sample to configure an Internal Load Balancer in a Cloud Service which is deployed inside the Regional Virtual Network \u2018VNetUSWest\u2019. Read more about Regional Virtual Network <a href=\"https:\/\/azure.microsoft.com\/blog\/2014\/05\/14\/regional-virtual-networks\/\">here<\/a><\/li>\n\n\n\n<li class=\"wp-block-list-item\">While using ILB inside a VNet you can also specify the subnet and even more precisely the IP address of the internal load balancer from the VNet address space.<\/li>\n<\/ul>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\n# VM Configuration\n$web1 = New-AzureVMConfig -Name \"web1\" -InstanceSize Small -ImageName  | Add-AzureProvisioningConfig -Windows -AdminUsername  -Password  | Set-AzureSubnet FrontEndSubnet\n\n$web2 = New-AzureVMConfig -Name \"web2\" -InstanceSize Small -ImageName  | Add-AzureProvisioningConfig -Windows -AdminUsername  -Password  | Set-AzureSubnet FrontEndSubnet\n\n# Create the Deployments\nNew-AzureVM -ServiceName \"MyWebsite1\" -VMs $web1 -Location \"West US\" -VNetName VNetUSWest \n\nNew-AzureVM -ServiceName \"MyWebsite1\" -VMs $web2 -Location \"West US\" \n\n# Add Internal Load Balancer to the service\nAdd-AzureInternalLoadBalancer -InternalLoadBalancerName MyILB -SubnetName FrontEndSubnet -ServiceName MyWebsite1\n\n# Add load balanced endpoints to ILB\nGet-AzureVM -ServiceName MyWebsite1 -Name web1 | Add-AzureEndpoint -Name \"intwebep\" -LBSetName \"intwebeplb\" -Protocol tcp -LocalPort 100 -PublicPort 100 -ProbePort 100 -ProbeProtocol tcp -ProbeIntervalInSeconds 10 -InternalLoadBalancerName MyILB | Update-AzureVM\n\nGet-AzureVM -ServiceName MyWebsite1 -Name web2 | Add-AzureEndpoint -Name \"intwebep\" -LBSetName \"intwebeplb\" -Protocol tcp -LocalPort 100 -PublicPort 100 -ProbePort 100 -ProbeProtocol tcp -ProbeIntervalInSeconds 10 -InternalLoadBalancerName MyILB | Update-AzureVM\n<\/pre><\/div>\n\n\n<ul class=\"wp-block-list\">\n<li class=\"wp-block-list-item\">In this sample, the ILB will get an IP from the subnet \u2018FrontEndSubnet\u2019.<\/li>\n\n\n\n<li class=\"wp-block-list-item\">You can get the information on the ILB using the cmd lets as shown below:<\/li>\n<\/ul>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\n# Get Internal Load balancer information\nGet-AzureService -ServiceName MyWebsite1 | Get-AzureInternalLoadBalancer \n\n# Get the ILB information on an endpoint\nGet-AzureVM -ServiceName MyWebsite1 -Name web1 | Get-AzureEndpoint\n<\/pre><\/div>\n\n\n<h3 class=\"wp-block-heading\" id=\"ilb-in-a-cloud-service\">ILB in a Cloud Service<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li class=\"wp-block-list-item\">An ILB endpoint created in a Cloud Service that is outside a Regional Virtual Network will be accessible only within the Cloud Service.<\/li>\n\n\n\n<li class=\"wp-block-list-item\">The ILB configuration has to be set during the creation of the first deployment in the Cloud Service, as shown in the cmd let sample below.<\/li>\n<\/ul>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\n# Create a local ILB Object\n$myilbconfig = New-AzureInternalLoadBalancerConfig -InternalLoadBalancerName \"MyILB\" \n\n# Add Internal Load Balancer for a new service\nNew-AzureVMConfig -Name \"Instance1\" -InstanceSize Small -ImageName  | Add-AzureProvisioningConfig -Windows -AdminUsername  -Password  | New-AzureVM -ServiceName \"Website2\" -InternalLoadBalancerConfig $myilbconfig    -Location \"West US\"\n<\/pre><\/div>\n\n\n<h2 class=\"wp-block-heading\" id=\"frequently-asked-questions\">Frequently asked questions<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"1-can-i-add-ilb-to-my-existing-deployment-in-a-virtual-network\"><strong>1. Can I add ILB to my existing deployment in a Virtual Network?<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">You can do this only if the Virtual Network is a Regional Virtual Network. However all Virtual Networks will be converted to a Regional Virtual Network in the near future, once that happens this will be possible.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"2-can-i-use-ilb-for-sql-always-on-scenarios\"><strong>2. Can I use ILB for \u2018SQL Always On\u2019 scenarios?<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Yes, this is<a href=\"https:\/\/azure.microsoft.com\/blog\/?p=195271\"> now supported<\/a>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"3-i-already-have-a-load-balanced-endpoint-in-a-deployment-in-a-regional-virtual-network-can-i-attach-this-endpoint-to-an-ilb\"><strong>3. I already have a load balanced endpoint in a deployment in a Regional Virtual Network, can I attach this endpoint to an ILB?<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">No. ILB should be referenced when the endpoint is created, it is not possible to convert a regular endpoint to an ILB endpoint and vice versa. This will be supported in the near future.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"4-can-ilb-be-used-with-endpoint-acls\"><strong>4. Can ILB be used with endpoint ACLs?<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Yes, ILB can be used with endpoint ACLs. When used in a Regional Virtual Network, ACLs can be expressed in customer\u2019s IP address space there by restricting the access even within the Virtual Network.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"5-if-i-set-up-an-ilb-on-my-virtual-machines-will-loopback-from-those-same-machines-work-on-the-load-balanced-vip\"><strong>5<\/strong>. <strong>If I set up an ILB on my Virtual Machines, will \u201cloopback\u201d from those same machines work on the load-balanced VIP?<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">No. You cannot access the ILB VIP from the same Virtual Machines that are being load-balanced.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"6-can-i-use-ilb-on-paas-services-web-worker-roles\"><strong>6<\/strong>. <strong>Can I use ILB on PaaS services (Web\/Worker roles)?<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">ILB is designed to work with web\/worker roles as well, and it is available from SDK 2.4 onwards.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>We are very excited to announce the support for \u2018Internal Load Balancing\u2019 (ILB) in Azure.<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"ms_queue_id":[],"ep_exclude_from_search":false,"_classifai_error":"","_classifai_text_to_speech_error":"","_alt_title":"","footnotes":"","msx_community_cta_settings":[]},"categories":[1457],"tags":[],"audience":[],"content-type":[1511],"product":[1555],"tech-community":[],"topic":[],"coauthors":[1386],"class_list":["post-6012","post","type-post","status-publish","format-standard","hentry","category-networking","content-type-best-practices","product-load-balancer","review-flag-1680286580-543","review-flag-1680286581-295","review-flag-1680286584-658","review-flag-1-1680286581-825","review-flag-2-1680286581-601","review-flag-3-1680286581-173","review-flag-4-1680286581-250","review-flag-5-1680286581-950","review-flag-6-1680286581-909","review-flag-alway-1680286580-106","review-flag-ga-1680286584-289","review-flag-new-1680286579-546","review-flag-on-pr-1680286585-498","review-flag-vm-1680286585-143"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Internal Load Balancing | Microsoft Azure Blog<\/title>\n<meta name=\"description\" content=\"We are very excited to announce the support for \u2018Internal Load Balancing\u2019 (ILB) in Azure. Internal load balancing (ILB) enables you to run highly available services behind a private IP address which\u2026\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/azure.microsoft.com\/en-us\/blog\/internal-load-balancing\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Internal Load Balancing | Microsoft Azure Blog\" \/>\n<meta property=\"og:description\" content=\"We are very excited to announce the support for \u2018Internal Load Balancing\u2019 (ILB) in Azure. Internal load balancing (ILB) enables you to run highly available services behind a private IP address which\u2026\" \/>\n<meta property=\"og:url\" content=\"https:\/\/azure.microsoft.com\/en-us\/blog\/internal-load-balancing\/\" \/>\n<meta property=\"og:site_name\" content=\"Microsoft Azure Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/microsoftazure\" \/>\n<meta property=\"article:published_time\" content=\"2014-05-20T00:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-09-12T17:12:07+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/05\/ILBpic3_thumb.jpg\" \/>\n<meta name=\"author\" content=\"Narayan Annamalai\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@azure\" \/>\n<meta name=\"twitter:site\" content=\"@azure\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Narayan Annamalai\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/internal-load-balancing\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/internal-load-balancing\/\"},\"author\":[{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/author\/narayan-annamalai\/\",\"@type\":\"Person\",\"@name\":\"Narayan Annamalai\"}],\"headline\":\"Internal Load Balancing\",\"datePublished\":\"2014-05-20T00:00:00+00:00\",\"dateModified\":\"2025-09-12T17:12:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/internal-load-balancing\/\"},\"wordCount\":785,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/internal-load-balancing\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/05\/ILBpic3_thumb.jpg\",\"articleSection\":[\"Networking\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/azure.microsoft.com\/en-us\/blog\/internal-load-balancing\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/internal-load-balancing\/\",\"url\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/internal-load-balancing\/\",\"name\":\"Internal Load Balancing | Microsoft Azure Blog\",\"isPartOf\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/internal-load-balancing\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/internal-load-balancing\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/05\/ILBpic3_thumb.jpg\",\"datePublished\":\"2014-05-20T00:00:00+00:00\",\"dateModified\":\"2025-09-12T17:12:07+00:00\",\"description\":\"We are very excited to announce the support for \u2018Internal Load Balancing\u2019 (ILB) in Azure. Internal load balancing (ILB) enables you to run highly available services behind a private IP address which\u2026\",\"breadcrumb\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/internal-load-balancing\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/azure.microsoft.com\/en-us\/blog\/internal-load-balancing\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/internal-load-balancing\/#primaryimage\",\"url\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/05\/ILBpic3_thumb.webp\",\"contentUrl\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/05\/ILBpic3_thumb.webp\",\"width\":644,\"height\":435,\"caption\":\"diagram\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/internal-load-balancing\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog home\",\"item\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Networking\",\"item\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/category\/networking\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Internal Load Balancing\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#website\",\"url\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/\",\"name\":\"Microsoft Azure Blog\",\"description\":\"Get the latest Azure news, updates, and announcements from the Azure blog. From product updates to hot topics, hear from the Azure experts.\",\"publisher\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#organization\",\"name\":\"Microsoft Azure Blog\",\"url\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2024\/06\/microsoft_logo.webp\",\"contentUrl\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2024\/06\/microsoft_logo.webp\",\"width\":512,\"height\":512,\"caption\":\"Microsoft Azure Blog\"},\"image\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/microsoftazure\",\"https:\/\/x.com\/azure\",\"https:\/\/www.instagram.com\/microsoftdeveloper\/\",\"https:\/\/www.linkedin.com\/company\/16188386\",\"https:\/\/www.youtube.com\/user\/windowsazure\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#\/schema\/person\/c702e5edd662b328b49b7e1180cab117\",\"name\":\"shakir\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/9342c7c05bb16548741bc5cd3a3e3b7ee0c8e746844ad2cc582db5beb5514c6f?s=96&d=mm&r=g7664e653ea371ce16eaf75e9fa8952c4\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/9342c7c05bb16548741bc5cd3a3e3b7ee0c8e746844ad2cc582db5beb5514c6f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/9342c7c05bb16548741bc5cd3a3e3b7ee0c8e746844ad2cc582db5beb5514c6f?s=96&d=mm&r=g\",\"caption\":\"shakir\"},\"sameAs\":[\"https:\/\/azure.microsoft.com\"],\"url\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/author\/shakir\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Internal Load Balancing | Microsoft Azure Blog","description":"We are very excited to announce the support for \u2018Internal Load Balancing\u2019 (ILB) in Azure. Internal load balancing (ILB) enables you to run highly available services behind a private IP address which\u2026","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/azure.microsoft.com\/en-us\/blog\/internal-load-balancing\/","og_locale":"en_US","og_type":"article","og_title":"Internal Load Balancing | Microsoft Azure Blog","og_description":"We are very excited to announce the support for \u2018Internal Load Balancing\u2019 (ILB) in Azure. Internal load balancing (ILB) enables you to run highly available services behind a private IP address which\u2026","og_url":"https:\/\/azure.microsoft.com\/en-us\/blog\/internal-load-balancing\/","og_site_name":"Microsoft Azure Blog","article_publisher":"https:\/\/www.facebook.com\/microsoftazure","article_published_time":"2014-05-20T00:00:00+00:00","article_modified_time":"2025-09-12T17:12:07+00:00","og_image":[{"url":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/05\/ILBpic3_thumb.jpg","type":"","width":"","height":""}],"author":"Narayan Annamalai","twitter_card":"summary_large_image","twitter_creator":"@azure","twitter_site":"@azure","twitter_misc":{"Written by":"Narayan Annamalai","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/internal-load-balancing\/#article","isPartOf":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/internal-load-balancing\/"},"author":[{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/author\/narayan-annamalai\/","@type":"Person","@name":"Narayan Annamalai"}],"headline":"Internal Load Balancing","datePublished":"2014-05-20T00:00:00+00:00","dateModified":"2025-09-12T17:12:07+00:00","mainEntityOfPage":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/internal-load-balancing\/"},"wordCount":785,"commentCount":0,"publisher":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#organization"},"image":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/internal-load-balancing\/#primaryimage"},"thumbnailUrl":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/05\/ILBpic3_thumb.jpg","articleSection":["Networking"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/azure.microsoft.com\/en-us\/blog\/internal-load-balancing\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/internal-load-balancing\/","url":"https:\/\/azure.microsoft.com\/en-us\/blog\/internal-load-balancing\/","name":"Internal Load Balancing | Microsoft Azure Blog","isPartOf":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/internal-load-balancing\/#primaryimage"},"image":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/internal-load-balancing\/#primaryimage"},"thumbnailUrl":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/05\/ILBpic3_thumb.jpg","datePublished":"2014-05-20T00:00:00+00:00","dateModified":"2025-09-12T17:12:07+00:00","description":"We are very excited to announce the support for \u2018Internal Load Balancing\u2019 (ILB) in Azure. Internal load balancing (ILB) enables you to run highly available services behind a private IP address which\u2026","breadcrumb":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/internal-load-balancing\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/azure.microsoft.com\/en-us\/blog\/internal-load-balancing\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/internal-load-balancing\/#primaryimage","url":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/05\/ILBpic3_thumb.webp","contentUrl":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/05\/ILBpic3_thumb.webp","width":644,"height":435,"caption":"diagram"},{"@type":"BreadcrumbList","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/internal-load-balancing\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog home","item":"https:\/\/azure.microsoft.com\/en-us\/blog\/"},{"@type":"ListItem","position":2,"name":"Networking","item":"https:\/\/azure.microsoft.com\/en-us\/blog\/category\/networking\/"},{"@type":"ListItem","position":3,"name":"Internal Load Balancing"}]},{"@type":"WebSite","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#website","url":"https:\/\/azure.microsoft.com\/en-us\/blog\/","name":"Microsoft Azure Blog","description":"Get the latest Azure news, updates, and announcements from the Azure blog. From product updates to hot topics, hear from the Azure experts.","publisher":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/azure.microsoft.com\/en-us\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#organization","name":"Microsoft Azure Blog","url":"https:\/\/azure.microsoft.com\/en-us\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2024\/06\/microsoft_logo.webp","contentUrl":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2024\/06\/microsoft_logo.webp","width":512,"height":512,"caption":"Microsoft Azure Blog"},"image":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/microsoftazure","https:\/\/x.com\/azure","https:\/\/www.instagram.com\/microsoftdeveloper\/","https:\/\/www.linkedin.com\/company\/16188386","https:\/\/www.youtube.com\/user\/windowsazure"]},{"@type":"Person","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#\/schema\/person\/c702e5edd662b328b49b7e1180cab117","name":"shakir","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/9342c7c05bb16548741bc5cd3a3e3b7ee0c8e746844ad2cc582db5beb5514c6f?s=96&d=mm&r=g7664e653ea371ce16eaf75e9fa8952c4","url":"https:\/\/secure.gravatar.com\/avatar\/9342c7c05bb16548741bc5cd3a3e3b7ee0c8e746844ad2cc582db5beb5514c6f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/9342c7c05bb16548741bc5cd3a3e3b7ee0c8e746844ad2cc582db5beb5514c6f?s=96&d=mm&r=g","caption":"shakir"},"sameAs":["https:\/\/azure.microsoft.com"],"url":"https:\/\/azure.microsoft.com\/en-us\/blog\/author\/shakir\/"}]}},"msxcm_display_generated_audio":false,"msxcm_animated_featured_image":null,"distributor_meta":false,"distributor_terms":false,"distributor_media":false,"distributor_original_site_name":"Microsoft Azure Blog","distributor_original_site_url":"https:\/\/azure.microsoft.com\/en-us\/blog","push-errors":false,"_links":{"self":[{"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/posts\/6012","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/comments?post=6012"}],"version-history":[{"count":1,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/posts\/6012\/revisions"}],"predecessor-version":[{"id":46158,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/posts\/6012\/revisions\/46158"}],"wp:attachment":[{"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/media?parent=6012"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/categories?post=6012"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/tags?post=6012"},{"taxonomy":"audience","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/audience?post=6012"},{"taxonomy":"content-type","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/content-type?post=6012"},{"taxonomy":"product","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/product?post=6012"},{"taxonomy":"tech-community","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/tech-community?post=6012"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/topic?post=6012"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/coauthors?post=6012"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}