diff --git a/op-mode-definitions/show-interfaces-bonding.xml.in b/op-mode-definitions/show-interfaces-bonding.xml.in
index f6d9b3508..08ce78296 100644
--- a/op-mode-definitions/show-interfaces-bonding.xml.in
+++ b/op-mode-definitions/show-interfaces-bonding.xml.in
@@ -1,71 +1,83 @@
 <?xml version="1.0"?>
 <interfaceDefinition>
   <node name="show">
     <children>
       <node name="interfaces">
         <children>
           <tagNode name="bonding">
             <properties>
               <help>Show bonding interface information</help>
               <completionHelp>
                 <path>interfaces bonding</path>
               </completionHelp>
             </properties>
             <command>${vyos_op_scripts_dir}/show_interfaces.py --intf="$4"</command>
             <children>
               <leafNode name="brief">
                 <properties>
                   <help>Show summary of the specified bonding interface information</help>
                 </properties>
                 <command>${vyos_op_scripts_dir}/show_interfaces.py --intf="$4" --action=show-brief</command>
               </leafNode>
               <leafNode name="detail">
                 <properties>
                   <help>Show detailed interface information</help>
                 </properties>
                 <command>if [ -f "/proc/net/bonding/$4" ]; then cat "/proc/net/bonding/$4"; else echo "Interface $4 does not exist!"; fi</command>
               </leafNode>
+              <leafNode name="slaves">
+                <properties>
+                  <help>Show specified bonding interface information</help>
+                </properties>
+                <command>${vyos_op_scripts_dir}/show-bond.py --interface "$4"</command>
+              </leafNode>
               <tagNode name="vif">
                 <properties>
                   <help>Show specified virtual network interface (vif) information</help>
                   <completionHelp>
                     <path>interfaces bonding ${COMP_WORDS[3]} vif</path>
                   </completionHelp>
                 </properties>
                 <command>${vyos_op_scripts_dir}/show_interfaces.py --intf="$4.$6"</command>
                 <children>
                   <leafNode name="brief">
                     <properties>
                       <help>Show summary of specified virtual network interface (vif) information</help>
                     </properties>
                     <command>${vyos_op_scripts_dir}/show_interfaces.py --intf="$4.$6" --action=show-brief</command>
                   </leafNode>
                 </children>
               </tagNode>
               <leafNode name="xdp">
                 <properties>
                   <help>Show eXpress Data Path statistics</help>
                 </properties>
                 <command>sudo ${vyos_op_scripts_dir}/show_xdp_stats.sh bonding "$4"</command>
               </leafNode>
             </children>
           </tagNode>
           <node name="bonding">
             <properties>
               <help>Show bonding interface information</help>
             </properties>
             <command>${vyos_op_scripts_dir}/show_interfaces.py --intf-type=bonding --action=show-brief</command>
             <children>
               <leafNode name="detail">
                 <properties>
                   <help>Show detailed bonding interface information</help>
                 </properties>
                 <command>${vyos_op_scripts_dir}/show_interfaces.py --intf-type=bonding --action=show</command>
               </leafNode>
+              <leafNode name="slaves">
+                <properties>
+                  <help>Show specified bonding interface information</help>
+                </properties>
+                <command>${vyos_op_scripts_dir}/show-bond.py --slaves</command>
+              </leafNode>
             </children>
           </node>
         </children>
       </node>
     </children>
   </node>
 </interfaceDefinition>
