diff options
| author | Christian Poessinger <christian@poessinger.com> | 2020-09-13 16:08:12 +0200 | 
|---|---|---|
| committer | Christian Poessinger <christian@poessinger.com> | 2020-09-13 16:08:12 +0200 | 
| commit | 2862a9318f8ca8a6c0bd9a8fb6bfda84e8018912 (patch) | |
| tree | 9ebcedfc943bea1b0fd865ab67d819966f04da44 /docs | |
| parent | 1ecb077b5fa68e7c96f05bd7e0c9eb26bdb3e256 (diff) | |
| download | vyos-documentation-2862a9318f8ca8a6c0bd9a8fb6bfda84e8018912.tar.gz vyos-documentation-2862a9318f8ca8a6c0bd9a8fb6bfda84e8018912.zip | |
bonding: extend operational mode commands
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/interfaces/bond.rst | 87 | 
1 files changed, 79 insertions, 8 deletions
| diff --git a/docs/interfaces/bond.rst b/docs/interfaces/bond.rst index d697e5d4..396242ae 100644 --- a/docs/interfaces/bond.rst +++ b/docs/interfaces/bond.rst @@ -398,12 +398,83 @@ with two interfaces from VyOS to a Aruba/HP 2510G switch.  Operation  ######### -.. code-block:: none +.. opcmd:: show interfaces bonding + +   Show brief interface information. + +   .. code-block:: none + +     vyos@vyos:~$ show 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 + + +.. opcmd:: show interfaces bonding <interface> + +   Show detailed information on given `<interface>` + +   .. code-block:: none + +     vyos@vyos:~$ show interfaces bonding bond5 +     bond5: <NO-CARRIER,BROADCAST,MULTICAST,MASTER,UP> mtu 1500 qdisc noqueue state DOWN group default qlen 1000 +         link/ether 00:50:56:bf:ef:aa brd ff:ff:ff:ff:ff:ff +         inet6 fe80::e862:26ff:fe72:2dac/64 scope link tentative +            valid_lft forever preferred_lft forever + +         RX:  bytes  packets  errors  dropped  overrun       mcast +                  0        0       0        0        0           0 +         TX:  bytes  packets  errors  dropped  carrier  collisions +                  0        0       0        0        0           0 + +.. opcmd:: show interfaces bonding <interface> detail + +   Show detailed information about the underlaying physical links on given +   bond `<interface>`. + +   .. code-block:: none + +     vyos@vyos:~$ show interfaces bonding bond5 detail +     Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011) + +     Bonding Mode: IEEE 802.3ad Dynamic link aggregation +     Transmit Hash Policy: layer2 (0) +     MII Status: down +     MII Polling Interval (ms): 100 +     Up Delay (ms): 0 +     Down Delay (ms): 0 + +     802.3ad info +     LACP rate: slow +     Min links: 0 +     Aggregator selection policy (ad_select): stable + +     Slave Interface: eth1 +     MII Status: down +     Speed: Unknown +     Duplex: Unknown +     Link Failure Count: 0 +     Permanent HW addr: 00:50:56:bf:ef:aa +     Slave queue ID: 0 +     Aggregator ID: 1 +     Actor Churn State: churned +     Partner Churn State: churned +     Actor Churned Count: 1 +     Partner Churned Count: 1 + +     Slave Interface: eth2 +     MII Status: down +     Speed: Unknown +     Duplex: Unknown +     Link Failure Count: 0 +     Permanent HW addr: 00:50:56:bf:19:26 +     Slave queue ID: 0 +     Aggregator ID: 2 +     Actor Churn State: churned +     Partner Churn State: churned +     Actor Churned Count: 1 +     Partner Churned Count: 1 -  vyos@vyos:~$ show 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 | 
