LXD containers lost IPV4 addr after some days

LXD works very well on several different bare metal servers, at different hosting companies, but from time to time, after about 20 days, one of the servers looses all ipV4 addresses of all it’s containers.
I don’t know why and I have no other solution than to reboot.

I tried to remove ipV6 for possible conflicts but it does not change anything :
lxc network set lxdbr0 ipv6.address none

All the servers have about the same defaut install config like this :

lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 20.04.3 LTS
Release: 20.04
Codename: focal

lxc version
Client version: 4.0.8
Server version: 4.0.8

lxc list
±----------------±--------±--------------------±-----±----------±----------+
| NAME | STATE | IPV4 | IPV6 | TYPE | SNAPSHOTS |
±----------------±--------±--------------------±-----±----------±----------+
±----------------±--------±--------------------±-----±----------±----------+
| ct-north | RUNNING | 10.41.94.118 (eth0) | | CONTAINER | 2 |
±----------------±--------±--------------------±-----±----------±----------+
| ct-oldine | RUNNING | 10.41.94.119 (eth0) | | CONTAINER | 2 |
±----------------±--------±--------------------±-----±----------±----------+

sudo cat /etc/netplan/01-netcfg.yaml
network:
version: 2
renderer: networkd
ethernets:
enp0s31f6:
addresses:
- 157.x.x.171/32 <= public ip v4 address
- y:y:y:y::2/64 <= public ip v6 address
routes:
- on-link: true
to: 0.0.0.0/0
via: 157.x.x.129
gateway6: fe80::1
nameservers:
addresses:
- 213.133.98.98
- 213.133.99.99
- 213.133.100.100
- 2a01:4f8:0:1::add:9898
- 2a01:4f8:0:1::add:9999
- 2a01:4f8:0:1::add:1010

snap list
lxd 4.0.8 21835 4.0/stable/… canonical✓ -

networkctl list
IDX LINK TYPE OPERATIONAL SETUP
1 lo loopback carrier unmanaged
2 enp0s31f6 ether routable configured
3 lxdbr0 bridge routable unmanaged
5 vethd76e39f3 ether carrier unmanaged

lxc network show lxdbr0
config:
ipv4.address: 10.41.94.1/24
ipv4.nat: “true”
ipv6.address: none
ipv6.nat: “true”
description: “”
name: lxdbr0
type: bridge
used_by:

  • /1.0/instances/ct-north
  • /1.0/instances/ct-oldine
  • /1.0/profiles/default
    managed: true
    status: Created
    locations:
  • none

sudo netstat -lnp | grep ":53 "
tcp 0 0 10.41.94.1:53 0.0.0.0:* LISTEN 2913/dnsmasq
tcp 0 0 127.0.0.53:53 0.0.0.0:* LISTEN 1057/systemd-resolv
udp 0 0 10.41.94.1:53 0.0.0.0:* 2913/dnsmasq
udp 0 0 127.0.0.53:53 0.0.0.0:* 1057/systemd-resolv

lxc profile show default
config: {}
description: Default LXD profile
devices:
eth0:
name: eth0
network: lxdbr0
type: nic
root:
path: /
pool: default
type: disk
name: default
used_by:

  • /1.0/instances/ct-north
  • /1.0/instances/ct-oldine

Is it possible to change something to have a stable configuration?
Thanks