diff --git a/python/vyos/ifconfig/bond.py b/python/vyos/ifconfig/bond.py
index 233d53688..2b9afe109 100644
--- a/python/vyos/ifconfig/bond.py
+++ b/python/vyos/ifconfig/bond.py
@@ -1,431 +1,447 @@
 # Copyright 2019-2021 VyOS maintainers and contributors <maintainers@vyos.io>
 #
 # This library is free software; you can redistribute it and/or
 # modify it under the terms of the GNU Lesser General Public
 # License as published by the Free Software Foundation; either
 # version 2.1 of the License, or (at your option) any later version.
 #
 # This library is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 # Lesser General Public License for more details.
 #
 # You should have received a copy of the GNU Lesser General Public
 # License along with this library.  If not, see <http://www.gnu.org/licenses/>.
 
 import os
 
 from vyos.ifconfig.interface import Interface
 from vyos.util import cmd
 from vyos.util import dict_search
 from vyos.validate import assert_list
 from vyos.validate import assert_positive
 
 @Interface.register
 class BondIf(Interface):
     """
     The Linux bonding driver provides a method for aggregating multiple network
     interfaces into a single logical "bonded" interface. The behavior of the
     bonded interfaces depends upon the mode; generally speaking, modes provide
     either hot standby or load balancing services. Additionally, link integrity
     monitoring may be performed.
     """
 
     iftype = 'bond'
     definition = {
         **Interface.definition,
         ** {
             'section': 'bonding',
             'prefixes': ['bond', ],
             'broadcast': True,
             'bridgeable': True,
         },
     }
 
     _sysfs_set = {**Interface._sysfs_set, **{
         'bond_hash_policy': {
             'validate': lambda v: assert_list(v, ['layer2', 'layer2+3', 'layer3+4', 'encap2+3', 'encap3+4']),
             'location': '/sys/class/net/{ifname}/bonding/xmit_hash_policy',
         },
         'bond_min_links': {
             'validate': assert_positive,
             'location': '/sys/class/net/{ifname}/bonding/min_links',
         },
         'bond_lacp_rate': {
             'validate': lambda v: assert_list(v, ['slow', 'fast']),
             'location': '/sys/class/net/{ifname}/bonding/lacp_rate',
         },
         'bond_miimon': {
             'validate': assert_positive,
             'location': '/sys/class/net/{ifname}/bonding/miimon'
         },
         'bond_arp_interval': {
             'validate': assert_positive,
             'location': '/sys/class/net/{ifname}/bonding/arp_interval'
         },
         'bond_arp_ip_target': {
             # XXX: no validation of the IP
             'location': '/sys/class/net/{ifname}/bonding/arp_ip_target',
         },
         'bond_add_port': {
             'location': '/sys/class/net/{ifname}/bonding/slaves',
         },
         'bond_del_port': {
             'location': '/sys/class/net/{ifname}/bonding/slaves',
         },
         'bond_primary': {
             'convert': lambda name: name if name else '\0',
             'location': '/sys/class/net/{ifname}/bonding/primary',
         },
         'bond_mode': {
             'validate': lambda v: assert_list(v, ['balance-rr', 'active-backup', 'balance-xor', 'broadcast', '802.3ad', 'balance-tlb', 'balance-alb']),
             'location': '/sys/class/net/{ifname}/bonding/mode',
         },
     }}
 
     _sysfs_get = {**Interface._sysfs_get, **{
         'bond_arp_ip_target': {
             'location': '/sys/class/net/{ifname}/bonding/arp_ip_target',
+        },
+        'bond_mode': {
+            'location': '/sys/class/net/{ifname}/bonding/mode',
         }
     }}
 
     def remove(self):
         """
         Remove interface from operating system. Removing the interface
         deconfigures all assigned IP addresses and clear possible DHCP(v6)
         client processes.
         Example:
         >>> from vyos.ifconfig import Interface
         >>> i = Interface('eth0')
         >>> i.remove()
         """
         # when a bond member gets deleted, all members are placed in A/D state
         # even when they are enabled inside CLI. This will make the config
         # and system look async.
         slave_list = []
         for s in self.get_slaves():
             slave = {
                 'ifname': s,
                 'state': Interface(s).get_admin_state()
             }
             slave_list.append(slave)
 
         # remove bond master which places members in disabled state
         super().remove()
 
         # replicate previous interface state before bond destruction back to
         # physical interface
         for slave in slave_list:
              i = Interface(slave['ifname'])
              i.set_admin_state(slave['state'])
 
     def set_hash_policy(self, mode):
         """
         Selects the transmit hash policy to use for slave selection in
         balance-xor, 802.3ad, and tlb modes. Possible values are: layer2,
         layer2+3, layer3+4, encap2+3, encap3+4.
 
         The default value is layer2
 
         Example:
         >>> from vyos.ifconfig import BondIf
         >>> BondIf('bond0').set_hash_policy('layer2+3')
         """
         self.set_interface('bond_hash_policy', mode)
 
     def set_min_links(self, number):
         """
         Specifies the minimum number of links that must be active before
 	    asserting carrier. It is similar to the Cisco EtherChannel min-links
 	    feature. This allows setting the minimum number of member ports that
 	    must be up (link-up state) before marking the bond device as up
 	    (carrier on). This is useful for situations where higher level services
 	    such as clustering want to ensure a minimum number of low bandwidth
 	    links are active before switchover. This option only affect 802.3ad
 	    mode.
 
 	    The default value is 0. This will cause carrier to be asserted (for
 	    802.3ad mode) whenever there is an active aggregator, regardless of the
 	    number of available links in that aggregator. Note that, because an
 	    aggregator cannot be active without at least one available link,
 	    setting this option to 0 or to 1 has the exact same effect.
 
         Example:
         >>> from vyos.ifconfig import BondIf
         >>> BondIf('bond0').set_min_links('0')
         """
         self.set_interface('bond_min_links', number)
 
     def set_lacp_rate(self, slow_fast):
         """
         Option specifying the rate in which we'll ask our link partner
 	    to transmit LACPDU packets in 802.3ad mode.  Possible values
 	    are:
 
 	    slow or 0
 		    Request partner to transmit LACPDUs every 30 seconds
 
 	    fast or 1
 		    Request partner to transmit LACPDUs every 1 second
 
 	    The default is slow.
 
         Example:
         >>> from vyos.ifconfig import BondIf
         >>> BondIf('bond0').set_lacp_rate('slow')
         """
         self.set_interface('bond_lacp_rate', slow_fast)
 
     def set_arp_interval(self, interval):
         """
         Specifies the ARP link monitoring frequency in milliseconds.
 
         The ARP monitor works by periodically checking the slave devices
         to determine whether they have sent or received traffic recently
         (the precise criteria depends upon the bonding mode, and the
         state of the slave). Regular traffic is generated via ARP probes
         issued for the addresses specified by the arp_ip_target option.
 
         If ARP monitoring is used in an etherchannel compatible mode
         (modes 0 and 2), the switch should be configured in a mode that
         evenly distributes packets across all links. If the switch is
         configured to distribute the packets in an XOR fashion, all
         replies from the ARP targets will be received on the same link
         which could cause the other team members to fail.
 
         value of 0 disables ARP monitoring. The default value is 0.
 
         Example:
         >>> from vyos.ifconfig import BondIf
         >>> BondIf('bond0').set_arp_interval('100')
         """
         if int(interval) == 0:
             """
             Specifies the MII link monitoring frequency in milliseconds.
             This determines how often the link state of each slave is
             inspected for link failures. A value of zero disables MII
             link monitoring. A value of 100 is a good starting point.
             """
             return self.set_interface('bond_miimon', interval)
         else:
             return self.set_interface('bond_arp_interval', interval)
 
     def get_arp_ip_target(self):
         """
         Specifies the IP addresses to use as ARP monitoring peers when
         arp_interval is > 0. These are the targets of the ARP request sent to
         determine the health of the link to the targets. Specify these values
         in ddd.ddd.ddd.ddd format. Multiple IP addresses must be separated by
         a comma. At least one IP address must be given for ARP monitoring to
         function. The maximum number of targets that can be specified is 16.
 
         The default value is no IP addresses.
 
         Example:
         >>> from vyos.ifconfig import BondIf
         >>> BondIf('bond0').get_arp_ip_target()
         '192.0.2.1'
         """
         # As this function might also be called from update() of a VLAN interface
         # we must check if the bond_arp_ip_target retrieval worked or not - as this
         # can not be set for a bond vif interface
         try:
             return self.get_interface('bond_arp_ip_target')
         except FileNotFoundError:
             return ''
 
     def set_arp_ip_target(self, target):
         """
         Specifies the IP addresses to use as ARP monitoring peers when
         arp_interval is > 0. These are the targets of the ARP request sent to
         determine the health of the link to the targets. Specify these values
         in ddd.ddd.ddd.ddd format. Multiple IP addresses must be separated by
         a comma. At least one IP address must be given for ARP monitoring to
         function. The maximum number of targets that can be specified is 16.
 
         The default value is no IP addresses.
 
         Example:
         >>> from vyos.ifconfig import BondIf
         >>> BondIf('bond0').set_arp_ip_target('192.0.2.1')
         >>> BondIf('bond0').get_arp_ip_target()
         '192.0.2.1'
         """
         return self.set_interface('bond_arp_ip_target', target)
 
     def add_port(self, interface):
         """
         Enslave physical interface to bond.
 
         Example:
         >>> from vyos.ifconfig import BondIf
         >>> BondIf('bond0').add_port('eth0')
         >>> BondIf('bond0').add_port('eth1')
         """
 
         # From drivers/net/bonding/bond_main.c:
         # ...
         # bond_set_slave_link_state(new_slave,
         #      BOND_LINK_UP,
         #      BOND_SLAVE_NOTIFY_NOW);
         # ...
         #
         # The kernel will ALWAYS place new bond members in "up" state regardless
         # what the CLI will tell us!
 
         # Physical interface must be in admin down state before they can be
         # enslaved. If this is not the case an error will be shown:
         # bond0: eth0 is up - this may be due to an out of date ifenslave
         slave = Interface(interface)
         slave_state = slave.get_admin_state()
         if slave_state == 'up':
             slave.set_admin_state('down')
 
         ret = self.set_interface('bond_add_port', f'+{interface}')
         # The kernel will ALWAYS place new bond members in "up" state regardless
         # what the LI is configured for - thus we place the interface in its
         # desired state
         slave.set_admin_state(slave_state)
         return ret
 
     def del_port(self, interface):
         """
         Remove physical port from bond
 
         Example:
         >>> from vyos.ifconfig import BondIf
         >>> BondIf('bond0').del_port('eth1')
         """
         return self.set_interface('bond_del_port', f'-{interface}')
 
     def get_slaves(self):
         """
         Return a list with all configured slave interfaces on this bond.
 
         Example:
         >>> from vyos.ifconfig import BondIf
         >>> BondIf('bond0').get_slaves()
         ['eth1', 'eth2']
         """
         enslaved_ifs = []
         # retrieve real enslaved interfaces from OS kernel
         sysfs_bond = '/sys/class/net/{}'.format(self.config['ifname'])
         if os.path.isdir(sysfs_bond):
             for directory in os.listdir(sysfs_bond):
                 if 'lower_' in directory:
                     enslaved_ifs.append(directory.replace('lower_', ''))
 
         return enslaved_ifs
 
