diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-10-09 08:38:06 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-10-09 08:39:30 +0200 |
commit | 1786246655c36e932be649a29d70cca6c9a29773 (patch) | |
tree | 1d4f7117e1d934a48e718545e921b686ce163191 | |
parent | fac3b8fe86700c581fc8b73574a3b9c79a530bb3 (diff) | |
download | vyos-1x-1786246655c36e932be649a29d70cca6c9a29773.tar.gz vyos-1x-1786246655c36e932be649a29d70cca6c9a29773.zip |
tunnel: T3894: fix design when building synthetic MAC addresses
It seems not all systems have eth0 - get a list of all available Ethernet
interfaces on the system (without VLAN subinterfaces) and then take the
first one.
(cherry picked from commit f19c92f255011149eeb7626a2e158456abe4c9b8)
-rw-r--r-- | python/vyos/ifconfig/interface.py | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/python/vyos/ifconfig/interface.py b/python/vyos/ifconfig/interface.py index 7f712d98f..036ca1413 100644 --- a/python/vyos/ifconfig/interface.py +++ b/python/vyos/ifconfig/interface.py @@ -441,15 +441,19 @@ class Interface(Control): # Get processor ID number cpu_id = self._cmd('sudo dmidecode -t 4 | grep ID | head -n1 | sed "s/.*ID://;s/ //g"') - # Get system eth0 base MAC address - every system has eth0 - eth0_mac = Interface('eth0').get_mac() + + # XXX: T3894 - it seems not all systems have eth0 - get a list of all + # available Ethernet interfaces on the system (without VLAN subinterfaces) + # and then take the first one. + all_eth_ifs = [x for x in Section.interfaces('ethernet') if '.' not in x] + first_mac = Interface(all_eth_ifs[0]).get_mac() sha = sha256() # Calculate SHA256 sum based on the CPU ID number, eth0 mac address and # this interface identifier - this is as predictable as an interface # MAC address and thus can be used in the same way sha.update(cpu_id.encode()) - sha.update(eth0_mac.encode()) + sha.update(first_mac.encode()) sha.update(self.ifname.encode()) # take the most significant 48 bits from the SHA256 string tmp = sha.hexdigest()[:12] |