Hello! I have Proxmox VE running on my laptop (8.2.4). I have a standard Linux bridge with the configuration of this
	
	
	
		
which works great, except for when I restart the node, anything connected to the bridge gets assigned to a new IP which is unfortunate since I keep having to change the ip of my Cloudflare tunnels since the IP changes. If I try to do a non-DHCP server such as this
	
	
	
		
then upon restarting networking or the machine itself, it breaks the wifi and says the network is unreachable, but as soon as I switch it back to dhcp, it works fine. I have tried many different types of configurations and IPs and nope, it didn't work. Do you have any ideas on how I can either get static vmbr0 to work or get DHCP to stop resetting the IP of my VMs and containers? Thanks!
				
			
		Code:
	
	auto vmbr0
iface vmbr0 inet dhcp
    bridge-ports enx0222796c7c62
    bridge-stp off
    bridge-fd 0
		Code:
	
	auto vmbr0
iface vmbr0 inet static
   address 10.200.0.1/24
   netmask 255.255.255.0
   bridge_ports enx0222796c7c62
   bridge_stp off
   bridge_fd 0 
	 
	