+    def get_mode(self):
+        """
+        Return bond operation mode.
+
+        Example:
+        >>> from vyos.ifconfig import BondIf
+        >>> BondIf('bond0').get_mode()
+        '802.3ad'
+        """
+        mode = self.get_interface('bond_mode')
+        # mode is now "802.3ad 4", we are only interested in "802.3ad"
+        return mode.split()[0]
+
     def set_primary(self, interface):
         """
         A string (eth0, eth2, etc) specifying which slave is the primary
         device. The specified device will always be the active slave while it
         is available. Only when the primary is off-line will alternate devices
         be used. This is useful when one slave is preferred over another, e.g.,
         when one slave has higher throughput than another.
 
         The primary option is only valid for active-backup, balance-tlb and
         balance-alb mode.
 
         Example:
         >>> from vyos.ifconfig import BondIf
         >>> BondIf('bond0').set_primary('eth2')
         """
         return self.set_interface('bond_primary', interface)
 
     def set_mode(self, mode):
         """
         Specifies one of the bonding policies. The default is balance-rr
         (round robin).
 
         Possible values are: balance-rr, active-backup, balance-xor,
         broadcast, 802.3ad, balance-tlb, balance-alb
 
         NOTE: the bonding mode can not be changed when the bond itself has
         slaves
 
         Example:
         >>> from vyos.ifconfig import BondIf
         >>> BondIf('bond0').set_mode('802.3ad')
         """
         return self.set_interface('bond_mode', mode)
 
     def update(self, config):
         """ General helper function which works on a dictionary retrived by
         get_config_dict(). It's main intention is to consolidate the scattered
         interface setup code and provide a single point of entry when workin
         on any interface. """
 
         # use ref-counting function to place an interface into admin down state.
         # set_admin_state_up() must be called the same amount of times else the
         # interface won't come up. This can/should be used to prevent link flapping
         # when changing interface parameters require the interface to be down.
         # We will disable it once before reconfiguration and enable it afterwards.
         if 'shutdown_required' in config:
             self.set_admin_state('down')
 
         # ARP monitor targets need to be synchronized between sysfs and CLI.
         # Unfortunately an address can't be send twice to sysfs as this will
         # result in the following exception:  OSError: [Errno 22] Invalid argument.
         #
         # We remove ALL addresses prior to adding new ones, this will remove
         # addresses manually added by the user too - but as we are limited to 16 adresses
         # from the kernel side this looks valid to me. We won't run into an error
         # when a user added manual adresses which would result in having more
         # then 16 adresses in total.
         arp_tgt_addr = list(map(str, self.get_arp_ip_target().split()))
         for addr in arp_tgt_addr:
             self.set_arp_ip_target('-' + addr)
 
         # Add configured ARP target addresses
         value = dict_search('arp_monitor.target', config)
         if isinstance(value, str):
             value = [value]
         if value:
             for addr in value:
                 self.set_arp_ip_target('+' + addr)
 
         # Bonding transmit hash policy
         value = config.get('hash_policy')
         if value: self.set_hash_policy(value)
 
         # Minimum number of member interfaces
         value = config.get('min_links')
         if value: self.set_min_links(value)
 
         # Some interface options can only be changed if the interface is
         # administratively down
         if self.get_admin_state() == 'down':
             # Remove ALL bond member interfaces
             for interface in self.get_slaves():
                 self.del_port(interface)
                 # Removing an interface from a bond will always place the underlaying
                 # physical interface in admin-down state! If physical interface is
                 # not disabled, re-enable it.
                 if not dict_search(f'member.interface_remove.{interface}.disable', config):
                     Interface(interface).set_admin_state('up')
 
             # Bonding policy/mode - default value, always present
             mode = config.get('mode')
             self.set_mode(mode)
 
             # LACPDU transmission rate - default value
             if mode == '802.3ad':
                 self.set_lacp_rate(config.get('lacp_rate'))
 
             # Add (enslave) interfaces to bond
             value = dict_search('member.interface', config)
             for interface in (value or []):
                 # if we've come here we already verified the interface
                 # does not have an addresses configured so just flush
                 # any remaining ones
                 Interface(interface).flush_addrs()
                 self.add_port(interface)
 
         # Primary device interface - must be set after 'mode'
         value = config.get('primary')
         if value: self.set_primary(value)
 
         # call base class first
         super().update(config)
