summaryrefslogtreecommitdiff
path: root/smoketest
diff options
context:
space:
mode:
authorfett0 <fernando.gmaidana@gmail.com>2024-05-04 17:07:26 +0000
committerMergify <37929162+mergify[bot]@users.noreply.github.com>2024-05-10 13:21:59 +0000
commit05099eab245c265474f10ffb206ab23c494c8b88 (patch)
treedace6d233fd4a9defc2fe39586f037b10074e74c /smoketest
parent4960a67e12c1d10a59812f0167f017131a9617b5 (diff)
downloadvyos-1x-05099eab245c265474f10ffb206ab23c494c8b88.tar.gz
vyos-1x-05099eab245c265474f10ffb206ab23c494c8b88.zip
bond: T6303: add system mac address on bond
(cherry picked from commit 234f35d8bae71b5d33ad97cdabc236ec6b13c3a2)
Diffstat (limited to 'smoketest')
-rwxr-xr-xsmoketest/scripts/cli/test_interfaces_bonding.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/smoketest/scripts/cli/test_interfaces_bonding.py b/smoketest/scripts/cli/test_interfaces_bonding.py
index 419de774a..091a7a3c5 100755
--- a/smoketest/scripts/cli/test_interfaces_bonding.py
+++ b/smoketest/scripts/cli/test_interfaces_bonding.py
@@ -241,6 +241,22 @@ class BondingInterfaceTest(BasicInterfaceTest.TestCase):
for member in self._members:
self.assertIn(member, slaves)
+ def test_bonding_system_mac(self):
+ # configure member interfaces and system-mac
+ system_mac = '00:50:ab:cd:ef:11'
+ for interface in self._interfaces:
+ for option in self._options.get(interface, []):
+ self.cli_set(self._base_path + [interface] + option.split())
+
+ self.cli_set(self._base_path + [interface, 'system-mac', system_mac])
+
+ self.cli_commit()
+
+ # verify config
+ for interface in self._interfaces:
+ defined_mac = read_file(f'/sys/class/net/{interface}/bonding/ad_actor_system')
+ self.assertIn(defined_mac, system_mac)
+
def test_bonding_evpn_multihoming(self):
id = '5'
for interface in self._interfaces: