diff options
author | Christian Poessinger <christian@poessinger.com> | 2019-11-23 10:42:03 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2019-11-23 10:49:48 +0100 |
commit | a0a07c6ab314311909ee3c808d13a712cfba2fb2 (patch) | |
tree | ef1362161463e9bd7fd00358be53a60aa78649aa /docs/interfaces/bonding.rst | |
parent | cfd378949fd3ff0c755e59d9d8564e872a89adb9 (diff) | |
download | vyos-documentation-a0a07c6ab314311909ee3c808d13a712cfba2fb2.tar.gz vyos-documentation-a0a07c6ab314311909ee3c808d13a712cfba2fb2.zip |
interfaces: update base interface definitions and links
Diffstat (limited to 'docs/interfaces/bonding.rst')
-rw-r--r-- | docs/interfaces/bonding.rst | 73 |
1 files changed, 0 insertions, 73 deletions
diff --git a/docs/interfaces/bonding.rst b/docs/interfaces/bonding.rst deleted file mode 100644 index 72deb03b..00000000 --- a/docs/interfaces/bonding.rst +++ /dev/null @@ -1,73 +0,0 @@ -Bonding -------- - -You can combine (aggregate) 2 or more physical interfaces into a single -logical one. It's called bonding, or LAG, or ether-channel, or port-channel. - -Create interface bondX, where X is just a number: - -.. code-block:: sh - - set interfaces bonding bond0 description 'my-sw1 int 23 and 24' - -You are able to choose a hash policy: - -.. code-block:: sh - - vyos@vyos# set interfaces bonding bond0 hash-policy - Possible completions: - layer2 use MAC addresses to generate the hash (802.3ad) - layer2+3 combine MAC address and IP address to make hash - layer3+4 combine IP address and port to make hash - -For example: - -.. code-block:: sh - - set interfaces bonding bond0 hash-policy 'layer2' - -You may want to set IEEE 802.3ad Dynamic link aggregation (802.3ad) AKA LACP -(don't forget to setup it on the other end of these links): - -.. code-block:: sh - - set interfaces bonding bond0 mode '802.3ad' - -or some other modes: - -.. code-block:: sh - - vyos@vyos# set interfaces bonding bond0 mode - Possible completions: - 802.3ad IEEE 802.3ad Dynamic link aggregation (Default) - active-backup - Fault tolerant: only one slave in the bond is active - broadcast Fault tolerant: transmits everything on all slave interfaces - round-robin Load balance: transmit packets in sequential order - transmit-load-balance - Load balance: adapts based on transmit load and speed - adaptive-load-balance - Load balance: adapts based on transmit and receive plus ARP - xor-hash Load balance: distribute based on MAC address - -Now bond some physical interfaces into bond0: - -.. code-block:: sh - - set interfaces bonding bond0 member interface eth0 - set interfaces bonding bond0 member interface eth1 - -After a commit you may treat bond0 as almost a physical interface (you can't -change its` duplex, for example) and assign IPs or VIFs on it. - -You may check the result: - -.. code-block:: sh - - vyos@vyos# run sh interfaces bonding - Codes: S - State, L - Link, u - Up, D - Down, A - Admin Down - Interface IP Address S/L Description - --------- ---------- --- ----------- - bond0 - u/u my-sw1 int 23 and 24 - bond0.10 192.168.0.1/24 u/u office-net - bond0.100 10.10.10.1/24 u/u management-net |