diff --git a/src/op_mode/show-bond.py b/src/op_mode/show-bond.py
new file mode 100755
index 000000000..edf7847fc
--- /dev/null
+++ b/src/op_mode/show-bond.py
@@ -0,0 +1,92 @@
+#!/usr/bin/env python3
+#
+# Copyright (C) 2021 VyOS maintainers and contributors
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License version 2 or later as
+# published by the Free Software Foundation.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+import jinja2
+
+from argparse import ArgumentParser
+from vyos.ifconfig import Section
+from vyos.ifconfig import BondIf
+from vyos.util import read_file
+
+from sys import exit
+
+parser = ArgumentParser()
+parser.add_argument("--slaves", action="store_true", help="Show LLDP neighbors on all interfaces")
+parser.add_argument("--interface", action="store", help="Show LLDP neighbors on specific interface")
+
+args = parser.parse_args()
+
+all_bonds = Section.interfaces('bonding')
+# we are not interested in any bond vlan interface
+all_bonds = [x for x in all_bonds if '.' not in x]
+
+TMPL_BRIEF = """Interface    Mode                   State    Link   Slaves
+{% for interface in data %}
+{{ "%-12s" | format(interface.ifname) }} {{ "%-22s" | format(interface.mode) }} {{ "%-8s" | format(interface.admin_state) }} {{ "%-6s" | format(interface.oper_state) }} {{ interface.members | join(' ') }}
+{% endfor %}
+"""
+
+TMPL_INDIVIDUAL_BOND = """Interface        RX: bytes  packets     TX: bytes  packets
+{{ "%-16s" | format(data.ifname) }} {{ "%-10s" | format(data.rx_bytes) }} {{ "%-11s" | format(data.rx_packets) }} {{ "%-10s" | format(data.tx_bytes) }} {{ data.tx_packets }}
+{% for member in data.members if data.members is defined %}
+    {{ "%-12s" | format(member.ifname) }} {{ "%-10s" | format(member.rx_bytes) }} {{ "%-11s" | format(member.rx_packets) }} {{ "%-10s" | format(member.tx_bytes) }} {{ member.tx_packets }}
+{% endfor %}
+"""
+
+if args.slaves and args.interface:
+    exit('Can not use both --slaves and --interfaces option at the same time')
+    parser.print_help()
+
+elif args.slaves:
+    data = []
+    template = TMPL_BRIEF
+    for bond in all_bonds:
+        tmp = BondIf(bond)
+        cfg_dict = {}
+        cfg_dict['ifname'] = bond
+        cfg_dict['mode'] = tmp.get_mode()
+        cfg_dict['admin_state'] = tmp.get_admin_state()
+        cfg_dict['oper_state'] = tmp.operational.get_state()
+        cfg_dict['members'] = tmp.get_slaves()
+        data.append(cfg_dict)
+
+elif args.interface:
+    template = TMPL_INDIVIDUAL_BOND
+    data = {}
+    data['ifname'] = args.interface
+    data['rx_bytes'] = read_file(f'/sys/class/net/{args.interface}/statistics/rx_bytes')
+    data['rx_packets'] = read_file(f'/sys/class/net/{args.interface}/statistics/rx_packets')
+    data['tx_bytes'] = read_file(f'/sys/class/net/{args.interface}/statistics/tx_bytes')
+    data['tx_packets'] = read_file(f'/sys/class/net/{args.interface}/statistics/tx_packets')
+
+    # each bond member interface has its own statistics
+    data['members'] = []
+    for member in BondIf(args.interface).get_slaves():
+        tmp = {}
+        tmp['ifname'] = member
+        tmp['rx_bytes'] = read_file(f'/sys/class/net/{member}/statistics/rx_bytes')
+        tmp['rx_packets'] = read_file(f'/sys/class/net/{member}/statistics/rx_packets')
+        tmp['tx_bytes'] = read_file(f'/sys/class/net/{member}/statistics/tx_bytes')
+        tmp['tx_packets'] = read_file(f'/sys/class/net/{member}/statistics/tx_packets')
+        data['members'].append(tmp)
+
+else:
+    parser.print_help()
+    exit(1)
+
+tmpl = jinja2.Template(template, trim_blocks=True)
+config_text = tmpl.render(data=data)
+print(config_text)