{"id":15750,"date":"2020-08-07T12:44:28","date_gmt":"2020-08-07T12:44:28","guid":{"rendered":"https:\/\/www.testpreptraining.com\/tutorial\/?page_id=15750"},"modified":"2022-04-04T11:41:55","modified_gmt":"2022-04-04T11:41:55","slug":"solution-for-load-balancing-and-traffic-routing-methods","status":"publish","type":"page","link":"https:\/\/www.testpreptraining.ai\/tutorial\/solution-for-load-balancing-and-traffic-routing-methods\/","title":{"rendered":"Solution for Load balancing and Traffic routing methods"},"content":{"rendered":"\n<p><a href=\"https:\/\/www.testpreptraining.ai\/tutorial\/exam-az-304-microsoft-azure-architect-design\/\" target=\"_blank\" rel=\"noreferrer noopener\">Go back to AZ-304 Tutorials<\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"> <strong>AZ-304 exam is retired.\u00a0<a href=\"https:\/\/www.testpreptraining.ai\/designing-microsoft-azure-infrastructure-solutions-az-305\" target=\"_blank\" rel=\"noreferrer noopener\">AZ-305<\/a>\u00a0replacement is available.<\/strong> <\/h2>\n\n\n\n<p>In this, we will learn and understand about different components of the Azure load balancing that distribute traffic and provide high availability. Moreover, we will understand the process of creating an Azure load balancer, load balancer traffic rules, and more. Further, we will learn about Azure traffic routing methods for determining how to route network traffic to the various service endpoints.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Overview of Azure load balancing<\/strong><\/h3>\n\n\n\n<p>An Azure load balancing is a Layer-4 (TCP, UDP) load balancer that provides high availability by distributing incoming traffic among healthy VMs. Moreover, this also monitors a given port on each VM and only distributes traffic to an operational VM. In this, you define a front-end IP configuration that contains one or more public IP addresses. However, this front-end IP configuration allows your load balancer and applications to be accessible over the Internet.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Creating Azure load balancer<\/strong><\/h4>\n\n\n\n<p>In this, we will create and configure each component of the load balancer. For example, we will create a resource group with New-AzResourceGroup. However, the example below creates a resource group named myResourceGroupLoadBalancer in the EastUS location:<\/p>\n\n\n\n<p><strong>Azure PowerShell<\/strong><\/p>\n\n\n\n<p><em>New-AzResourceGroup `<\/em><\/p>\n\n\n\n<p><em>&nbsp;&nbsp;-ResourceGroupName &#8220;myResourceGroupLoadBalancer&#8221; `<\/em><\/p>\n\n\n\n<p><em>&nbsp;&nbsp;-Location &#8220;EastUS&#8221;<\/em><\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Creating a public IP address<\/strong><\/h4>\n\n\n\n<p>For accessing apps on the Internet, you require a public IP address for the load balancing. Creating a public IP address with New-AzPublicIpAddress. For example, creates a public IP address named myPublicIP in the myResourceGroupLoadBalancer resource group:<\/p>\n\n\n\n<p><strong>Azure PowerShell<\/strong><\/p>\n\n\n\n<p><em>$publicIP = New-AzPublicIpAddress `<\/em><\/p>\n\n\n\n<p><em>&nbsp;&nbsp;-ResourceGroupName &#8220;myResourceGroupLoadBalancer&#8221; `<\/em><\/p>\n\n\n\n<p><em>&nbsp;&nbsp;-Location &#8220;EastUS&#8221; `<\/em><\/p>\n\n\n\n<p><em>&nbsp;&nbsp;-AllocationMethod &#8220;Static&#8221; `<\/em><\/p>\n\n\n\n<p><em>&nbsp;&nbsp;-Name &#8220;myPublicIP&#8221;<\/em><\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Creating a load balancer<\/strong><\/h4>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>Firstly, let\u2019s create a frontend IP pool with New-AzLoadBalancerFrontendIpConfig. The example creates a frontend IP pool named myFrontEndPool:<\/strong><\/li><\/ul>\n\n\n\n<p><strong>Azure PowerShell<\/strong><\/p>\n\n\n\n<p><em>$frontendIP = New-AzLoadBalancerFrontendIpConfig `<\/em><\/p>\n\n\n\n<p><em>&nbsp;&nbsp;-Name &#8220;myFrontEndPool&#8221; `<\/em><\/p>\n\n\n\n<p><em>&nbsp;&nbsp;-PublicIpAddress $publicIP<\/em><\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>Now, we will develop a backend address pool with New-AzLoadBalancerBackendAddressPoolConfig.&nbsp;<\/strong><\/li><\/ul>\n\n\n\n<p><strong>Azure PowerShell<\/strong><\/p>\n\n\n\n<p><em>$backendPool = New-AzLoadBalancerBackendAddressPoolConfig `<\/em><\/p>\n\n\n\n<p><em>&nbsp;&nbsp;-Name &#8220;myBackEndPool&#8221;<\/em><\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>Lastly, we will develop the load balancing with New-AzLoadBalancer. <\/strong><\/li><\/ul>\n\n\n\n<p><strong>Azure PowerShell<\/strong><\/p>\n\n\n\n<p><em>$lb = New-AzLoadBalancer `<\/em><\/p>\n\n\n\n<p><em>&nbsp;&nbsp;-ResourceGroupName &#8220;myResourceGroupLoadBalancer&#8221; `<\/em><\/p>\n\n\n\n<p><em>&nbsp;&nbsp;-Name &#8220;myLoadBalancer&#8221; `<\/em><\/p>\n\n\n\n<p><em>&nbsp;&nbsp;-Location &#8220;EastUS&#8221; `<\/em><\/p>\n\n\n\n<p><em>&nbsp;&nbsp;-FrontendIpConfiguration $frontendIP `<\/em><\/p>\n\n\n\n<p><em>&nbsp;&nbsp;-BackendAddressPool $backendPool<\/em><\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Creating a load balancer rule<\/strong><\/h4>\n\n\n\n<p>A load balancer rule explains the traffic distribution to the VMs. In this you will define the front-end IP configuration for the incoming traffic and the back-end IP pool to receive the traffic, along with the required source and destination port. However, to make sure only healthy VMs receive traffic, you also define the health probe to use.<\/p>\n\n\n\n<p>So, let\u2019s create a load balancer rule with Add-AzLoadBalancerRuleConfig.&nbsp;<\/p>\n\n\n\n<p><strong>Azure PowerShell<\/strong><\/p>\n\n\n\n<p><em>$probe = Get-AzLoadBalancerProbeConfig -LoadBalancer $lb -Name &#8220;myHealthProbe&#8221;<\/em><\/p>\n\n\n\n<p><em>Add-AzLoadBalancerRuleConfig `<\/em><\/p>\n\n\n\n<p><em>&nbsp;&nbsp;-Name &#8220;myLoadBalancerRule&#8221; `<\/em><\/p>\n\n\n\n<p><em>&nbsp;&nbsp;-LoadBalancer $lb `<\/em><\/p>\n\n\n\n<p><em>&nbsp;&nbsp;-FrontendIpConfiguration $lb.FrontendIpConfigurations[0] `<\/em><\/p>\n\n\n\n<p><em>&nbsp;&nbsp;-BackendAddressPool $lb.BackendAddressPools[0] `<\/em><\/p>\n\n\n\n<p><em>&nbsp;&nbsp;-Protocol Tcp `<\/em><\/p>\n\n\n\n<p><em>&nbsp;&nbsp;-FrontendPort 80 `<\/em><\/p>\n\n\n\n<p><em>&nbsp;&nbsp;-BackendPort 80 `<\/em><\/p>\n\n\n\n<p><em>&nbsp;&nbsp;-Probe $probe<\/em><\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-full\"><a href=\"https:\/\/www.testpreptraining.ai\/microsoft-azure-architect-design-az-304-free-practice-test\" target=\"_blank\" rel=\"noopener noreferrer\"><img loading=\"lazy\" decoding=\"async\" width=\"961\" height=\"150\" src=\"https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2020\/08\/AZ-304-practice-tests-8.png\" alt=\"AZ-304 Practice tests\" class=\"wp-image-18278\" srcset=\"https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2020\/08\/AZ-304-practice-tests-8.png 961w, https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2020\/08\/AZ-304-practice-tests-8-750x117.png 750w\" sizes=\"auto, (max-width: 961px) 100vw, 961px\" \/><\/a><\/figure><\/div>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Creating network resources<\/strong><\/h4>\n\n\n\n<p>In this, we will create a virtual network with New-AzVirtualNetwork.&nbsp;<\/p>\n\n\n\n<p><strong>Azure PowerShell<\/strong><\/p>\n\n\n\n<p><em># Create subnet config<\/em><\/p>\n\n\n\n<p><em>$subnetConfig = New-AzVirtualNetworkSubnetConfig `<\/em><\/p>\n\n\n\n<p><em>&nbsp;&nbsp;-Name &#8220;mySubnet&#8221; `<\/em><\/p>\n\n\n\n<p><em>&nbsp;&nbsp;-AddressPrefix 192.168.1.0\/24<\/em><\/p>\n\n\n\n<p><em># Create the virtual network<\/em><\/p>\n\n\n\n<p><em>$vnet = New-AzVirtualNetwork `<\/em><\/p>\n\n\n\n<p><em>&nbsp;&nbsp;-ResourceGroupName &#8220;myResourceGroupLoadBalancer&#8221; `<\/em><\/p>\n\n\n\n<p><em>&nbsp;&nbsp;-Location &#8220;EastUS&#8221; `<\/em><\/p>\n\n\n\n<p><em>&nbsp;&nbsp;-Name &#8220;myVnet&#8221; `<\/em><\/p>\n\n\n\n<p><em>&nbsp;&nbsp;-AddressPrefix 192.168.0.0\/16 `<\/em><\/p>\n\n\n\n<p><em>&nbsp;&nbsp;-Subnet $subnetConfig<\/em><\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Testing load balancer<\/strong><\/h4>\n\n\n\n<p>In this, we will obtain the public IP address of your load balancer with Get-AzPublicIPAddress.&nbsp;For example,<\/p>\n\n\n\n<p><strong>Azure PowerShell<\/strong><\/p>\n\n\n\n<p><em>Get-AzPublicIPAddress `<\/em><\/p>\n\n\n\n<p><em>&nbsp;&nbsp;-ResourceGroupName &#8220;myResourceGroupLoadBalancer&#8221; `<\/em><\/p>\n\n\n\n<p><em>&nbsp;&nbsp;-Name &#8220;myPublicIP&#8221; | select IpAddress<\/em><\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Adding and removing VMs<\/strong><\/h4>\n\n\n\n<p>You may require to perform maintenance on the VMs running your app like installing OS updates. However, to deal with increased traffic to your app, you may need to add additional VMs.  And, the section below shows how to remove or add a VM from the load balancer.<\/p>\n\n\n\n<h6 class=\"wp-block-heading\"><strong>Removing a VM from the load balancer<\/strong><\/h6>\n\n\n\n<p>Get the network interface card with Get-AzNetworkInterface, then set the LoadBalancerBackendAddressPools property of the virtual NIC to $null. Lastly, update the virtual NIC:<\/p>\n\n\n\n<p><strong>Azure PowerShell<\/strong><\/p>\n\n\n\n<p><em>$nic = Get-AzNetworkInterface `<\/em><\/p>\n\n\n\n<p><em>&nbsp;&nbsp;&nbsp;&nbsp;-ResourceGroupName &#8220;myResourceGroupLoadBalancer&#8221; `<\/em><\/p>\n\n\n\n<p><em>&nbsp;&nbsp;&nbsp;&nbsp;-Name &#8220;myVM2&#8221;<\/em><\/p>\n\n\n\n<p><em>$nic.Ipconfigurations[0].LoadBalancerBackendAddressPools=$null<\/em><\/p>\n\n\n\n<p><em>Set-AzNetworkInterface -NetworkInterface $nic<\/em><\/p>\n\n\n\n<p>However, for viewing the load balancer distributing traffic across the remaining two VMs running your app you can force-refresh your web browser. And, now you can perform maintenance on the VM that is installing OS updates or performing a VM reboot.<\/p>\n\n\n\n<h6 class=\"wp-block-heading\"><strong>Adding a VM to the load balancer<\/strong><\/h6>\n\n\n\n<p>After performing VM maintenance, or if you need to expand capacity, just set the LoadBalancerBackendAddressPools property of the virtual NIC to the BackendAddressPool from Get-AzLoadBalancer. For Example,<\/p>\n\n\n\n<p>Get the load balancer:<\/p>\n\n\n\n<p><strong>Azure PowerShell<\/strong><\/p>\n\n\n\n<p><em>$lb = Get-AzLoadBalancer `<\/em><\/p>\n\n\n\n<p><em>&nbsp;&nbsp;&nbsp;&nbsp;-ResourceGroupName myResourceGroupLoadBalancer `<\/em><\/p>\n\n\n\n<p><em>&nbsp;&nbsp;&nbsp;&nbsp;-Name myLoadBalancer&nbsp;<\/em><\/p>\n\n\n\n<p><em>$nic.IpConfigurations[0].LoadBalancerBackendAddressPools=$lb.BackendAddressPools[0]<\/em><\/p>\n\n\n\n<p><em>Set-AzNetworkInterface -NetworkInterface $nic<\/em><\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Traffic Manager routing methods<\/strong><\/h3>\n\n\n\n<p>Azure Traffic Manager supports six traffic-routing methods for determining how to route network traffic to the various service endpoints. However, for any profile, Traffic Manager applies the traffic-routing method associated with it to each DNS query it receives. Methods in Traffic Manager:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Firstly, select <strong>Priority<\/strong> when you want to use a primary service endpoint for all traffic. After that, it provides backups in case the primary or the backup endpoints are unavailable.<\/li><li>Secondly, select <strong>Weighted<\/strong> when you want to distribute traffic across a set of endpoints, either evenly or according to weights, which you define.<\/li><li>Thirdly, select <strong>Performance<\/strong> when you want end users to use the &#8220;closest&#8221; endpoint in terms of the lowest network latency.<\/li><li>After that, select <strong>Geographic<\/strong> so that users are directed to specific endpoints based on which geographic location their DNS query originates from.&nbsp;<\/li><li>Then, select <strong>MultiValue<\/strong> for Traffic Manager profiles that can only have IPv4\/IPv6 addresses as endpoints.&nbsp;<\/li><li>Lastly, select the <strong>Subnet<\/strong> traffic-routing method to map sets of end-user IP address ranges to a specific endpoint within a Traffic Manager profile.&nbsp;<\/li><\/ul>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Priority traffic-routing method<\/strong><\/h4>\n\n\n\n<p>The organization wants to provide reliability for its services by deploying one or more backup services in case their primary service goes down. Not to mention, the &#8216;Priority&#8217; traffic-routing method gives access to Azure customers to easily implement this failover pattern.<\/p>\n\n\n\n<p>However, the Traffic Manager profile contains a prioritized list of service endpoints.That is by default, Traffic Manager sends all traffic to the primary endpoint. And, if the primary endpoint is not available, then Traffic Manager routes the traffic to the second endpoint.&nbsp;<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Weighted traffic-routing method<\/strong><\/h4>\n\n\n\n<p>The &#8216;Weighted&#8217; traffic-routing method gives access to distribute traffic evenly or to use a predefined weighting. However, the weighted method enables some useful scenarios:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Firstly, <strong>Gradual application upgrade: <\/strong>In this, there is allocation of percentage for traffic to route to a new endpoint, and gradually increase the traffic over time to 100%.<\/li><li>Secondly, <strong>Application migration to Azure:<\/strong> This creates a profile with both Azure and external endpoints.&nbsp;<\/li><li>Lastly, <strong>Cloud-bursting for additional capacity:<\/strong> This expands an on-premises deployment into the cloud by putting it behind a Traffic Manager profile.<\/li><\/ul>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Performance traffic-routing method<\/strong><\/h4>\n\n\n\n<p>Deploying endpoints in two or more locations across the globe can improve the responsiveness of many applications by routing traffic to the closest location. Most importantly, the &#8216;Performance&#8217; traffic-routing method provides this capability. However, the &#8216;closest&#8217; endpoint is not necessarily closest as measured by geographic distance. But, the &#8216;Performance&#8217; traffic-routing method determines the closest endpoint by measuring network latency. As the Traffic Manager looks up the source IP address of the incoming DNS request in the Internet Latency Table. Then, it selects an available endpoint in the Azure datacenter with the lowest latency for that IP address range.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Geographic traffic-routing method<\/strong><\/h4>\n\n\n\n<p>Traffic Manager profiles can be configured for using the Geographic routing method so that users move to specific endpoints on the basis of which geographic location their DNS query originates from. However, this empowers Traffic Manager customers to enable scenarios where knowing a user\u2019s geographic region and routing them based on that is important. When a profile is configured for geographic routing, each endpoint associated with that profile needs to have a set of geographic regions assigned to it. However, a geographic region has following levels:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Firstly, World\u2013 any region<\/li><li>Secondly, Regional Grouping \u2013 for example, Africa, Middle East, Australia\/Pacific etc.<\/li><li>Thirdly, Country\/Region \u2013 for example, Ireland, Peru, Hong Kong SAR etc.<\/li><li>Lastly, State\/Province \u2013 for example, USA-California, Australia-Queensland, Canada-Alberta etc.&nbsp;<\/li><\/ul>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-full\"><a href=\"https:\/\/www.testpreptraining.ai\/microsoft-azure-architect-design-az-304-practice-exam\" target=\"_blank\" rel=\"noopener noreferrer\"><img loading=\"lazy\" decoding=\"async\" width=\"961\" height=\"150\" src=\"https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2020\/08\/Az-304-online-course-15.png\" alt=\"load balancing concept using Az-304 online course\" class=\"wp-image-15765\" srcset=\"https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2020\/08\/Az-304-online-course-15.png 961w, https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2020\/08\/Az-304-online-course-15-750x117.png 750w\" sizes=\"auto, (max-width: 961px) 100vw, 961px\" \/><\/a><\/figure><\/div>\n\n\n\n<p class=\"has-text-align-right\"><strong>Reference: <\/strong><a href=\"https:\/\/docs.microsoft.com\/en-us\/azure\/virtual-machines\/windows\/tutorial-load-balancer\" target=\"_blank\" rel=\"noreferrer noopener\">Microsoft Documentation<\/a>, <a href=\"https:\/\/docs.microsoft.com\/en-us\/azure\/traffic-manager\/traffic-manager-routing-methods\" target=\"_blank\" rel=\"noreferrer noopener\">Documentation 2<\/a><\/p>\n\n\n\n<p><a href=\"https:\/\/www.testpreptraining.ai\/tutorial\/exam-az-304-microsoft-azure-architect-design\/\" target=\"_blank\" rel=\"noreferrer noopener\"><a href=\"https:\/\/www.testpreptraining.ai\/tutorial\/exam-az-304-microsoft-azure-architect-design\/\" target=\"_blank\" rel=\"noreferrer noopener\">Go back to AZ-304 Tutorials<\/a><\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Go back to AZ-304 Tutorials AZ-304 exam is retired.\u00a0AZ-305\u00a0replacement is available. In this, we will learn and understand about different components of the Azure load balancing that distribute traffic and provide high availability. Moreover, we will understand the process of creating an Azure load balancer, load balancer traffic rules, and more. Further, we will learn&#8230;<\/p>\n","protected":false},"author":2,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"categories":[],"tags":[],"class_list":["post-15750","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Solution for Load balancing and Traffic routing methods | Microsoft AZ-304<\/title>\n<meta name=\"description\" content=\"Enhance your knowledge by learning about load balancing and traffic routing methods using Microsoft Azure AZ-304 online course and practice exam Now!\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.testpreptraining.ai\/tutorial\/solution-for-load-balancing-and-traffic-routing-methods\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Solution for Load balancing and Traffic routing methods | Microsoft AZ-304\" \/>\n<meta property=\"og:description\" content=\"Enhance your knowledge by learning about load balancing and traffic routing methods using Microsoft Azure AZ-304 online course and practice exam Now!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.testpreptraining.ai\/tutorial\/solution-for-load-balancing-and-traffic-routing-methods\/\" \/>\n<meta property=\"og:site_name\" content=\"Testprep Training Tutorials\" \/>\n<meta property=\"article:modified_time\" content=\"2022-04-04T11:41:55+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2020\/08\/AZ-304-practice-tests-8.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/solution-for-load-balancing-and-traffic-routing-methods\/\",\"url\":\"https:\/\/www.testpreptraining.ai\/tutorial\/solution-for-load-balancing-and-traffic-routing-methods\/\",\"name\":\"Solution for Load balancing and Traffic routing methods | Microsoft AZ-304\",\"isPartOf\":{\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/#website\"},\"datePublished\":\"2020-08-07T12:44:28+00:00\",\"dateModified\":\"2022-04-04T11:41:55+00:00\",\"description\":\"Enhance your knowledge by learning about load balancing and traffic routing methods using Microsoft Azure AZ-304 online course and practice exam Now!\",\"breadcrumb\":{\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/solution-for-load-balancing-and-traffic-routing-methods\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.testpreptraining.ai\/tutorial\/solution-for-load-balancing-and-traffic-routing-methods\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/solution-for-load-balancing-and-traffic-routing-methods\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.testpreptraining.ai\/tutorial\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Solution for Load balancing and Traffic routing methods\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/#website\",\"url\":\"https:\/\/www.testpreptraining.ai\/tutorial\/\",\"name\":\"Testprep Training Tutorials\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.testpreptraining.ai\/tutorial\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/#organization\",\"name\":\"Testprep Training\",\"url\":\"https:\/\/www.testpreptraining.ai\/tutorial\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.testpreptraining.com\/tutorial\/wp-content\/uploads\/2020\/07\/tpt-logo-6.png\",\"contentUrl\":\"https:\/\/www.testpreptraining.com\/tutorial\/wp-content\/uploads\/2020\/07\/tpt-logo-6.png\",\"width\":583,\"height\":153,\"caption\":\"Testprep Training\"},\"image\":{\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Solution for Load balancing and Traffic routing methods | Microsoft AZ-304","description":"Enhance your knowledge by learning about load balancing and traffic routing methods using Microsoft Azure AZ-304 online course and practice exam Now!","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:\/\/www.testpreptraining.ai\/tutorial\/solution-for-load-balancing-and-traffic-routing-methods\/","og_locale":"en_US","og_type":"article","og_title":"Solution for Load balancing and Traffic routing methods | Microsoft AZ-304","og_description":"Enhance your knowledge by learning about load balancing and traffic routing methods using Microsoft Azure AZ-304 online course and practice exam Now!","og_url":"https:\/\/www.testpreptraining.ai\/tutorial\/solution-for-load-balancing-and-traffic-routing-methods\/","og_site_name":"Testprep Training Tutorials","article_modified_time":"2022-04-04T11:41:55+00:00","og_image":[{"url":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2020\/08\/AZ-304-practice-tests-8.png"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.testpreptraining.ai\/tutorial\/solution-for-load-balancing-and-traffic-routing-methods\/","url":"https:\/\/www.testpreptraining.ai\/tutorial\/solution-for-load-balancing-and-traffic-routing-methods\/","name":"Solution for Load balancing and Traffic routing methods | Microsoft AZ-304","isPartOf":{"@id":"https:\/\/www.testpreptraining.ai\/tutorial\/#website"},"datePublished":"2020-08-07T12:44:28+00:00","dateModified":"2022-04-04T11:41:55+00:00","description":"Enhance your knowledge by learning about load balancing and traffic routing methods using Microsoft Azure AZ-304 online course and practice exam Now!","breadcrumb":{"@id":"https:\/\/www.testpreptraining.ai\/tutorial\/solution-for-load-balancing-and-traffic-routing-methods\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.testpreptraining.ai\/tutorial\/solution-for-load-balancing-and-traffic-routing-methods\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.testpreptraining.ai\/tutorial\/solution-for-load-balancing-and-traffic-routing-methods\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.testpreptraining.ai\/tutorial\/"},{"@type":"ListItem","position":2,"name":"Solution for Load balancing and Traffic routing methods"}]},{"@type":"WebSite","@id":"https:\/\/www.testpreptraining.ai\/tutorial\/#website","url":"https:\/\/www.testpreptraining.ai\/tutorial\/","name":"Testprep Training Tutorials","description":"","publisher":{"@id":"https:\/\/www.testpreptraining.ai\/tutorial\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.testpreptraining.ai\/tutorial\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.testpreptraining.ai\/tutorial\/#organization","name":"Testprep Training","url":"https:\/\/www.testpreptraining.ai\/tutorial\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.testpreptraining.ai\/tutorial\/#\/schema\/logo\/image\/","url":"https:\/\/www.testpreptraining.com\/tutorial\/wp-content\/uploads\/2020\/07\/tpt-logo-6.png","contentUrl":"https:\/\/www.testpreptraining.com\/tutorial\/wp-content\/uploads\/2020\/07\/tpt-logo-6.png","width":583,"height":153,"caption":"Testprep Training"},"image":{"@id":"https:\/\/www.testpreptraining.ai\/tutorial\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/pages\/15750","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/comments?post=15750"}],"version-history":[{"count":4,"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/pages\/15750\/revisions"}],"predecessor-version":[{"id":54083,"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/pages\/15750\/revisions\/54083"}],"wp:attachment":[{"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/media?parent=15750"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/categories?post=15750"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/tags?post=15750"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}