{"id":71,"date":"2023-10-16T19:51:25","date_gmt":"2023-10-16T19:51:25","guid":{"rendered":"https:\/\/technodare.com\/?p=71"},"modified":"2023-10-18T14:24:00","modified_gmt":"2023-10-18T14:24:00","slug":"how-to-create-tcp-udp-internal-load-balancer-ilb-in-google-cloud-platform-gcp-using-gcp-vms","status":"publish","type":"post","link":"https:\/\/technodare.com\/index.php\/2023\/10\/16\/how-to-create-tcp-udp-internal-load-balancer-ilb-in-google-cloud-platform-gcp-using-gcp-vms\/","title":{"rendered":"How to create TCP\/UDP Internal Load Balancer (ILB) in Google Cloud Platform (GCP) using GCP VMs"},"content":{"rendered":"<p style=\"text-align: center;\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-92\" src=\"https:\/\/technodare.com\/wp-content\/uploads\/2023\/10\/mig-300x111.png\" alt=\"\" width=\"741\" height=\"274\" srcset=\"https:\/\/technodare.com\/wp-content\/uploads\/2023\/10\/mig-300x111.png 300w, https:\/\/technodare.com\/wp-content\/uploads\/2023\/10\/mig-1024x379.png 1024w, https:\/\/technodare.com\/wp-content\/uploads\/2023\/10\/mig-768x285.png 768w, https:\/\/technodare.com\/wp-content\/uploads\/2023\/10\/mig-1536x569.png 1536w, https:\/\/technodare.com\/wp-content\/uploads\/2023\/10\/mig-2048x759.png 2048w\" sizes=\"auto, (max-width: 741px) 100vw, 741px\" \/><\/p>\n<p>Creating Internal Load Balancer(ILB) in Google Cloud Platform(GCP) is easy and it is used to distribute the load across VM instances. In this guide we will see how to create TCP\/UDP Load Balancer using managed and unmanaged instances.<!--more--><\/p>\n<h3><span id=\"Prerequisites\">Prerequisites:<\/span><\/h3>\n<div class=\"wp-block-group\">\n<div class=\"wp-block-group__inner-container\">\n<p>1) Gcloud SDK must be installed in your local<\/p>\n<p>2) Login to your designated gcp project<\/p>\n<p>3) User or Service Account must have required IAM roles to create ILB<\/p>\n<\/div>\n<\/div>\n<h3><span id=\"Create_TCPUDP_ILB_using_Managed_Instance_group\">Create TCP\/UDP ILB using Managed Instance group<\/span><\/h3>\n<p class=\"has-text-align-left\">Google\u2019s managed instance group are the group of identical VM instances created using an instance template. These VM instances can be in different zones (regional) but with same region when multi zone is enabled while creating managed instance group(MIG). As by the name managed, this group has some important features like autoscaling, auto-healing, Rolling out updates.<\/p>\n<h4><span id=\"To_Create_ILB_Follow_the_below_steps_sequentially\">ILB Creation steps in managed instance group:<\/span><\/h4>\n<p>1) Create Managed Instance group using command line or GUI or terraform or Google deployment manager or rest API<\/p>\n<p>2) Create TCP heath check using below command line<\/p>\n<pre class=\"wp-block-preformatted\">gcloud compute health-checks create tcp &lt;health-check-name&gt; --description=\"Health check: TCP &lt;port&gt;\" --check-interval=5s --timeout=5s --healthy-threshold=2 --unhealthy-threshold=2 --port=&lt;port&gt; --proxy-header=NONE --region=&lt;health-check-region&gt;<\/pre>\n<p>3) Create a backed service using below command line<\/p>\n<pre class=\"wp-block-preformatted\">gcloud compute backend-services create &lt;backend-service-name&gt; --load-balancing-scheme internal --health-checks &lt;health-check-name&gt; --protocol tcp --region &lt;backend-service-region&gt;<\/pre>\n<p>4) Assign the created managed instance group to the created backend service<\/p>\n<pre class=\"wp-block-preformatted\">gcloud compute backend-services add-backend &lt;backend-service-name&gt; --instance-group &lt;instance-group-name&gt; --instance-group-region=&lt;instance-group-region&gt; --region &lt;backend-service-region&gt;<\/pre>\n<p>5) Create a forwarding rule using below command line<\/p>\n<pre class=\"wp-block-preformatted\">gcloud compute forwarding-rules create &lt;forwarding-rule-name&gt; --load-balancing-scheme internal --address &lt;ILB ip address&gt; --ports &lt;port&gt; --subnet &lt;full path of subnet&gt; --region &lt;forwarding rule region&gt; --backend-service &lt;backend-service-name&gt;<\/pre>\n<p><strong>Note:<\/strong>\u00a0Managed instance group, backend service and forwarding rule must be in same region<\/p>\n<h3><span id=\"Create_TCPUDP_ILB_using_Unmanaged_Instance_group\">Create TCP\/UDP ILB using Unmanaged Instance group<\/span><\/h3>\n<p>An unmanaged instance group is a collection of user created\/managed VM instances that are created in a same zone, VPC network, and subnet. Unmanaged instances will not have same instance template. We need to manually add user created\/managed VM instances into unmanaged instance groups<\/p>\n<h4><span id=\"To_Create_ILB_Follow_the_below_steps_sequentially-2\">ILB Creation Steps in Unmanaged Instance group:<\/span><\/h4>\n<p>1) Assumed User created\/managed instances are up and running. Then create Unmanaged instance group using below command line<\/p>\n<pre class=\"wp-block-preformatted\">gcloud compute instance-groups unmanaged create &lt;instance-group-name-1&gt; --zone=&lt;zone1&gt;\r\n\r\ngcloud compute instance-groups unmanaged create &lt;instance-group-name-2&gt; --zone=&lt;zone2&gt;<\/pre>\n<p>2) Add User created\/managed instances to the created instance groups<\/p>\n<pre class=\"wp-block-preformatted\">gcloud compute instance-groups unmanaged add-instances &lt;instance-group-name-1&gt; --instances &lt;instance-name-1&gt;,&lt;instance-name-2&gt; --zone=&lt;zone1&gt;\r\ngcloud compute instance-groups unmanaged add-instances instance-group-name-2&gt; --instances &lt;instance-name-3&gt;,&lt;instance-name-4&gt; --zone=&lt;zone2&gt;<\/pre>\n<p><strong>Note:<\/strong>\u00a0Unmanaged instance group will be created only with same zone instances<\/p>\n<p>3) Verify User created\/managed instances are grouped under unmanaged instance group by using below command line<\/p>\n<pre class=\"wp-block-preformatted\">gcloud compute instance-groups unmanaged list-instances &lt;instance-group-name-1&gt; --zone=&lt;zone1&gt;\r\n\r\ngcloud compute instance-groups unmanaged list-instances &lt;instance-group-name-2&gt; --zone=&lt;zone2&gt;<\/pre>\n<p>4) Create TCP heath check using below command line<\/p>\n<pre class=\"wp-block-preformatted\">gcloud compute health-checks create tcp &lt;health-check-name&gt; --description=\"Health check: TCP &lt;port&gt;\" --check-interval=5s --timeout=5s --healthy-threshold=2 --unhealthy-threshold=2 --port=&lt;port&gt; --proxy-header=NONE --region=&lt;health-check-region&gt;<\/pre>\n<p>5) Create a backed service using below command line<\/p>\n<pre class=\"wp-block-preformatted\">gcloud compute backend-services create &lt;backend-service-name&gt; --load-balancing-scheme internal --health-checks &lt;health-check-name&gt; --protocol tcp --region &lt;backend-service-region&gt;<\/pre>\n<p>6) Assign the created unmanaged instance groups to the created backend service<\/p>\n<pre class=\"wp-block-preformatted\">gcloud compute backend-services add-backend &lt;backend-service-name&gt; --instance-group &lt;instance-group-name-1&gt; --instance-group-zone &lt;instance-group-zone-1&gt; --region &lt;backend-service-region&gt;\r\n\r\ngcloud compute backend-services add-backend &lt;backend-service-name&gt; --instance-group &lt;instance-group-name-2&gt; --instance-group-zone &lt;instance-group-zone-2&gt; --region &lt;backend-service-region&gt;Create a forwarding rule using below command line<\/pre>\n<p>7) Create a forwarding rule using below command line<\/p>\n<pre class=\"wp-block-preformatted\">gcloud compute forwarding-rules create &lt;forwarding-rule-name&gt; --load-balancing-scheme internal --address &lt;ILB ip address&gt; --ports &lt;port&gt; --subnet &lt;full path of subnet&gt; --region &lt;forwarding rule region&gt; --backend-service &lt;backend-service-name&gt;<\/pre>\n<p><strong>Note: <\/strong>Unmanaged instance group, backend service and forwarding rule must be in same region<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Creating Internal Load Balancer(ILB) in Google Cloud Platform(GCP) is easy and it is used to distribute the load across VM instances. In this guide we will see how to create TCP\/UDP Load Balancer using managed and unmanaged instances.<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[12],"tags":[],"class_list":["post-71","post","type-post","status-publish","format-standard","hentry","category-gcp","post-preview"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to create TCP\/UDP Internal Load Balancer (ILB) in Google Cloud Platform (GCP) using GCP VMs - TechnoDare - Simplified in Learning Technologies<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/technodare.com\/index.php\/2023\/10\/16\/how-to-create-tcp-udp-internal-load-balancer-ilb-in-google-cloud-platform-gcp-using-gcp-vms\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to create TCP\/UDP Internal Load Balancer (ILB) in Google Cloud Platform (GCP) using GCP VMs - TechnoDare - Simplified in Learning Technologies\" \/>\n<meta property=\"og:description\" content=\"Creating Internal Load Balancer(ILB) in Google Cloud Platform(GCP) is easy and it is used to distribute the load across VM instances. In this guide we will see how to create TCP\/UDP Load Balancer using managed and unmanaged instances.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/technodare.com\/index.php\/2023\/10\/16\/how-to-create-tcp-udp-internal-load-balancer-ilb-in-google-cloud-platform-gcp-using-gcp-vms\/\" \/>\n<meta property=\"og:site_name\" content=\"TechnoDare - Simplified in Learning Technologies\" \/>\n<meta property=\"article:published_time\" content=\"2023-10-16T19:51:25+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-10-18T14:24:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/technodare.com\/wp-content\/uploads\/2023\/10\/mig-300x111.png\" \/>\n<meta name=\"author\" content=\"karthick\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"karthick\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/technodare.com\\\/index.php\\\/2023\\\/10\\\/16\\\/how-to-create-tcp-udp-internal-load-balancer-ilb-in-google-cloud-platform-gcp-using-gcp-vms\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/technodare.com\\\/index.php\\\/2023\\\/10\\\/16\\\/how-to-create-tcp-udp-internal-load-balancer-ilb-in-google-cloud-platform-gcp-using-gcp-vms\\\/\"},\"author\":{\"name\":\"karthick\",\"@id\":\"https:\\\/\\\/technodare.com\\\/#\\\/schema\\\/person\\\/5cb6594a35e47d8e28eb4efb6a5f323b\"},\"headline\":\"How to create TCP\\\/UDP Internal Load Balancer (ILB) in Google Cloud Platform (GCP) using GCP VMs\",\"datePublished\":\"2023-10-16T19:51:25+00:00\",\"dateModified\":\"2023-10-18T14:24:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/technodare.com\\\/index.php\\\/2023\\\/10\\\/16\\\/how-to-create-tcp-udp-internal-load-balancer-ilb-in-google-cloud-platform-gcp-using-gcp-vms\\\/\"},\"wordCount\":391,\"image\":{\"@id\":\"https:\\\/\\\/technodare.com\\\/index.php\\\/2023\\\/10\\\/16\\\/how-to-create-tcp-udp-internal-load-balancer-ilb-in-google-cloud-platform-gcp-using-gcp-vms\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/technodare.com\\\/wp-content\\\/uploads\\\/2023\\\/10\\\/mig-300x111.png\",\"articleSection\":[\"GCP\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/technodare.com\\\/index.php\\\/2023\\\/10\\\/16\\\/how-to-create-tcp-udp-internal-load-balancer-ilb-in-google-cloud-platform-gcp-using-gcp-vms\\\/\",\"url\":\"https:\\\/\\\/technodare.com\\\/index.php\\\/2023\\\/10\\\/16\\\/how-to-create-tcp-udp-internal-load-balancer-ilb-in-google-cloud-platform-gcp-using-gcp-vms\\\/\",\"name\":\"How to create TCP\\\/UDP Internal Load Balancer (ILB) in Google Cloud Platform (GCP) using GCP VMs - TechnoDare - Simplified in Learning Technologies\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/technodare.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/technodare.com\\\/index.php\\\/2023\\\/10\\\/16\\\/how-to-create-tcp-udp-internal-load-balancer-ilb-in-google-cloud-platform-gcp-using-gcp-vms\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/technodare.com\\\/index.php\\\/2023\\\/10\\\/16\\\/how-to-create-tcp-udp-internal-load-balancer-ilb-in-google-cloud-platform-gcp-using-gcp-vms\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/technodare.com\\\/wp-content\\\/uploads\\\/2023\\\/10\\\/mig-300x111.png\",\"datePublished\":\"2023-10-16T19:51:25+00:00\",\"dateModified\":\"2023-10-18T14:24:00+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/technodare.com\\\/#\\\/schema\\\/person\\\/5cb6594a35e47d8e28eb4efb6a5f323b\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/technodare.com\\\/index.php\\\/2023\\\/10\\\/16\\\/how-to-create-tcp-udp-internal-load-balancer-ilb-in-google-cloud-platform-gcp-using-gcp-vms\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/technodare.com\\\/index.php\\\/2023\\\/10\\\/16\\\/how-to-create-tcp-udp-internal-load-balancer-ilb-in-google-cloud-platform-gcp-using-gcp-vms\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/technodare.com\\\/index.php\\\/2023\\\/10\\\/16\\\/how-to-create-tcp-udp-internal-load-balancer-ilb-in-google-cloud-platform-gcp-using-gcp-vms\\\/#primaryimage\",\"url\":\"\",\"contentUrl\":\"\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/technodare.com\\\/index.php\\\/2023\\\/10\\\/16\\\/how-to-create-tcp-udp-internal-load-balancer-ilb-in-google-cloud-platform-gcp-using-gcp-vms\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/technodare.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to create TCP\\\/UDP Internal Load Balancer (ILB) in Google Cloud Platform (GCP) using GCP VMs\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/technodare.com\\\/#website\",\"url\":\"https:\\\/\\\/technodare.com\\\/\",\"name\":\"TechnoDare - Simplified in Learning Technologies\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/technodare.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/technodare.com\\\/#\\\/schema\\\/person\\\/5cb6594a35e47d8e28eb4efb6a5f323b\",\"name\":\"karthick\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2d00b84f82c7a7e83a35935c683fd508e266fdfe9367a2c8d158f717329131df?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2d00b84f82c7a7e83a35935c683fd508e266fdfe9367a2c8d158f717329131df?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2d00b84f82c7a7e83a35935c683fd508e266fdfe9367a2c8d158f717329131df?s=96&d=mm&r=g\",\"caption\":\"karthick\"},\"description\":\"https:\\\/\\\/www.linkedin.com\\\/in\\\/karthick-s-b045249b\\\/\",\"sameAs\":[\"https:\\\/\\\/technodare.com\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/karthick-s-b045249b\\\/\"],\"url\":\"https:\\\/\\\/technodare.com\\\/index.php\\\/author\\\/karthickshanmugamoorthy\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to create TCP\/UDP Internal Load Balancer (ILB) in Google Cloud Platform (GCP) using GCP VMs - TechnoDare - Simplified in Learning Technologies","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:\/\/technodare.com\/index.php\/2023\/10\/16\/how-to-create-tcp-udp-internal-load-balancer-ilb-in-google-cloud-platform-gcp-using-gcp-vms\/","og_locale":"en_US","og_type":"article","og_title":"How to create TCP\/UDP Internal Load Balancer (ILB) in Google Cloud Platform (GCP) using GCP VMs - TechnoDare - Simplified in Learning Technologies","og_description":"Creating Internal Load Balancer(ILB) in Google Cloud Platform(GCP) is easy and it is used to distribute the load across VM instances. In this guide we will see how to create TCP\/UDP Load Balancer using managed and unmanaged instances.","og_url":"https:\/\/technodare.com\/index.php\/2023\/10\/16\/how-to-create-tcp-udp-internal-load-balancer-ilb-in-google-cloud-platform-gcp-using-gcp-vms\/","og_site_name":"TechnoDare - Simplified in Learning Technologies","article_published_time":"2023-10-16T19:51:25+00:00","article_modified_time":"2023-10-18T14:24:00+00:00","og_image":[{"url":"https:\/\/technodare.com\/wp-content\/uploads\/2023\/10\/mig-300x111.png","type":"","width":"","height":""}],"author":"karthick","twitter_card":"summary_large_image","twitter_misc":{"Written by":"karthick","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/technodare.com\/index.php\/2023\/10\/16\/how-to-create-tcp-udp-internal-load-balancer-ilb-in-google-cloud-platform-gcp-using-gcp-vms\/#article","isPartOf":{"@id":"https:\/\/technodare.com\/index.php\/2023\/10\/16\/how-to-create-tcp-udp-internal-load-balancer-ilb-in-google-cloud-platform-gcp-using-gcp-vms\/"},"author":{"name":"karthick","@id":"https:\/\/technodare.com\/#\/schema\/person\/5cb6594a35e47d8e28eb4efb6a5f323b"},"headline":"How to create TCP\/UDP Internal Load Balancer (ILB) in Google Cloud Platform (GCP) using GCP VMs","datePublished":"2023-10-16T19:51:25+00:00","dateModified":"2023-10-18T14:24:00+00:00","mainEntityOfPage":{"@id":"https:\/\/technodare.com\/index.php\/2023\/10\/16\/how-to-create-tcp-udp-internal-load-balancer-ilb-in-google-cloud-platform-gcp-using-gcp-vms\/"},"wordCount":391,"image":{"@id":"https:\/\/technodare.com\/index.php\/2023\/10\/16\/how-to-create-tcp-udp-internal-load-balancer-ilb-in-google-cloud-platform-gcp-using-gcp-vms\/#primaryimage"},"thumbnailUrl":"https:\/\/technodare.com\/wp-content\/uploads\/2023\/10\/mig-300x111.png","articleSection":["GCP"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/technodare.com\/index.php\/2023\/10\/16\/how-to-create-tcp-udp-internal-load-balancer-ilb-in-google-cloud-platform-gcp-using-gcp-vms\/","url":"https:\/\/technodare.com\/index.php\/2023\/10\/16\/how-to-create-tcp-udp-internal-load-balancer-ilb-in-google-cloud-platform-gcp-using-gcp-vms\/","name":"How to create TCP\/UDP Internal Load Balancer (ILB) in Google Cloud Platform (GCP) using GCP VMs - TechnoDare - Simplified in Learning Technologies","isPartOf":{"@id":"https:\/\/technodare.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/technodare.com\/index.php\/2023\/10\/16\/how-to-create-tcp-udp-internal-load-balancer-ilb-in-google-cloud-platform-gcp-using-gcp-vms\/#primaryimage"},"image":{"@id":"https:\/\/technodare.com\/index.php\/2023\/10\/16\/how-to-create-tcp-udp-internal-load-balancer-ilb-in-google-cloud-platform-gcp-using-gcp-vms\/#primaryimage"},"thumbnailUrl":"https:\/\/technodare.com\/wp-content\/uploads\/2023\/10\/mig-300x111.png","datePublished":"2023-10-16T19:51:25+00:00","dateModified":"2023-10-18T14:24:00+00:00","author":{"@id":"https:\/\/technodare.com\/#\/schema\/person\/5cb6594a35e47d8e28eb4efb6a5f323b"},"breadcrumb":{"@id":"https:\/\/technodare.com\/index.php\/2023\/10\/16\/how-to-create-tcp-udp-internal-load-balancer-ilb-in-google-cloud-platform-gcp-using-gcp-vms\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/technodare.com\/index.php\/2023\/10\/16\/how-to-create-tcp-udp-internal-load-balancer-ilb-in-google-cloud-platform-gcp-using-gcp-vms\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/technodare.com\/index.php\/2023\/10\/16\/how-to-create-tcp-udp-internal-load-balancer-ilb-in-google-cloud-platform-gcp-using-gcp-vms\/#primaryimage","url":"","contentUrl":""},{"@type":"BreadcrumbList","@id":"https:\/\/technodare.com\/index.php\/2023\/10\/16\/how-to-create-tcp-udp-internal-load-balancer-ilb-in-google-cloud-platform-gcp-using-gcp-vms\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/technodare.com\/"},{"@type":"ListItem","position":2,"name":"How to create TCP\/UDP Internal Load Balancer (ILB) in Google Cloud Platform (GCP) using GCP VMs"}]},{"@type":"WebSite","@id":"https:\/\/technodare.com\/#website","url":"https:\/\/technodare.com\/","name":"TechnoDare - Simplified in Learning Technologies","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/technodare.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/technodare.com\/#\/schema\/person\/5cb6594a35e47d8e28eb4efb6a5f323b","name":"karthick","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/2d00b84f82c7a7e83a35935c683fd508e266fdfe9367a2c8d158f717329131df?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/2d00b84f82c7a7e83a35935c683fd508e266fdfe9367a2c8d158f717329131df?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/2d00b84f82c7a7e83a35935c683fd508e266fdfe9367a2c8d158f717329131df?s=96&d=mm&r=g","caption":"karthick"},"description":"https:\/\/www.linkedin.com\/in\/karthick-s-b045249b\/","sameAs":["https:\/\/technodare.com","https:\/\/www.linkedin.com\/in\/karthick-s-b045249b\/"],"url":"https:\/\/technodare.com\/index.php\/author\/karthickshanmugamoorthy\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/technodare.com\/index.php\/wp-json\/wp\/v2\/posts\/71","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/technodare.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/technodare.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/technodare.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/technodare.com\/index.php\/wp-json\/wp\/v2\/comments?post=71"}],"version-history":[{"count":13,"href":"https:\/\/technodare.com\/index.php\/wp-json\/wp\/v2\/posts\/71\/revisions"}],"predecessor-version":[{"id":94,"href":"https:\/\/technodare.com\/index.php\/wp-json\/wp\/v2\/posts\/71\/revisions\/94"}],"wp:attachment":[{"href":"https:\/\/technodare.com\/index.php\/wp-json\/wp\/v2\/media?parent=71"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/technodare.com\/index.php\/wp-json\/wp\/v2\/categories?post=71"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/technodare.com\/index.php\/wp-json\/wp\/v2\/tags?post=71"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}