{"id":14219,"date":"2025-02-17T05:29:22","date_gmt":"2025-02-17T11:29:22","guid":{"rendered":"https:\/\/www.supportpro.com\/blog\/?p=14219"},"modified":"2026-03-27T03:15:55","modified_gmt":"2026-03-27T09:15:55","slug":"how-to-enable-and-configure-network-bonding-in-linux-a-step-by-step-guide","status":"publish","type":"post","link":"https:\/\/www.supportpro.com\/blog\/how-to-enable-and-configure-network-bonding-in-linux-a-step-by-step-guide\/","title":{"rendered":"How to Enable and Configure Network Bonding in Linux &#8211; A Step-by-Step Guide"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-post\" data-elementor-id=\"14219\" class=\"elementor elementor-14219\">\n\t\t\t\t\t\t<section class=\"penci-section penci-disSticky penci-structure-10 elementor-section elementor-top-section elementor-element elementor-element-6eaa9cc2 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"6eaa9cc2\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"penci-ercol-100 penci-ercol-order-1 penci-sticky-ct    elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-f410734\" data-id=\"f410734\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-3b1d8139 elementor-widget elementor-widget-text-editor\" data-id=\"3b1d8139\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\n<p class=\"wp-block-paragraph\">Network bonding is a method used to combine multiple network interfaces into a single virtual interface, often to provide redundancy, improve network throughput, or load balance traffic across multiple interfaces. This technology is particularly useful in high-availability systems or environments that require higher network performance. In Linux, network bonding is implemented through the <strong>bonding kernel module<\/strong>, which allows multiple physical network interfaces to appear as a single logical interface.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This guide explains how to enable and configure network bonding on a Linux system. The steps include loading the bonding module, creating a bonded interface, and configuring bonding options based on the network requirements.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>1. Prerequisites<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Before configuring network bonding, you need to ensure that:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The Linux system has multiple network interfaces (e.g., <strong>eth0, eth1<\/strong>).<\/li>\n\n\n\n<li>You have administrative (root) privileges to configure network settings.<\/li>\n\n\n\n<li>The <strong>bonding<\/strong> kernel module is available on the system.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>2. Understanding Bonding Modes<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Linux supports several bonding modes, each providing different behaviors for redundancy, load balancing, or fault tolerance. The following are the most common modes:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Mode 0 (Round-robin)<\/strong>:<br>\n<ul class=\"wp-block-list\">\n<li>Provides load balancing by transmitting packets in a round-robin manner across all interfaces.<\/li>\n\n\n\n<li>It requires support from the switch for load balancing.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>Mode 1 (Active-backup)<\/strong>:<br>\n<ul class=\"wp-block-list\">\n<li>One interface is active at a time, while others are in backup mode.<\/li>\n\n\n\n<li>Provides fault tolerance (if the active interface fails, a backup interface is activated).<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>Mode 2 (XOR)<\/strong>:<br>\n<ul class=\"wp-block-list\">\n<li>Load balancing based on the XOR of the MAC address, ensuring that the traffic is balanced across the interfaces.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>Mode 3 (Broadcast)<\/strong>:<br>\n<ul class=\"wp-block-list\">\n<li>Sends all packets to both interfaces, ensuring redundancy.<\/li>\n\n\n\n<li>Primarily used for high availability.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>Mode 4 (IEEE 802.3ad &#8211; Dynamic Link Aggregation)<\/strong>:<br>\n<ul class=\"wp-block-list\">\n<li>Implements Link Aggregation Control Protocol (LACP) to dynamically create aggregated links.<\/li>\n\n\n\n<li>Requires switch support for LACP.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>Mode 5 (Adaptive Load Balancing)<\/strong>:<br>\n<ul class=\"wp-block-list\">\n<li>Provides load balancing and fault tolerance, using ARP monitoring to dynamically assign traffic to the most optimal interface.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>Mode 6 (Balance-alb)<\/strong>:<br>\n<ul class=\"wp-block-list\">\n<li>Adaptive load balancing that dynamically assigns packets to different interfaces based on current traffic patterns.<\/li>\n\n\n\n<li>No switch support is needed, unlike LACP.<\/li>\n<\/ul>\n<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>3. Installing the Bonding Module<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">In most modern Linux distributions, the bonding module is pre-installed in the kernel. However, you might need to load it manually if it is not loaded by default.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">To load the bonding module, run the following command:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong><em>sudo modprobe bonding<\/em><\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">To ensure the bonding module is loaded after a reboot, you can add it to the<strong> <\/strong><strong>\/etc\/modules<\/strong> file:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong><em>echo &#8220;bonding&#8221; | sudo tee -a \/etc\/modules<\/em><\/strong><\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>4. Creating a Bonded Interface<\/strong><\/h3>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>a) Identifying Network Interfaces<\/strong><\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">Before creating a bonded interface, you need to identify the physical network interfaces you want to bond. Use the <strong>ip<\/strong> or <strong>ifconfig<\/strong> command to list all available network interfaces.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong><em>ip link show<\/em><\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">For example, suppose you have two interfaces, <strong>eth0<\/strong> and <strong>eth1<\/strong>, which you want to bond.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>b) Configuring the Bonding Interface<\/strong><\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">You need to configure the bond interface (e.g., <strong>bond0<\/strong>) by creating a configuration file or using network management tools.<\/p>\n\n\n\n<h5 class=\"wp-block-heading\"><strong>Using Network Configuration Files (Traditional Method)<\/strong><\/h5>\n\n\n\n<p class=\"wp-block-paragraph\">For distributions like CentOS, RHEL, or Fedora, network interfaces are often configured in <strong>\/etc\/sysconfig\/network-scripts\/<\/strong> for older versions. In newer systems using NetworkManager or netplan, the configuration will differ.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Create Bonded Interface Configuration:<\/strong><strong><br><\/strong><strong><br><\/strong> First, create a bonding configuration file for the new bonded interface, e.g., <strong>\/etc\/sysconfig\/network-scripts\/ifcfg-bond0<\/strong>.<br><br>Example configuration file for <strong>bond0<\/strong> (mode 1, active-backup):<br><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong><em>DEVICE=bond0<\/em><\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong><em>NAME=bond0<\/em><\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong><em>BONDING_MASTER=yes<\/em><\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong><em>BOOTPROTO=static<\/em><\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong><em>IPADDR=192.168.1.100<\/em><\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong><em>NETMASK=255.255.255.0<\/em><\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong><em>GATEWAY=192.168.1.1<\/em><\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong><em>ONBOOT=yes<\/em><\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong><em>BONDING_OPTS=&#8221;mode=1 miimon=100 primary=eth0&#8243;<\/em><\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>DEVICE<\/strong>: Name of the bond interface (<strong>bond0<\/strong>).<\/li>\n\n\n\n<li><strong>BONDING_OPTS<\/strong>: Options for bonding. Here, <strong>mode=1<\/strong><strong> <\/strong>is active-backup, <strong>miimon=100<\/strong> specifies a monitoring interval of 100 ms, and <strong>primary=eth0<\/strong> designates <strong>eth0<\/strong> as the primary interface.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Configure the Physical Interfaces:<\/strong><strong><br><\/strong><strong><br><\/strong> Next, configure the physical interfaces (<strong>eth0<\/strong> and <strong>eth1<\/strong>) by creating files such as <strong>\/etc\/sysconfig\/network-scripts\/ifcfg-eth0<\/strong> and <strong>\/etc\/sysconfig\/network-scripts\/ifcfg-eth1<\/strong>. These files should contain the following configurations:<br><br>Example for <strong>eth0<\/strong>:<br><br><strong>DEVICE=eth0<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>NAME=eth0<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>MASTER=bond0<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>SLAVE=yes<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>ONBOOT=yes<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">&nbsp;Similarly, configure <strong>eth1<\/strong> in the same manner.<br><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Restart Network Service:<\/strong><strong><br><\/strong><strong><br><\/strong> After configuring the bonded interface and the physical interfaces, restart the network service to apply the changes:<br><br>sudo systemctl restart network<\/p>\n\n\n\n<h5 class=\"wp-block-heading\"><strong>Using <\/strong><strong>netplan<\/strong><strong> (Modern Systems)<\/strong><\/h5>\n\n\n\n<p class=\"wp-block-paragraph\">On systems using <strong>netplan<\/strong> (Ubuntu 18.04 and later), you will configure the bonding in the <strong>\/etc\/netplan\/<\/strong> directory.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Create the Bonded Interface:<\/strong><strong><br><\/strong><strong><br><\/strong> Open or create a <strong>.yaml<\/strong><strong> <\/strong>configuration file in<strong> <\/strong><strong>\/etc\/netplan\/<\/strong>, such as <strong>\/etc\/netplan\/01-bonding.yaml<\/strong>.<br><br>Example configuration for <strong>bond0<\/strong>:<br><br><strong>network:<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>&nbsp;&nbsp;version: 2<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>&nbsp;&nbsp;renderer: networkd<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>&nbsp;&nbsp;ethernets:<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>&nbsp;&nbsp;&nbsp;&nbsp;eth0: {}<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>&nbsp;&nbsp;&nbsp;&nbsp;eth1: {}<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>&nbsp;&nbsp;bonds:<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>&nbsp;&nbsp;&nbsp;&nbsp;bond0:<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;interfaces: [eth0, eth1]<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<strong>parameters:<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;mode: active-backup<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;primary: eth0<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;mii-monitor-interval: 100<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;dhcp4: false<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;addresses:<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#8211; 192.168.1.100\/24<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;gateway4: 192.168.1.1<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Apply the Configuration:<\/strong><strong><br><\/strong><strong><br><\/strong> Apply the netplan configuration by running:<br><br><strong><em>sudo netplan apply<\/em><\/strong><\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>5. Testing the Bonding Configuration<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">After configuring network bonding, it\u2019s crucial to verify that the bonded interface is working as expected. Use the following commands to check:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Check the bond interface status:<br><br><strong>cat \/proc\/net\/bonding\/bond0<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>&nbsp;This will provide detailed information about the bonding status, including active interfaces, the bonding mode, and link status.<br><\/li>\n\n\n\n<li>Test failover by disconnecting one of the physical interfaces and checking if the network continues to function without interruption.<br><\/li>\n\n\n\n<li>Run <strong>ping<\/strong> or other network diagnostic tools to ensure the network is reachable.<br><\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong> Conclusion<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Network bonding in Linux provides several options for improving network performance and redundancy. By combining multiple network interfaces into a single logical interface, bonding can ensure higher availability and better throughput. The configuration process can be done through traditional network-scripts or modern methods like <strong>netplan<\/strong>, depending on the Linux distribution.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">By understanding bonding modes and choosing the appropriate configuration for your network&#8217;s needs, you can improve the reliability and efficiency of your system\u2019s network connectivity.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">FAQs<\/h3>\n\n\n\n<h4 class=\"wp-block-heading\">1. What is network bonding in Linux?<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">Network bonding combines multiple network interfaces into a single logical interface to improve <strong>redundancy, throughput, and reliability<\/strong>.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">2. Which bonding mode is best for high availability?<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Mode 1 (Active-backup)<\/strong> is commonly used for high availability because it ensures failover if the primary interface goes down.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">3. Does network bonding require switch support?<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">Some modes like <strong>IEEE 802.3ad (LACP)<\/strong> require switch support, while others like <strong>active-backup or balance-alb<\/strong> work without it.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">4. How can I verify if bonding is working correctly?<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">You can check bonding status using:<br><code>cat \/proc\/net\/bonding\/bond0<\/code><br>This shows active interfaces, mode, and link status.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">5. Can I configure bonding using netplan?<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">Yes, modern Linux distributions like Ubuntu use <strong>netplan<\/strong>, where bonding can be configured through YAML files in <code>\/etc\/netplan\/<\/code>.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Configuring network bonding correctly is essential for achieving high availability, better performance, and reliable connectivity &#8211; but it can get complex depending on your environment and requirements.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">If you need expert assistance with Linux networking, server optimization, or advanced infrastructure setup, <strong><a href=\"https:\/\/www.supportpro.com\/requestquote.php\" title=\"\">SupportPRO<\/a><\/strong> is here to help. Our experienced team can ensure your network is configured for maximum efficiency and uptime.<\/p>\n\n\n\n<div class=\"wp-block-media-text alignwide has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center has-white-background-color has-background\"><div class=\"wp-block-media-text__content\">\n<p class=\"has-large-font-size wp-block-paragraph\">Facing issues? <\/p>\n\n\n\n<p class=\"has-large-font-size wp-block-paragraph\">Our technical support<br>engineers can solve it. <\/p>\n\n\n\n<!--HubSpot Call-to-Action Code --><span class=\"hs-cta-wrapper\" id=\"hs-cta-wrapper-3350a795-db50-482f-9911-301930d1b1be\"><span class=\"hs-cta-node hs-cta-3350a795-db50-482f-9911-301930d1b1be\" id=\"hs-cta-3350a795-db50-482f-9911-301930d1b1be\"><!--[if lte IE 8]><div id=\"hs-cta-ie-element\"><\/div><![endif]--><a href=\"https:\/\/cta-redirect.hubspot.com\/cta\/redirect\/2725694\/3350a795-db50-482f-9911-301930d1b1be\" ><img decoding=\"async\" class=\"hs-cta-img\" id=\"hs-cta-img-3350a795-db50-482f-9911-301930d1b1be\" style=\"border-width:0px;\" src=\"https:\/\/no-cache.hubspot.com\/cta\/default\/2725694\/3350a795-db50-482f-9911-301930d1b1be.png\"  alt=\"Contact Us today!\"\/><\/a><\/span><script charset=\"utf-8\" src=\"https:\/\/js.hscta.net\/cta\/current.js\"><\/script><script type=\"text\/javascript\"> hbspt.cta.load(2725694, '3350a795-db50-482f-9911-301930d1b1be', {\"useNewLoader\":\"true\",\"region\":\"na1\"}); <\/script><\/span><!-- end HubSpot Call-to-Action Code -->\n<\/div><figure class=\"wp-block-media-text__media\"><img fetchpriority=\"high\" decoding=\"async\" width=\"904\" height=\"931\" src=\"https:\/\/www.supportpro.com\/blog\/wp-content\/uploads\/2022\/09\/Free-server-checkup.png\" alt=\"guy server checkup\" class=\"wp-image-12943 size-full\" srcset=\"https:\/\/www.supportpro.com\/blog\/wp-content\/uploads\/2022\/09\/Free-server-checkup.png 904w, https:\/\/www.supportpro.com\/blog\/wp-content\/uploads\/2022\/09\/Free-server-checkup-291x300.png 291w, https:\/\/www.supportpro.com\/blog\/wp-content\/uploads\/2022\/09\/Free-server-checkup-768x791.png 768w, https:\/\/www.supportpro.com\/blog\/wp-content\/uploads\/2022\/09\/Free-server-checkup-585x602.png 585w\" sizes=\"(max-width: 904px) 100vw, 904px\" \/><\/figure><\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Network bonding is a method used to combine multiple network interfaces into a single virtual interface, often to provide redundancy, improve network throughput, or load balance traffic across multiple interfaces.&hellip;<\/p>\n","protected":false},"author":34,"featured_media":14223,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_lmt_disableupdate":"","_lmt_disable":"","footnotes":""},"categories":[91,6],"tags":[83],"class_list":["post-14219","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-linux","category-linux-basics","tag-linux"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO Pro 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"Learn how to configure Linux network bonding with modes, setup steps, netplan examples, and testing methods for redundancy and performance\" \/>\n\t<meta name=\"robots\" content=\"max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n\t<meta name=\"author\" content=\"Ashila Antony\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.supportpro.com\/blog\/how-to-enable-and-configure-network-bonding-in-linux-a-step-by-step-guide\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO Pro (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Server Management Tips | SupportPRO Blog\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Linux Network Bonding Configuration Guide\" \/>\n\t\t<meta property=\"og:description\" content=\"Learn how to configure Linux network bonding with modes, setup steps, netplan examples, and testing methods for redundancy and performance\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.supportpro.com\/blog\/how-to-enable-and-configure-network-bonding-in-linux-a-step-by-step-guide\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/www.supportpro.com\/blog\/wp-content\/uploads\/2025\/02\/Untitled-design-2.jpg\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/www.supportpro.com\/blog\/wp-content\/uploads\/2025\/02\/Untitled-design-2.jpg\" \/>\n\t\t<meta property=\"og:image:width\" content=\"1509\" \/>\n\t\t<meta property=\"og:image:height\" content=\"877\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2025-02-17T11:29:22+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2026-03-27T09:15:55+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Linux Network Bonding Configuration Guide\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Learn how to configure Linux network bonding with modes, setup steps, netplan examples, and testing methods for redundancy and performance\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/www.supportpro.com\/blog\/wp-content\/uploads\/2025\/02\/Untitled-design-2.jpg\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/how-to-enable-and-configure-network-bonding-in-linux-a-step-by-step-guide\\\/#article\",\"name\":\"Linux Network Bonding Configuration Guide\",\"headline\":\"How to Enable and Configure Network Bonding in Linux &#8211; A Step-by-Step Guide\",\"author\":{\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/author\\\/ashila-aarmiasystems-com\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/02\\\/Untitled-design-2.jpg\",\"width\":1509,\"height\":877,\"caption\":\"Linux logo with code\"},\"datePublished\":\"2025-02-17T05:29:22-06:00\",\"dateModified\":\"2026-03-27T03:15:55-06:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/how-to-enable-and-configure-network-bonding-in-linux-a-step-by-step-guide\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/how-to-enable-and-configure-network-bonding-in-linux-a-step-by-step-guide\\\/#webpage\"},\"articleSection\":\"Linux, Linux Basics, Linux\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/how-to-enable-and-configure-network-bonding-in-linux-a-step-by-step-guide\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.supportpro.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/category\\\/linux\\\/#listItem\",\"name\":\"Linux\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/category\\\/linux\\\/#listItem\",\"position\":2,\"name\":\"Linux\",\"item\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/category\\\/linux\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/category\\\/linux\\\/linux-basics\\\/#listItem\",\"name\":\"Linux Basics\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/category\\\/linux\\\/linux-basics\\\/#listItem\",\"position\":3,\"name\":\"Linux Basics\",\"item\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/category\\\/linux\\\/linux-basics\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/how-to-enable-and-configure-network-bonding-in-linux-a-step-by-step-guide\\\/#listItem\",\"name\":\"How to Enable and Configure Network Bonding in Linux &#8211; A Step-by-Step Guide\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/category\\\/linux\\\/#listItem\",\"name\":\"Linux\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/how-to-enable-and-configure-network-bonding-in-linux-a-step-by-step-guide\\\/#listItem\",\"position\":4,\"name\":\"How to Enable and Configure Network Bonding in Linux &#8211; A Step-by-Step Guide\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/category\\\/linux\\\/linux-basics\\\/#listItem\",\"name\":\"Linux Basics\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/#organization\",\"name\":\"SupportPRO\",\"description\":\"SupportPRO Blog\",\"url\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/\",\"telephone\":\"+18476076123\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/author\\\/ashila-aarmiasystems-com\\\/#author\",\"url\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/author\\\/ashila-aarmiasystems-com\\\/\",\"name\":\"Ashila Antony\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/how-to-enable-and-configure-network-bonding-in-linux-a-step-by-step-guide\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/264c68a21d6c0644e5cbb71ce23c63597c0928cccbef3c67fe6a9d43b138c52b?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Ashila Antony\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/how-to-enable-and-configure-network-bonding-in-linux-a-step-by-step-guide\\\/#webpage\",\"url\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/how-to-enable-and-configure-network-bonding-in-linux-a-step-by-step-guide\\\/\",\"name\":\"Linux Network Bonding Configuration Guide\",\"description\":\"Learn how to configure Linux network bonding with modes, setup steps, netplan examples, and testing methods for redundancy and performance\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/how-to-enable-and-configure-network-bonding-in-linux-a-step-by-step-guide\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/author\\\/ashila-aarmiasystems-com\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/author\\\/ashila-aarmiasystems-com\\\/#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/02\\\/Untitled-design-2.jpg\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/how-to-enable-and-configure-network-bonding-in-linux-a-step-by-step-guide\\\/#mainImage\",\"width\":1509,\"height\":877,\"caption\":\"Linux logo with code\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/how-to-enable-and-configure-network-bonding-in-linux-a-step-by-step-guide\\\/#mainImage\"},\"datePublished\":\"2025-02-17T05:29:22-06:00\",\"dateModified\":\"2026-03-27T03:15:55-06:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/\",\"name\":\"Server Management Tips\",\"description\":\"SupportPRO Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO Pro -->\r\n\t\t<title>Linux Network Bonding Configuration Guide<\/title>\n\n","aioseo_head_json":{"title":"Linux Network Bonding Configuration Guide","description":"Learn how to configure Linux network bonding with modes, setup steps, netplan examples, and testing methods for redundancy and performance","canonical_url":"https:\/\/www.supportpro.com\/blog\/how-to-enable-and-configure-network-bonding-in-linux-a-step-by-step-guide\/","robots":"max-snippet:-1, max-image-preview:large, max-video-preview:-1","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.supportpro.com\/blog\/how-to-enable-and-configure-network-bonding-in-linux-a-step-by-step-guide\/#article","name":"Linux Network Bonding Configuration Guide","headline":"How to Enable and Configure Network Bonding in Linux &#8211; A Step-by-Step Guide","author":{"@id":"https:\/\/www.supportpro.com\/blog\/author\/ashila-aarmiasystems-com\/#author"},"publisher":{"@id":"https:\/\/www.supportpro.com\/blog\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/www.supportpro.com\/blog\/wp-content\/uploads\/2025\/02\/Untitled-design-2.jpg","width":1509,"height":877,"caption":"Linux logo with code"},"datePublished":"2025-02-17T05:29:22-06:00","dateModified":"2026-03-27T03:15:55-06:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/www.supportpro.com\/blog\/how-to-enable-and-configure-network-bonding-in-linux-a-step-by-step-guide\/#webpage"},"isPartOf":{"@id":"https:\/\/www.supportpro.com\/blog\/how-to-enable-and-configure-network-bonding-in-linux-a-step-by-step-guide\/#webpage"},"articleSection":"Linux, Linux Basics, Linux"},{"@type":"BreadcrumbList","@id":"https:\/\/www.supportpro.com\/blog\/how-to-enable-and-configure-network-bonding-in-linux-a-step-by-step-guide\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.supportpro.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.supportpro.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.supportpro.com\/blog\/category\/linux\/#listItem","name":"Linux"}},{"@type":"ListItem","@id":"https:\/\/www.supportpro.com\/blog\/category\/linux\/#listItem","position":2,"name":"Linux","item":"https:\/\/www.supportpro.com\/blog\/category\/linux\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.supportpro.com\/blog\/category\/linux\/linux-basics\/#listItem","name":"Linux Basics"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.supportpro.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.supportpro.com\/blog\/category\/linux\/linux-basics\/#listItem","position":3,"name":"Linux Basics","item":"https:\/\/www.supportpro.com\/blog\/category\/linux\/linux-basics\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.supportpro.com\/blog\/how-to-enable-and-configure-network-bonding-in-linux-a-step-by-step-guide\/#listItem","name":"How to Enable and Configure Network Bonding in Linux &#8211; A Step-by-Step Guide"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.supportpro.com\/blog\/category\/linux\/#listItem","name":"Linux"}},{"@type":"ListItem","@id":"https:\/\/www.supportpro.com\/blog\/how-to-enable-and-configure-network-bonding-in-linux-a-step-by-step-guide\/#listItem","position":4,"name":"How to Enable and Configure Network Bonding in Linux &#8211; A Step-by-Step Guide","previousItem":{"@type":"ListItem","@id":"https:\/\/www.supportpro.com\/blog\/category\/linux\/linux-basics\/#listItem","name":"Linux Basics"}}]},{"@type":"Organization","@id":"https:\/\/www.supportpro.com\/blog\/#organization","name":"SupportPRO","description":"SupportPRO Blog","url":"https:\/\/www.supportpro.com\/blog\/","telephone":"+18476076123"},{"@type":"Person","@id":"https:\/\/www.supportpro.com\/blog\/author\/ashila-aarmiasystems-com\/#author","url":"https:\/\/www.supportpro.com\/blog\/author\/ashila-aarmiasystems-com\/","name":"Ashila Antony","image":{"@type":"ImageObject","@id":"https:\/\/www.supportpro.com\/blog\/how-to-enable-and-configure-network-bonding-in-linux-a-step-by-step-guide\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/264c68a21d6c0644e5cbb71ce23c63597c0928cccbef3c67fe6a9d43b138c52b?s=96&d=mm&r=g","width":96,"height":96,"caption":"Ashila Antony"}},{"@type":"WebPage","@id":"https:\/\/www.supportpro.com\/blog\/how-to-enable-and-configure-network-bonding-in-linux-a-step-by-step-guide\/#webpage","url":"https:\/\/www.supportpro.com\/blog\/how-to-enable-and-configure-network-bonding-in-linux-a-step-by-step-guide\/","name":"Linux Network Bonding Configuration Guide","description":"Learn how to configure Linux network bonding with modes, setup steps, netplan examples, and testing methods for redundancy and performance","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.supportpro.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.supportpro.com\/blog\/how-to-enable-and-configure-network-bonding-in-linux-a-step-by-step-guide\/#breadcrumblist"},"author":{"@id":"https:\/\/www.supportpro.com\/blog\/author\/ashila-aarmiasystems-com\/#author"},"creator":{"@id":"https:\/\/www.supportpro.com\/blog\/author\/ashila-aarmiasystems-com\/#author"},"image":{"@type":"ImageObject","url":"https:\/\/www.supportpro.com\/blog\/wp-content\/uploads\/2025\/02\/Untitled-design-2.jpg","@id":"https:\/\/www.supportpro.com\/blog\/how-to-enable-and-configure-network-bonding-in-linux-a-step-by-step-guide\/#mainImage","width":1509,"height":877,"caption":"Linux logo with code"},"primaryImageOfPage":{"@id":"https:\/\/www.supportpro.com\/blog\/how-to-enable-and-configure-network-bonding-in-linux-a-step-by-step-guide\/#mainImage"},"datePublished":"2025-02-17T05:29:22-06:00","dateModified":"2026-03-27T03:15:55-06:00"},{"@type":"WebSite","@id":"https:\/\/www.supportpro.com\/blog\/#website","url":"https:\/\/www.supportpro.com\/blog\/","name":"Server Management Tips","description":"SupportPRO Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.supportpro.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"Server Management Tips | SupportPRO Blog","og:type":"article","og:title":"Linux Network Bonding Configuration Guide","og:description":"Learn how to configure Linux network bonding with modes, setup steps, netplan examples, and testing methods for redundancy and performance","og:url":"https:\/\/www.supportpro.com\/blog\/how-to-enable-and-configure-network-bonding-in-linux-a-step-by-step-guide\/","og:image":"https:\/\/www.supportpro.com\/blog\/wp-content\/uploads\/2025\/02\/Untitled-design-2.jpg","og:image:secure_url":"https:\/\/www.supportpro.com\/blog\/wp-content\/uploads\/2025\/02\/Untitled-design-2.jpg","og:image:width":1509,"og:image:height":877,"article:published_time":"2025-02-17T11:29:22+00:00","article:modified_time":"2026-03-27T09:15:55+00:00","twitter:card":"summary","twitter:title":"Linux Network Bonding Configuration Guide","twitter:description":"Learn how to configure Linux network bonding with modes, setup steps, netplan examples, and testing methods for redundancy and performance","twitter:image":"https:\/\/www.supportpro.com\/blog\/wp-content\/uploads\/2025\/02\/Untitled-design-2.jpg"},"aioseo_meta_data":{"post_id":"14219","title":"Linux Network Bonding Configuration Guide","description":"Learn how to configure Linux network bonding with modes, setup steps, netplan examples, and testing methods for redundancy and performance","keywords":null,"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"seo_analyzer_scan_date":"2026-03-27 10:11:02","breadcrumb_settings":null,"limit_modified_date":false,"open_ai":"{\"title\":{\"suggestions\":[],\"usage\":0},\"description\":{\"suggestions\":[],\"usage\":0}}","ai":{"faqs":[],"keyPoints":[],"titles":[],"descriptions":[],"socialPosts":{"email":[],"linkedin":[],"twitter":[],"facebook":[],"instagram":[]}},"created":"2025-02-17 10:16:14","updated":"2026-07-01 02:13:37"},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/www.supportpro.com\/blog\" title=\"Home\">Home<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/www.supportpro.com\/blog\/category\/linux\/\" title=\"Linux\">Linux<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/www.supportpro.com\/blog\/category\/linux\/linux-basics\/\" title=\"Linux Basics\">Linux Basics<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\tHow to Enable and Configure Network Bonding in Linux \u2013 A Step-by-Step Guide\n<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.supportpro.com\/blog"},{"label":"Linux","link":"https:\/\/www.supportpro.com\/blog\/category\/linux\/"},{"label":"Linux Basics","link":"https:\/\/www.supportpro.com\/blog\/category\/linux\/linux-basics\/"},{"label":"How to Enable and Configure Network Bonding in Linux &#8211; A Step-by-Step Guide","link":"https:\/\/www.supportpro.com\/blog\/how-to-enable-and-configure-network-bonding-in-linux-a-step-by-step-guide\/"}],"_links":{"self":[{"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/posts\/14219","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/users\/34"}],"replies":[{"embeddable":true,"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/comments?post=14219"}],"version-history":[{"count":10,"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/posts\/14219\/revisions"}],"predecessor-version":[{"id":16276,"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/posts\/14219\/revisions\/16276"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/media\/14223"}],"wp:attachment":[{"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/media?parent=14219"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/categories?post=14219"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/tags?post=14219"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}