Example for ubuntu server 18.04

ifupdown

# NIC #1
auto enp2s0
iface enp2s0 inet manual
        bond-master bond0

# NIC #2
auto enp3s0
iface enp3s0 inet manual
        bond-master bond0

# Bonding 
auto bond0
iface bond0 inet manual
        bond-mode balance-rr
        bond-miimon 100
        bond-slaves none

        address 192.168.1.25
        netmask 255.255.255.0
        gateway 192.168.1.1

 

netplan

Following filename is named /etc/netplan/[your specified name].yaml
network:
  ethernets:
    enp2s0:
      accept-ra: no
      dhcp4: no
      dhcp6: no
      optional: true

    enp3s0:
      accept-ra: no
      dhcp4: no
      dhcp6: no
      optional: true

  bonds:
    bond0:
      accept-ra: no
      dhcp4: no
      dhcp6: no
      addresses:
        - 192.168.1.25/24
        - fd00:cafe::25/64
      interfaces:
        - enp2s0
        - enp3s0
      parameters:
        mode: balance-rr
        primary: enp3s0
     routes:
       - to: ::/0
         via: 2400:cafe:111:deed::fffe
       - to: 0.0.0.0/0
         via: 192.168.1.254
    version: 2
netplan can be set bonding mode.
And also Ubuntu Server installer is able to set up, it’s very easy !
:::/0 and 0.0.0.0/0 can be replaced “default”.

 

Descriptions of bonding modes

Mode 0 balance-rr

Round-robin policy: Transmit packets in sequential order from the first available slave through the last. This mode provides load balancing and fault tolerance.

Mode 1 active-backup

Active-backup policy: Only one slave in the bond is active. A different slave becomes active if, and only if, the active slave fails. The bond’s MAC address is externally visible on only one port (network adapter) to avoid confusing the switch. This mode provides fault tolerance. The primary option affects the behavior of this mode.

Mode 2 balance-xor

XOR policy: Transmit based on selectable hashing algorithm. The default policy is a simple source+destination MAC address algorithm. Alternate transmit policies may be selected via the xmit_hash_policy option, described below. This mode provides load balancing and fault tolerance.

Mode 3 broadcast

Broadcast policy: transmits everything on all slave interfaces. This mode provides fault tolerance.

Mode 4 802.3ad

IEEE 802.3ad Dynamic link aggregation. Creates aggregation groups that share the same speed and duplex settings. Utilizes all slaves in the active aggregator according to the 802.3ad specification.

  • Prerequisites:
    1. Ethtool support in the base drivers for retrieving the speed and duplex of each slave.
    2. A switch that supports IEEE 802.3ad Dynamic link aggregation. Most switches will require some type of configuration to enable 802.3ad mode.

 

Mode 5 balance-tlb

Adaptive transmit load balancing: channel bonding that does not require any special switch support. The outgoing traffic is distributed according to the current load (computed relative to the speed) on each slave. Incoming traffic is received by the current slave. If the receiving slave fails, another slave takes over the MAC address of the failed receiving slave.

  • Prerequisites:
    1. Ethtool support in the base drivers for retrieving the speed of each slave.

 

Mode 6 balance-alb

Adaptive load balancing: includes balance-tlb plus receive load balancing (rlb) for IPV4 traffic, and does not require any special switch support. The receive load balancing is achieved by ARP negotiation. The bonding driver intercepts the ARP Replies sent by the local system on their way out and overwrites the source hardware address with the unique hardware address of one of the slaves in the bond such that different peers use different hardware addresses for the server.