{"id":1463,"date":"2019-08-03T10:08:45","date_gmt":"2019-08-03T10:08:45","guid":{"rendered":"https:\/\/www.testpreptraining.com\/tutorial\/?page_id=1463"},"modified":"2019-08-08T05:37:53","modified_gmt":"2019-08-08T05:37:53","slug":"azure-networking-options","status":"publish","type":"page","link":"https:\/\/www.testpreptraining.ai\/tutorial\/azure-networking-options\/","title":{"rendered":"Azure Networking Options"},"content":{"rendered":"\n<h4 class=\"wp-block-heading\"><strong>Deploy your site to Azure <\/strong><\/h4>\n\n\n\n<p>Your first step will likely be to re-create your on-premises configuration in the cloud. This basic configuration will give you a sense of how\nnetworks are configured, and how network traffic moves in and out of Azure.<\/p>\n\n\n\n<p>Your e-commerce site at a glance<\/p>\n\n\n\n<p>Larger enterprise systems are often composed of multiple\ninter-connected applications and services that work together. You might have a\nfront-end web system that displays inventory and allows customers to create an\norder. That might talk to a variety of web services to provide the inventory\ndata, manage user profiles, process credit cards, and request fulfillment of\nprocessed orders.<\/p>\n\n\n\n<p>There are several strategies and patterns employed by\nsoftware architects and designers to make these complex systems easier to\ndesign, build, manage, and maintain. Let&#8217;s look at a few of them, starting with\nloosely coupled architectures.<\/p>\n\n\n\n<p><strong>Benefits of Loosely Coupled Architectures<\/strong><\/p>\n\n\n\n<p><strong>Using an N-tier architecture<\/strong><\/p>\n\n\n\n<p>An architectural pattern that can be used to build loosely coupled systems is N-tier. An N-tier architecture divides an application into two or\nmore logical tiers. Architecturally, a higher tier can access services from a\nlower tier, but a lower tier should never access a higher tier.<\/p>\n\n\n\n<p>Tiers help separate concerns and are ideally designed to be\nreusable. Using a tiered architecture also simplifies maintenance. Tiers can be\nupdated or replaced independently, and new tiers can be inserted if needed.<\/p>\n\n\n\n<p>Three-tier refers to an n-tier application that has three\ntiers. Your e-commerce web application follows this three-tier architecture:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>The web tier provides the web interface to your\nusers through a browser.<\/li><li>The application tier runs business logic.<\/li><li>The data tier includes databases and other\nstorage that hold product information and customer orders.<\/li><\/ul>\n\n\n\n<p>The following illustration shows the flow of a request from the user to the data tier.<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img loading=\"lazy\" decoding=\"async\" width=\"125\" height=\"326\" src=\"https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2019\/08\/image-24.png\" alt=\"\" class=\"wp-image-1466\"\/><\/figure><\/div>\n\n\n\n<p>When the user clicks the button to place the order, the\nrequest is sent to the web tier, along with the user&#8217;s address and payment\ninformation. The web tier passes this information to the application tier,\nwhich would validate payment information and check inventory. The application\ntier might then store the order in the data tier, to be picked up later for\nfulfillment.<\/p>\n\n\n\n<p><strong>Your e-commerce site running on Azure<\/strong><\/p>\n\n\n\n<p>Azure provides many different ways to host your web applications, from fully pre-configured environments that host your code, to virtual machines that you configure, customize, and manage. Let&#8217;s say you choose to run your e-commerce site on virtual machines. Here&#8217;s what that might look like in your test environment running on Azure. The following illustration shows a three-tier architecture running on virtual machines with security features enabled to restrict inbound requests. <\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img loading=\"lazy\" decoding=\"async\" width=\"151\" height=\"400\" src=\"https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2019\/08\/image-25-151x400.png\" alt=\"\" class=\"wp-image-1467\" srcset=\"https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2019\/08\/image-25-151x400.png 151w, https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2019\/08\/image-25.png 199w\" sizes=\"auto, (max-width: 151px) 100vw, 151px\" \/><\/figure><\/div>\n\n\n\n<p><strong>What&#8217;s an Azure region?<\/strong><\/p>\n\n\n\n<p>A region is one or more Azure data centers within a specific\ngeographic location. East US, West US, and North Europe are examples of\nregions. In this instance, you see that the application is running in the East\nUS region.<\/p>\n\n\n\n<p>Two virtual machines running on a virtual network<\/p>\n\n\n\n<p><strong>What&#8217;s a virtual network?<\/strong><\/p>\n\n\n\n<p>A virtual network is a logically isolated network on Azure.\nAzure virtual networks will be familiar to you if you&#8217;ve set up networks on Hyper-V,\nVMware, or even on other public clouds. A virtual network allows Azure\nresources to securely communicate with each other, the internet, and\non-premises networks. A virtual network is scoped to a single region; however,\nmultiple virtual networks from different regions can be connected together\nusing virtual network peering.<\/p>\n\n\n\n<p>Virtual networks can be segmented into one or more subnets.\nSubnets help you organize and secure your resources in discrete sections. The\nweb, application, and data tiers each have a single VM. All three VMs are in\nthe same virtual network but are in separate subnets.<\/p>\n\n\n\n<p>Users interact with the web tier directly, so that VM has a\npublic IP address along with a private IP address. Users don&#8217;t interact with\nthe application or data tiers, so these VMs each have a private IP address\nonly.<\/p>\n\n\n\n<p>You can also keep your service or data tiers in your\non-premises network, placing your web tier into the cloud, but keeping tight\ncontrol over other aspects of your application. A VPN gateway (or virtual\nnetwork gateway), enables this scenario. It can provide a secure connection\nbetween an Azure Virtual Network and an on-premises location over the internet.<\/p>\n\n\n\n<p>Azure manages the physical hardware for you. You configure\nvirtual networks and gateways through software, which enables you to treat a\nvirtual network just like your own network. You choose which networks your\nvirtual network can reach, whether that&#8217;s the public internet or other networks\nin the private IP address space.<\/p>\n\n\n\n<p><strong>What&#8217;s a network security group?<\/strong><\/p>\n\n\n\n<p>A network security group, or NSG, allows or denies inbound\nnetwork traffic to your Azure resources. Think of a network security group as a\ncloud-level firewall for your network.<\/p>\n\n\n\n<p>For example, notice that the VM in the web tier allows\ninbound traffic on ports 22 (SSH) and 80 (HTTP). This VM&#8217;s network security\ngroup allows inbound traffic over these ports from all sources. You can\nconfigure a network security group to accept traffic only from known sources,\nsuch as IP addresses that you trust.<\/p>\n\n\n\n<p>Note &#8211; Port 22 enables you to connect directly to Linux systems over SSH. Here we show port 22 open for learning purposes. In practice, you might configure VPN access to your virtual network to increase security.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Scale with Azure Load Balancer <\/h4>\n\n\n\n<p>You now have your site up and running on Azure. But how can\nyou help ensure your site is running 24\/7?<\/p>\n\n\n\n<p>For instance, what happens when you need to do weekly maintenance?\nYour service will still be unavailable during your maintenance window. And\nbecause your site reaches users all over the world, there&#8217;s no good time to\ntake down your systems for maintenance. You may also run into performance\nissues if too many users connect at the same time.<\/p>\n\n\n\n<p><strong>What are availability and high availability?<\/strong><\/p>\n\n\n\n<p>Availability refers to how long your service is up and\nrunning without interruption. High availability, or highly available, refers to\na service that&#8217;s up and running for a long period of time.<\/p>\n\n\n\n<p>You know how frustrating it is when you can&#8217;t access the\ninformation you need. Think of a social media or news site that you visit\ndaily. Can you always access the site, or do you often see error messages like\n&#8220;503 Service Unavailable&#8221;?<\/p>\n\n\n\n<p>You may have heard terms like &#8220;five nines\navailability.&#8221; Five nines availability means that the service is\nguaranteed to be running 99.999 percent of the time. Although it&#8217;s difficult to\nachieve 100 percent availability, many teams strive for at least five nines.<\/p>\n\n\n\n<p><strong>What is resiliency?<\/strong><\/p>\n\n\n\n<p>Resiliency refers to a system&#8217;s ability to stay operational during abnormal conditions.<\/p>\n\n\n\n<p>These conditions include &#8211; <\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Natural disasters &#8211; System maintenance, both planned and unplanned, including software updates and security patches.<\/li><li>Spikes in traffic to your site &#8211; Threats made by malicious parties, such as distributed denial of service, or DDoS, attacks<\/li><\/ul>\n\n\n\n<p>Imagine your marketing team wants to have a flash sale to\npromote a new line of vitamin supplements. You might expect a huge spike in\ntraffic during this time. This spike could overwhelm your processing system,\ncausing it to slow down or halt, disappointing your users. You may have\nexperienced this disappointment for yourself. Have you ever tried to access an\nonline sale only to find the website wasn&#8217;t responding?<\/p>\n\n\n\n<p><strong>What is a load balancer?<\/strong><\/p>\n\n\n\n<p>A load balancer distributes traffic evenly among each system\nin a pool. A load balancer can help you achieve both high availability and\nresiliency.<\/p>\n\n\n\n<p>Say you start by adding additional VMs, each configured\nidentically, to each tier. The idea is to have additional systems ready, in\ncase one goes down, or is serving too many users at the same time.<\/p>\n\n\n\n<p>The problem here is that each VM would have its own IP\naddress. Plus, you don&#8217;t have a way to distribute traffic in case one system\ngoes down or is busy. How do you connect your VMs so that they appear to the\nuser as one system?<\/p>\n\n\n\n<p>The answer is to use a load balancer to distribute traffic.\nThe load balancer becomes the entry point to the user. The user doesn&#8217;t know\n(or need to know) which system the load balancer chooses to receive the\nrequest.<\/p>\n\n\n\n<p>The following illustration shows the role of a load balancer.<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2019\/08\/image-27-438x400.png\" alt=\"\" class=\"wp-image-1469\" width=\"251\" height=\"229\" srcset=\"https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2019\/08\/image-27-438x400.png 438w, https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2019\/08\/image-27.png 464w\" sizes=\"auto, (max-width: 251px) 100vw, 251px\" \/><\/figure><\/div>\n\n\n\n<p>An illustration showing the web tier of a three-tier\narchitecture. The web tier has multiple virtual machines to service user\nrequests. There is a load balancer that distributes user requests among the\nvirtual machines.<\/p>\n\n\n\n<p>The load balancer receives the user&#8217;s request and directs\nthe request to one of the VMs in the web tier. If a VM is unavailable or stops\nresponding, the load balancer stops sending traffic to it. The load balancer\nthen directs traffic to one of the responsive servers.<\/p>\n\n\n\n<p>Load balancing enables you to run maintenance tasks without\ninterrupting service. For example, you can stagger the maintenance window for\neach VM. During the maintenance window, the load balancer detects that the VM\nis unresponsive, and directs traffic to other VMs in the pool.<\/p>\n\n\n\n<p>For your e-commerce site, the app and data tiers can also\nhave a load balancer. It all depends on what your service requires.<\/p>\n\n\n\n<p><strong>What is Azure Load Balancer?<\/strong><\/p>\n\n\n\n<p>Azure Load Balancer is a load balancer service that\nMicrosoft provides that helps take care of the maintenance for you. Load Balancer\nsupports inbound and outbound scenarios, provides low latency and high\nthroughput, and scales up to millions of flows for all Transmission Control\nProtocol (TCP) and User Datagram Protocol (UDP) applications. You can use Load\nBalancer with incoming internet traffic, internal traffic across Azure\nservices, port forwarding for specific traffic, or outbound connectivity for\nVMs in your virtual network.<\/p>\n\n\n\n<p>When you manually configure typical load balancer software\non a virtual machine, there&#8217;s a downside: you now have an additional system\nthat you need to maintain. If your load balancer goes down or needs routine\nmaintenance, you&#8217;re back to your original problem.<\/p>\n\n\n\n<p>If instead, however, you use Azure Load Balancer, there&#8217;s no\ninfrastructure or software for you to maintain. You define the forwarding rules\nbased on the source IP and port to a set of destination IP\/ports.<\/p>\n\n\n\n<p>The following illustration shows the role of Azure load balancers in a multi-tier architecture.<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img loading=\"lazy\" decoding=\"async\" width=\"169\" height=\"400\" src=\"https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2019\/08\/image-31-169x400.png\" alt=\"\" class=\"wp-image-1473\" srcset=\"https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2019\/08\/image-31-169x400.png 169w, https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2019\/08\/image-31.png 377w\" sizes=\"auto, (max-width: 169px) 100vw, 169px\" \/><\/figure><\/div>\n\n\n\n<p>An illustration showing the web tier of a three-tier\narchitecture. The web tier has multiple virtual machines to service user\nrequests. There is a load balancer that distributes user requests among the\nvirtual machines.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Azure Application Gateway<\/strong><\/h4>\n\n\n\n<p>If all your traffic is HTTP, a potentially better option is to use Azure Application Gateway. Application Gateway is a load balancer designed for web applications. It uses Azure Load Balancer at the transport level (TCP) and applies sophisticated URL-based routing rules to support several advanced scenarios.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"634\" height=\"400\" src=\"https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2019\/08\/image-29-634x400.png\" alt=\"\" class=\"wp-image-1471\" srcset=\"https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2019\/08\/image-29-634x400.png 634w, https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2019\/08\/image-29.png 827w\" sizes=\"auto, (max-width: 634px) 100vw, 634px\" \/><\/figure>\n\n\n\n<p>Conceptual image showing the Application Gateway product\nrouting HTTP traffic between server groups based on the URL<\/p>\n\n\n\n<p>This type of routing is known as application layer (OSI\nlayer 7) load balancing since it understands the structure of the HTTP message.<\/p>\n\n\n\n<p>Here are some of the benefits of using Azure Application\nGateway over a simple load balancer:<\/p>\n\n\n\n<p>Cookie affinity. Useful when you want to keep a user session\non the same backend server.<\/p>\n\n\n\n<p>SSL termination. Application Gateway can manage your SSL\ncertificates and pass unencrypted traffic to the backend servers to avoid\nencryption\/decryption overhead. It also supports full end-to-end encryption for\napplications that require that.<\/p>\n\n\n\n<p>Web application firewall. Application gateway supports a\nsophisticated firewall (WAF) with detailed monitoring and logging to detect\nmalicious attacks against your network infrastructure.<\/p>\n\n\n\n<p>URL rule-based routes. Application Gateway allows you to\nroute traffic based on URL patterns, source IP address and port to destination\nIP address and port. This is helpful when setting up a content delivery\nnetwork.<\/p>\n\n\n\n<p>Rewrite HTTP headers. You can add or remove information from\nthe inbound and outbound HTTP headers of each request to enable important\nsecurity scenarios, or scrub sensitive information such as server names.<\/p>\n\n\n\n<p><strong>What is a Content Delivery Network?<\/strong><\/p>\n\n\n\n<p>A content delivery network (CDN) is a distributed network of\nservers that can efficiently deliver web content to users. It is a way to get\ncontent to users in their local region to minimize latency. CDN can be hosted\nin Azure or any other location. You can cache content at strategically placed\nphysical nodes across the world and provide better performance to end users.\nTypical usage scenarios include web applications containing multimedia content,\na product launch event in a particular region, or any event where you expect a\nhigh-bandwidth requirement in a region.<\/p>\n\n\n\n<p><strong>What about DNS?<\/strong><\/p>\n\n\n\n<p>A pin on a map representing DNS<\/p>\n\n\n\n<p>DNS, or Domain Name System, is a way to map user-friendly\nnames to their IP addresses. You can think of DNS as the phonebook of the\ninternet.<\/p>\n\n\n\n<p>For example, your domain name, contoso.com, might map to the\nIP address of the load balancer at the web tier, 40.65.106.192.<\/p>\n\n\n\n<p>You can bring your own DNS server or use Azure DNS, a\nhosting service for DNS domains that runs on Azure infrastructure.<\/p>\n\n\n\n<p>The following illustration shows Azure DNS. When the user navigates to contoso.com, Azure DNS routes traffic to the load balancer.<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img loading=\"lazy\" decoding=\"async\" width=\"222\" height=\"248\" src=\"https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2019\/08\/image-30.png\" alt=\"\" class=\"wp-image-1472\"\/><\/figure><\/div>\n\n\n\n<p>An illustration showing the Azure domain name system\npositioned in front of the load balancer.<\/p>\n\n\n\n<p><strong>Conclusion<\/strong><\/p>\n\n\n\n<p>With load balancing in place, your e-commerce site is now\nmore highly available and resilient. When you perform maintenance or receive an\nuptick in traffic, your load balancer can distribute traffic to another\navailable system.<\/p>\n\n\n\n<p>Although you can configure your own load balancer on a VM,\nAzure Load Balancer reduces upkeep because there&#8217;s no infrastructure or\nsoftware to maintain.<\/p>\n\n\n\n<p>DNS maps user-friendly names to their IP addresses, much like how a phonebook maps names of people or businesses to phone numbers. You can bring your own DNS server, or use Azure DNS.<\/p>\n\n\n\n<p><strong>For more on Tutorial visit \u2013&nbsp;<\/strong><a href=\"https:\/\/www.testpreptraining.ai\/tutorial\/microsoft-azure-fundamentals-az-900\/\"><strong>Microsoft Azure Fundamental (AZ-900)<\/strong><\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Deploy your site to Azure Your first step will likely be to re-create your on-premises configuration in the cloud. This basic configuration will give you a sense of how networks are configured, and how network traffic moves in and out of Azure. Your e-commerce site at a glance Larger enterprise systems are often composed of&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"categories":[],"tags":[176,195,9,175],"class_list":["post-1463","page","type-page","status-publish","hentry","tag-az-900","tag-azure-networking","tag-cloud-computing","tag-microsoft-azure"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Azure Networking Options - Testprep Training Tutorials<\/title>\n<meta name=\"description\" content=\"Prepare for Microsoft Azure Fundamental (AZ-900) exam with Free practice tests on Azure Networking Options. Try Free AZ-900 exam dumps 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\/azure-networking-options\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Azure Networking Options - Testprep Training Tutorials\" \/>\n<meta property=\"og:description\" content=\"Prepare for Microsoft Azure Fundamental (AZ-900) exam with Free practice tests on Azure Networking Options. Try Free AZ-900 exam dumps now!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.testpreptraining.ai\/tutorial\/azure-networking-options\/\" \/>\n<meta property=\"og:site_name\" content=\"Testprep Training Tutorials\" \/>\n<meta property=\"article:modified_time\" content=\"2019-08-08T05:37:53+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2019\/08\/image-24.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=\"11 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/azure-networking-options\/\",\"url\":\"https:\/\/www.testpreptraining.ai\/tutorial\/azure-networking-options\/\",\"name\":\"Azure Networking Options - Testprep Training Tutorials\",\"isPartOf\":{\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/#website\"},\"datePublished\":\"2019-08-03T10:08:45+00:00\",\"dateModified\":\"2019-08-08T05:37:53+00:00\",\"description\":\"Prepare for Microsoft Azure Fundamental (AZ-900) exam with Free practice tests on Azure Networking Options. Try Free AZ-900 exam dumps now!\",\"breadcrumb\":{\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/azure-networking-options\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.testpreptraining.ai\/tutorial\/azure-networking-options\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/azure-networking-options\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.testpreptraining.ai\/tutorial\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Azure Networking Options\"}]},{\"@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":"Azure Networking Options - Testprep Training Tutorials","description":"Prepare for Microsoft Azure Fundamental (AZ-900) exam with Free practice tests on Azure Networking Options. Try Free AZ-900 exam dumps 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\/azure-networking-options\/","og_locale":"en_US","og_type":"article","og_title":"Azure Networking Options - Testprep Training Tutorials","og_description":"Prepare for Microsoft Azure Fundamental (AZ-900) exam with Free practice tests on Azure Networking Options. Try Free AZ-900 exam dumps now!","og_url":"https:\/\/www.testpreptraining.ai\/tutorial\/azure-networking-options\/","og_site_name":"Testprep Training Tutorials","article_modified_time":"2019-08-08T05:37:53+00:00","og_image":[{"url":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2019\/08\/image-24.png"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"11 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.testpreptraining.ai\/tutorial\/azure-networking-options\/","url":"https:\/\/www.testpreptraining.ai\/tutorial\/azure-networking-options\/","name":"Azure Networking Options - Testprep Training Tutorials","isPartOf":{"@id":"https:\/\/www.testpreptraining.ai\/tutorial\/#website"},"datePublished":"2019-08-03T10:08:45+00:00","dateModified":"2019-08-08T05:37:53+00:00","description":"Prepare for Microsoft Azure Fundamental (AZ-900) exam with Free practice tests on Azure Networking Options. Try Free AZ-900 exam dumps now!","breadcrumb":{"@id":"https:\/\/www.testpreptraining.ai\/tutorial\/azure-networking-options\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.testpreptraining.ai\/tutorial\/azure-networking-options\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.testpreptraining.ai\/tutorial\/azure-networking-options\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.testpreptraining.ai\/tutorial\/"},{"@type":"ListItem","position":2,"name":"Azure Networking Options"}]},{"@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\/1463","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\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/comments?post=1463"}],"version-history":[{"count":4,"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/pages\/1463\/revisions"}],"predecessor-version":[{"id":5323,"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/pages\/1463\/revisions\/5323"}],"wp:attachment":[{"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/media?parent=1463"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/categories?post=1463"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/tags?post=1463"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}