Changing the address with a subsequent reboot makes this address permanent until the vm is turned off
Signed-off-by: Vlao Mao <vlao...@gmail.com> --- hw/net/vmxnet3.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hw/net/vmxnet3.c b/hw/net/vmxnet3.c index 04159c8222..695ca2f923 100644 --- a/hw/net/vmxnet3.c +++ b/hw/net/vmxnet3.c @@ -1206,6 +1206,8 @@ static void vmxnet3_reset(VMXNET3State *s) s->drv_shmem = 0; s->tx_sop = true; s->skip_current_tx_pkt = false; + + vmxnet3_reset_mac(s); } static void vmxnet3_update_rx_mode(VMXNET3State *s) -- 2.35.1