{"id":5772,"date":"2014-10-30T00:00:00","date_gmt":"2014-10-30T00:00:00","guid":{"rendered":""},"modified":"2025-09-16T08:10:58","modified_gmt":"2025-09-16T15:10:58","slug":"multiple-vm-nics-and-network-virtual-appliances-in-azure","status":"publish","type":"post","link":"https:\/\/azure.microsoft.com\/en-us\/blog\/multiple-vm-nics-and-network-virtual-appliances-in-azure\/","title":{"rendered":"Multiple VM NICs and Network Virtual Appliances in Azure"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">At TechEd Europe 2014, we announced support for multiple Network Interface (NICs) in Azure VMs, along with several important partnership in bringing Network Virtual Appliances to Azure, notably Citrix Netscaler and Riverbed appliances. &nbsp;Many network virtual appliances require multiple NICs. Now you can create &nbsp;multiple NICs on your Azure VMs. With multiple NICs you can better manage your network traffic. You can also isolate traffic between the frontend NIC and backend NICs, or separating data plane traffic from the management plane communication. Here&#8217;s an example of a VM with 3 NICs:<\/p>\n\n\n<figure class=\"wp-block-image aligncenter size-full\"><img decoding=\"async\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/10\/image-636x272-1.webp\" alt=\"graphical user interface, diagram\" class=\"wp-image-8970 webp-format\" data-orig-src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/10\/image-636x272-1.webp\"><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"how-to-create-a-vm-with-multiple-nics\">How to create a VM with multiple NICs<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The instructions below will help you create a VM with 3 NICs: a default NIC and two additional NICs. The configuration steps use the virtual network with 3 subnets: Frontend (10.1.0.0\/24), Midtier (10.1.1.0\/24), and Backend (10.1.2.0\/24) shown below as an example \u201cThreeTier-VNet\u201d:<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter\"><img decoding=\"async\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/10\/image.webp\" alt=\"diagram of Enterprise Network's connection to the internet, subnet, and  storage account\" class=\"wp-image-209533\" \/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">The configuration cmdlets below use the latest Azure PowerShell release. Please download and configure Azure PowerShell as described <a href=\"https:\/\/azure.microsoft.com\/en-us\/documentation\/articles\/install-configure-powershell\">here<\/a>.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">1. Select a VM image from Azure VM image gallery:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\n$image = Get-AzureVMImage -ImageName \"a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-R2-201408.01-en.us-127GB.vhd\"\n<\/pre><\/div>\n\n\n<p class=\"wp-block-paragraph\">2. Create an Azure VM configuration and the default administrator login:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\n$vm = New-AzureVMConfig -Name \"MultiNicVM\" -InstanceSize \"ExtraLarge\" -Image $image.ImageName \u2013AvailabilitySetName \u201cMyAVSet\u201d\n<\/pre><\/div>\n\n\n<p class=\"wp-block-paragraph\">3. Specify the subnet and IP address of the default NIC. Note that the SubnetNames parameter must be the name of one of the subnets in your virtual network. We are using the Frontend subnet in this example.<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nSet-AzureSubnet -SubnetNames \"Frontend\" -VM $vm\nSet-AzureStaticVNetIP -IPAddress \"10.1.0.10\" -VM $vm\n<\/pre><\/div>\n\n\n<p class=\"wp-block-paragraph\">4. Add additional NICs to the VM configuration. Similar to step (3), the SubnetName and StaticVNetIPAddress must correspond to the subnet definition of the virtual network. The interface name must be unique for the VM, but does not represent the names of the NICs inside the VM.<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nAdd-AzureNetworkInterfaceConfig -Name \"NIC1\" -SubnetName \"Midtier\" -StaticVNetIPAddress \"10.1.1.11\" -VM $vm\nAdd-AzureNetworkInterfaceConfig -Name \"NIC2\" -SubnetName \"Backend\" -StaticVNetIPAddress \"10.1.2.22\" -VM $vm\n<\/pre><\/div>\n\n\n<p class=\"wp-block-paragraph\">5. After these steps, we are ready to create the VM. You will need to create the VM in the virtual network that contains the subnet names and IP addresses used above:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nNew-AzureVM -ServiceName \"MultiNIC-CS\" \u2013VNetName \u201cThreeTier-VNet\u201d \u2013VM $vm\n<\/pre><\/div>\n\n\n<h2 class=\"wp-block-heading\" id=\"multiple-nic-faqs-constraints\">Multiple NIC FAQs &amp; Constraints:<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The current release of Multiple NIC feature has the following requirements and constraints:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">1. Is the feature in GA or preview?<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li class=\"wp-block-list-item\">GA<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">2. Which region will Multiple NICs be available? If not all regions, what about the rest of regions?<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li class=\"wp-block-list-item\">Customers can use create VMs with multiple NICs today, starting in the North Europe region and subsequently all Azure regions in the coming weeks. Look for rollout updates\u00a0<a href=\"https:\/\/azure.microsoft.com\/en-us\/updates\/?service=virtual-network\">here<\/a>.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">3. What\u2019s the pricing of Multiple NICs?<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li class=\"wp-block-list-item\">There is no additional charge, although the number of NICs is tied to VM SKUs.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">4. Can I use Multiple NICs with Linux, FreeBSD, and other non-Windows OS Images?<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li class=\"wp-block-list-item\">Multiple NICs work on any VMs in Azure except Basic SKUs.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">5. How many NICs can I create?<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li class=\"wp-block-list-item\">Large (A3) and A6: 2<\/li>\n\n\n\n<li class=\"wp-block-list-item\">ExtraLarge (A4) and A7: 4<\/li>\n\n\n\n<li class=\"wp-block-list-item\">A9: 2<\/li>\n\n\n\n<li class=\"wp-block-list-item\">D3: 2<\/li>\n\n\n\n<li class=\"wp-block-list-item\">D4: 4<\/li>\n\n\n\n<li class=\"wp-block-list-item\">D13: 4<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">6. Are there any limitations to this feature that customers must be aware of?<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li class=\"wp-block-list-item\">Multiple NIC is supported on Azure VMs (IaaS, Standard SKUs) only; and VMs must be in an Azure Virtual Network.<\/li>\n\n\n\n<li class=\"wp-block-list-item\">Current release does not support adding or removing NICs after a VM is created.<\/li>\n\n\n\n<li class=\"wp-block-list-item\">NICs in Azure VMs cannot forward traffic or act as Layer 3 (IP) gateways.<\/li>\n\n\n\n<li class=\"wp-block-list-item\">Internet-facing VIP is only supported on the \u201cdefault\u201d NIC, and there is only one VIP mapped to the IP of the default NIC. The additional NICs cannot be used in a Load Balance set.<\/li>\n\n\n\n<li class=\"wp-block-list-item\">The order of the NICs inside the VM will be random, but the IP addresses and the corresponding MACs will remain the same.<\/li>\n\n\n\n<li class=\"wp-block-list-item\">You cannot apply Network Security Groups or Forced Tunneling to the non-default NICs. Adding support is on our roadmap.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"virtual-appliances-in-azure-citrix-and-riverbed\">Virtual Appliances in Azure \u2013 Citrix and Riverbed<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">We are working with several network appliance vendors to onboard their virtual appliances in Azure. At TechEd we gave demos of Citrix Netscaler and Riverbed Steelhead. We will continue to enhance the platform to support even more 3rd party virtual appliances. In addition to multiple NICs we are making the Ethernet (MAC) addresses of the NICs persistent through the life cycle of the VM. This helps those appliances that rely on the MAC address for licensing.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Below are more details on the TechEd Europe demos.<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li class=\"wp-block-list-item\">We have showed a working prototype of Citrix Netscaler running in Azure with 2 NICs and using MAC persistence.<\/li>\n\n\n\n<li class=\"wp-block-list-item\">We built a joint demo with Riverbed using SteelHead on premises, and SteelHead in Azure for WAN optimization to show how to integrate WAN optimization with Azure Site Recovery and ExpressRoute.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">Riverbed is available today. Stay tuned as we grow the number of &nbsp;networking partners in the Azure Certified program.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This is just the beginning of our effort to make Azure Networking platform ready for virtual appliances, and there are a lot more in terms of Azure platform improvements and virtual appliance partnership to come!<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n","protected":false},"excerpt":{"rendered":"<p>At TechEd Europe 2014, we announced support for multiple Network Interface (NICs) in Azure VMs, along with several important partnership in bringing Network Virtual Appliances to Azure, notably Citrix Netscaler and Riverbed appliances.<\/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":[1467],"tags":[],"audience":[3055,3053,3056],"content-type":[],"product":[1455],"tech-community":[],"topic":[],"coauthors":[1384],"class_list":["post-5772","post","type-post","status-publish","format-standard","hentry","category-compute","audience-developers","audience-it-decision-makers","audience-it-implementors","product-virtual-machines","review-flag-1680286580-543","review-flag-1680286581-295","review-flag-1680286581-56","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-ga-1680286584-289","review-flag-integ-1680286579-214","review-flag-new-1680286579-546","review-flag-on-pr-1680286585-571","review-flag-partn-1680286579-300","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>Multiple VM NICs and Network Virtual Appliances in Azure | Microsoft Azure Blog<\/title>\n<meta name=\"description\" content=\"At TechEd Europe 2014, we announced support for multiple Network Interface (NICs) in Azure VMs, along with several important partnership in bringing Network Virtual Appliances to Azure, notably Citrix Netscaler and Riverbed appliances.\" \/>\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\/multiple-vm-nics-and-network-virtual-appliances-in-azure\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Multiple VM NICs and Network Virtual Appliances in Azure | Microsoft Azure Blog\" \/>\n<meta property=\"og:description\" content=\"At TechEd Europe 2014, we announced support for multiple Network Interface (NICs) in Azure VMs, along with several important partnership in bringing Network Virtual Appliances to Azure, notably Citrix Netscaler and Riverbed appliances.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/azure.microsoft.com\/en-us\/blog\/multiple-vm-nics-and-network-virtual-appliances-in-azure\/\" \/>\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-10-30T00:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-09-16T15:10:58+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/10\/image-636x272-1.png\" \/>\n<meta name=\"author\" content=\"Yu-Shun Wang\" \/>\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=\"Yu-Shun Wang\" \/>\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\/multiple-vm-nics-and-network-virtual-appliances-in-azure\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/multiple-vm-nics-and-network-virtual-appliances-in-azure\/\"},\"author\":[{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/author\/yu-shun-wang\/\",\"@type\":\"Person\",\"@name\":\"Yu-Shun Wang\"}],\"headline\":\"Multiple VM NICs and Network Virtual Appliances in Azure\",\"datePublished\":\"2014-10-30T00:00:00+00:00\",\"dateModified\":\"2025-09-16T15:10:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/multiple-vm-nics-and-network-virtual-appliances-in-azure\/\"},\"wordCount\":765,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/multiple-vm-nics-and-network-virtual-appliances-in-azure\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/10\/image-636x272-1.png\",\"articleSection\":[\"Compute\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/azure.microsoft.com\/en-us\/blog\/multiple-vm-nics-and-network-virtual-appliances-in-azure\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/multiple-vm-nics-and-network-virtual-appliances-in-azure\/\",\"url\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/multiple-vm-nics-and-network-virtual-appliances-in-azure\/\",\"name\":\"Multiple VM NICs and Network Virtual Appliances in Azure | Microsoft Azure Blog\",\"isPartOf\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/multiple-vm-nics-and-network-virtual-appliances-in-azure\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/multiple-vm-nics-and-network-virtual-appliances-in-azure\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/10\/image-636x272-1.png\",\"datePublished\":\"2014-10-30T00:00:00+00:00\",\"dateModified\":\"2025-09-16T15:10:58+00:00\",\"description\":\"At TechEd Europe 2014, we announced support for multiple Network Interface (NICs) in Azure VMs, along with several important partnership in bringing Network Virtual Appliances to Azure, notably Citrix Netscaler and Riverbed appliances.\",\"breadcrumb\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/multiple-vm-nics-and-network-virtual-appliances-in-azure\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/azure.microsoft.com\/en-us\/blog\/multiple-vm-nics-and-network-virtual-appliances-in-azure\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/multiple-vm-nics-and-network-virtual-appliances-in-azure\/#primaryimage\",\"url\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/10\/image-636x272-1.webp\",\"contentUrl\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/10\/image-636x272-1.webp\",\"width\":636,\"height\":272,\"caption\":\"graphical user interface, diagram\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/multiple-vm-nics-and-network-virtual-appliances-in-azure\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog home\",\"item\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Compute\",\"item\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/category\/compute\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Multiple VM NICs and Network Virtual Appliances in Azure\"}]},{\"@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":"Multiple VM NICs and Network Virtual Appliances in Azure | Microsoft Azure Blog","description":"At TechEd Europe 2014, we announced support for multiple Network Interface (NICs) in Azure VMs, along with several important partnership in bringing Network Virtual Appliances to Azure, notably Citrix Netscaler and Riverbed appliances.","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\/multiple-vm-nics-and-network-virtual-appliances-in-azure\/","og_locale":"en_US","og_type":"article","og_title":"Multiple VM NICs and Network Virtual Appliances in Azure | Microsoft Azure Blog","og_description":"At TechEd Europe 2014, we announced support for multiple Network Interface (NICs) in Azure VMs, along with several important partnership in bringing Network Virtual Appliances to Azure, notably Citrix Netscaler and Riverbed appliances.","og_url":"https:\/\/azure.microsoft.com\/en-us\/blog\/multiple-vm-nics-and-network-virtual-appliances-in-azure\/","og_site_name":"Microsoft Azure Blog","article_publisher":"https:\/\/www.facebook.com\/microsoftazure","article_published_time":"2014-10-30T00:00:00+00:00","article_modified_time":"2025-09-16T15:10:58+00:00","og_image":[{"url":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/10\/image-636x272-1.png","type":"","width":"","height":""}],"author":"Yu-Shun Wang","twitter_card":"summary_large_image","twitter_creator":"@azure","twitter_site":"@azure","twitter_misc":{"Written by":"Yu-Shun Wang","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/multiple-vm-nics-and-network-virtual-appliances-in-azure\/#article","isPartOf":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/multiple-vm-nics-and-network-virtual-appliances-in-azure\/"},"author":[{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/author\/yu-shun-wang\/","@type":"Person","@name":"Yu-Shun Wang"}],"headline":"Multiple VM NICs and Network Virtual Appliances in Azure","datePublished":"2014-10-30T00:00:00+00:00","dateModified":"2025-09-16T15:10:58+00:00","mainEntityOfPage":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/multiple-vm-nics-and-network-virtual-appliances-in-azure\/"},"wordCount":765,"commentCount":0,"publisher":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#organization"},"image":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/multiple-vm-nics-and-network-virtual-appliances-in-azure\/#primaryimage"},"thumbnailUrl":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/10\/image-636x272-1.png","articleSection":["Compute"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/azure.microsoft.com\/en-us\/blog\/multiple-vm-nics-and-network-virtual-appliances-in-azure\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/multiple-vm-nics-and-network-virtual-appliances-in-azure\/","url":"https:\/\/azure.microsoft.com\/en-us\/blog\/multiple-vm-nics-and-network-virtual-appliances-in-azure\/","name":"Multiple VM NICs and Network Virtual Appliances in Azure | Microsoft Azure Blog","isPartOf":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/multiple-vm-nics-and-network-virtual-appliances-in-azure\/#primaryimage"},"image":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/multiple-vm-nics-and-network-virtual-appliances-in-azure\/#primaryimage"},"thumbnailUrl":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/10\/image-636x272-1.png","datePublished":"2014-10-30T00:00:00+00:00","dateModified":"2025-09-16T15:10:58+00:00","description":"At TechEd Europe 2014, we announced support for multiple Network Interface (NICs) in Azure VMs, along with several important partnership in bringing Network Virtual Appliances to Azure, notably Citrix Netscaler and Riverbed appliances.","breadcrumb":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/multiple-vm-nics-and-network-virtual-appliances-in-azure\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/azure.microsoft.com\/en-us\/blog\/multiple-vm-nics-and-network-virtual-appliances-in-azure\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/multiple-vm-nics-and-network-virtual-appliances-in-azure\/#primaryimage","url":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/10\/image-636x272-1.webp","contentUrl":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/10\/image-636x272-1.webp","width":636,"height":272,"caption":"graphical user interface, diagram"},{"@type":"BreadcrumbList","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/multiple-vm-nics-and-network-virtual-appliances-in-azure\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog home","item":"https:\/\/azure.microsoft.com\/en-us\/blog\/"},{"@type":"ListItem","position":2,"name":"Compute","item":"https:\/\/azure.microsoft.com\/en-us\/blog\/category\/compute\/"},{"@type":"ListItem","position":3,"name":"Multiple VM NICs and Network Virtual Appliances in Azure"}]},{"@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\/5772","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=5772"}],"version-history":[{"count":2,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/posts\/5772\/revisions"}],"predecessor-version":[{"id":46297,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/posts\/5772\/revisions\/46297"}],"wp:attachment":[{"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/media?parent=5772"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/categories?post=5772"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/tags?post=5772"},{"taxonomy":"audience","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/audience?post=5772"},{"taxonomy":"content-type","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/content-type?post=5772"},{"taxonomy":"product","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/product?post=5772"},{"taxonomy":"tech-community","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/tech-community?post=5772"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/topic?post=5772"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/coauthors?post=5772"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}