To reproduce, add gre tunnel
set interfaces tunnel tun0 encapsulation 'gre' set interfaces tunnel tun0 remote '192.0.2.5' set interfaces tunnel tun0 source-address '192.0.2.1'
Check MAC on tun0
>>> from vyos.ifconfig import Interface
>>>
>>> Interface('eth0').get_mac()
'52:54:00:f1:fd:77'
>>>
>>> Interface('tun0').get_mac()
'192.0.2.1'
>>>Expected some n/a value