Linux: Interface BONDING: Difference between revisions

From OnnoCenterWiki
Jump to navigationJump to search
Onnowpurbo (talk | contribs)
No edit summary
Onnowpurbo (talk | contribs)
No edit summary
 
(15 intermediate revisions by the same user not shown)
Line 1: Line 1:
Sumber: https://help.ubuntu.com/community/UbuntuBonding
Sumber: https://help.ubuntu.com/community/UbuntuBonding


'''WARNING'''
Jika di lakukan di Ubuntu 18.04 perlu di delete referensi ke interface jaringan (spt enp3s0) di
* /etc/netplan/
* /etc/cloud/cloud.cfg.d
==Install Pendukung==
apt install ifupdown ifenslave


==Aktifkan Module==
==Aktifkan Module==
Line 11: Line 21:
  # This file contains the names of kernel modules that should be loaded
  # This file contains the names of kernel modules that should be loaded
  # at boot time, one per line. Lines beginning with "#" are ignored.
  # at boot time, one per line. Lines beginning with "#" are ignored.
 
loop
  bonding mode=6 miimon=100
lp
rtc
  bonding


Aktifkan module
Aktifkan module


  modprobe --first-time bonding
  modprobe --first-time bonding
modprobe bonding
  modinfo bonding | more
  modinfo bonding | more
==Edit Interface==
sudo vi /etc/network/interfaces
# enp3s0 is manually configured, and slave to the "bond0" bonded NIC
auto enp3s0
iface enp3s0 inet manual
    bond-master bond0
#    bond-primary enp3s0
# enp4s0 ditto, thus creating a 2-link bond.
auto enp4s0
iface enp4s0 inet manual
    bond-master bond0
# bond0 is the bonding NIC and can be used like any other normal NIC.
# bond0 is configured using static network information.
auto bond0
iface bond0 inet static
    address 192.168.0.9
    gateway 192.168.0.223
    netmask 255.255.255.0
#    bond-mode active-backup
#    bond-miimon 100
#    bond-slaves none
    bond-slaves enp3s0 enp4s0


Edit
Edit


  vi /etc/modprobe.d/bonding.conf
  vi /etc/modprobe.d/bonding


  alias bond0 bonding
  alias bond0 bonding


==Aktifasi Bonding==


Edit
sudo start networking
 
atau
 
/etc/init.d/networking restart
 
Atau
 
ifup bond0
ifdown bond0
 
==Cek==
 
cat /proc/net/bonding/bond0
 
ifconfig
 
 
==Catatan==


vi /etc/sysconfig/network-scripts/ifcfg-bond0
===Mode 0===


  DEVICE=bond0
  balance-rr
NAME=bond0
TYPE=Bond
BONDING_MASTER=yes
IPADDR=192.168.43.100
PREFIX=24
ONBOOT=yes
BOOTPROTO=none
BONDING_OPTS="mode=1 miimon=100"


Note the directive BONDING_OPTS line, bonding uses a variety of options and mode. Modes can be:
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 0 or balance-rr: Sets a round-robin policy for fault tolerance and load balancing.
===Mode 1===
* mode 1 or active-backup: Sets an active-backup policy for fault tolerance.
* mode 2 or balance-xor: Sets an XOR (exclusive-or) mode for fault tolerance and load balancing.
* mode 3 or broadcast: Sets a broadcast policy for fault tolerance. All transmissions are sent on all slave interfaces.
* mode 4 or 802.3ad: Sets an IEEE 802.3ad dynamic link aggregation policy. Creates aggregation groups that share the same speed and duplex settings.
* mode 5 or balance-tlb: Sets a Transmit Load Balancing (TLB) policy for fault tolerance and load balancing. The outgoing traffic is distributed according to the current load on each slave interface. Incoming traffic is received by the current slave. If the receiving slave fails, another slave takes over the MAC address of the failed slave. This mode is only suitable for local addresses known to the kernel bonding module and therefore cannot be used behind a bridge with virtual machines.
* mode 6 or balance-alb: Sets an Adaptive Load Balancing (ALB) policy for fault tolerance and load balancing. Includes transmit and receive load balancing for IPv4 traffic.


active-backup


==Konfigurasi Interface untuk Bonding==
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.


Interface ens33
===Mode 2===


  vi /etc/sysconfig/network-scripts/ifcfg-ens33
  balance-xor


DEVICE=ens33
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.
NAME=bond0-slave
TYPE=Ethernet
BOOTPROTO=none
ONBOOT=yes
MASTER=bond0
SLAVE=yes


Interface ens34
===Mode 3===


  vi /etc/sysconfig/network-scripts/ifcfg-ens34
  broadcast


DEVICE=ens34
Broadcast policy: transmits everything on all slave interfaces. This mode provides fault tolerance.
NAME=bond0-slave
TYPE=Ethernet
BOOTPROTO=none
ONBOOT=yes
MASTER=bond0
SLAVE=yes


===Mode 4===


802.3ad


==Aktifasi Bonding==
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.


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


# ifdown ifcfg-ens33
===Mode 5===
# ifdown ifcfg-ens34


Interface Up
balance-tlb


# ifup ifcfg-ens33
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.
# ifup ifcfg-ens34


AKtifasi bonding
Prerequisites:
* Ethtool support in the base drivers for retrieving the speed of each slave.


# nmcli con reload
===Mode 6===


Cek
balance-alb


# ifconfig
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.


==Referensi==
==Referensi==

Latest revision as of 00:51, 13 December 2019

Sumber: https://help.ubuntu.com/community/UbuntuBonding

WARNING Jika di lakukan di Ubuntu 18.04 perlu di delete referensi ke interface jaringan (spt enp3s0) di

  • /etc/netplan/
  • /etc/cloud/cloud.cfg.d


Install Pendukung

apt install ifupdown ifenslave

Aktifkan Module

sudo su
vi /etc/modules
# /etc/modules: kernel modules to load at boot time.
#
# This file contains the names of kernel modules that should be loaded
# at boot time, one per line. Lines beginning with "#" are ignored.
 
bonding mode=6 miimon=100

Aktifkan module

modprobe --first-time bonding
modprobe bonding
modinfo bonding | more

Edit Interface

sudo vi /etc/network/interfaces
# enp3s0 is manually configured, and slave to the "bond0" bonded NIC
auto enp3s0
iface enp3s0 inet manual 
    bond-master bond0
#    bond-primary enp3s0

# enp4s0 ditto, thus creating a 2-link bond.
auto enp4s0
iface enp4s0 inet manual
    bond-master bond0

# bond0 is the bonding NIC and can be used like any other normal NIC.
# bond0 is configured using static network information.
auto bond0
iface bond0 inet static
    address 192.168.0.9
    gateway 192.168.0.223
    netmask 255.255.255.0
#    bond-mode active-backup
#    bond-miimon 100
#    bond-slaves none
    bond-slaves enp3s0 enp4s0


Edit

vi /etc/modprobe.d/bonding
alias bond0 bonding

Aktifasi Bonding

sudo start networking

atau

/etc/init.d/networking restart

Atau

ifup bond0
ifdown bond0

Cek

cat /proc/net/bonding/bond0
ifconfig


Catatan

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:

  • Ethtool support in the base drivers for retrieving the speed and duplex of each slave.
  • 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:

  • 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.

Referensi