[email protected]Office hours: Mon – Fri 9:00AM – 5:00PMLinkedInXFacebook
NexonHost
Netherlands Dedicated ServersAmsterdam · Equinix AM6Germany Dedicated ServersFrankfurt · Equinix FR4Romania Dedicated ServersBucharest · VoxilityAustria Dedicated ServersVienna · Interxion VIEBulgaria Dedicated ServersSofia · TelepointFrance Dedicated ServersParis · Interxion PAR — Marseille · Digital Realty MRS3Ireland Dedicated ServersDublin · Equinix DB2Italy Dedicated ServersMilan · Irideos AvalonPoland Dedicated ServersWarsawSpain Dedicated ServersMadrid · Equinix MD2United States Dedicated ServersAshburn · Equinix DC
All articles
Getting startedSeptember 6, 2023

How to remove the bond0 interface in Ubuntu 20.4.

How To Remove The Bond0 Interface In Ubuntu 20.4.

Network bonding (also called “NIC teaming”) is a method for combining multiple network interfaces to form a single, logical network interface for increased bandwidth, fault tolerance, or both. In Ubuntu, the bonding configuration is stored in the network configuration files. If you want to remove a bond (e.g., bond0), you need to modify the network configuration.

In this guide, we’ll show you how to remove the bond0 interface in Ubuntu. We’ll use the Netplan configuration for Ubuntu 20.4 and later.

 

Step 1: Locate the Netplan Configuration File

Netplan is the default network configuration tool in Ubuntu 18.04 and later versions. First, locate the Netplan configuration file, which is typically found in the /etc/netplan/ directory. The file should have a .yaml extension, for example:

/etc/netplan/01-netcfg.yaml

The name of the file might be different on your system.

 

Step 2: Edit the Netplan Configuration File

Open the Netplan configuration file using a text editor like nano:

sudo nano /etc/netplan/01-netcfg.yaml

Locate the bond0 interface configuration within the file. It should look similar to the following:

bonds:
  bond0:
    interfaces:
    - eth0
    - eth1
    parameters:
      mode: balance-rr

Remove the entire bond0 configuration block, including the bond0: line and all nested lines under it.

 

Step 3: Reconfigure the Network Interfaces

After removing the bond0 configuration, you may need to reconfigure the individual network interfaces that were part of the bond (e.g., eth0, eth1). You can configure them as separate interfaces or as part of a new bond.

For example, to configure eth0 with a static IP address, add the following configuration to the Netplan file:

network:
  version: 2
  renderer: networkd
  ethernets:
    eth0:
      dhcp4: no
      addresses:
        - XX.XX.XX.XX/27
      gateway4: XX.XX.XX.XX
      nameservers:
        addresses:
          - 8.8.8.8
          - 8.8.4.4

Adjust the IP addresses, gateway, and nameservers according to your network requirements.

 

Step 4: Apply the New Configuration

After editing the Netplan configuration file, save the changes and exit the text editor. Then, apply the new network configuration using the following command:

sudo netplan apply

This command will apply the changes and restart the networking service. The bond0 interface should now be removed, and the other network interfaces should be configured according to the new settings.

 

Conclusion

In this guide, we’ve shown you how to remove the bond0 network interface in Ubuntu using the Netplan configuration tool. Make sure to configure the individual network interfaces that were part of the bond, according to your network requirements.

Keep reading
How to Implement Network Segmentation and Resource Isolation in Linux.
February 6, 2024

How to Implement Network Segmentation and Resource Isolation in Linux.

How to Implement Network Segmentation and Resource Isolation in Linux. Securing and managing networks in a Linux environment involves advanced practices like network segmentation and resource isolation. This guide explores these concepts, providing detailed instructions and examples for…

Read article
How to open or close ports in Linux.
February 6, 2024

How to open or close ports in Linux.

How to open or close ports in Linux. Effectively managing ports on your Linux system is crucial for both security and service accessibility. This comprehensive guide will provide a detailed walkthrough on opening and closing ports using the robust tools iptables and ufw. Understanding these…

Read article
How to use ypdomainname command.
January 23, 2024

How to use ypdomainname command.

How to use ypdomainname command. In the realm of Linux networking, the ypdomainname command plays a crucial role in the context of the Network Information Service (NIS). NIS, formerly known as Yellow Pages, is a distributed database service that facilitates the sharing of network configuration and…

Read article
Get in Touch

Together, Let’s Build a Faster, Safer Internet.

Build scalable infrastructure with NexonHost — high-performance dedicated servers, VPS hosting, colocation, and DDoS protection across Europe.

Get Started →Contact Us
[email protected]Office hours: Mon – Fri 9:00AM – 5:00PM