Ubuntu 16.04 LXD with two network interfaces (backend and frontend)

Begin with installing the bridge # apt -y install bridge-utils Then edit the network interfaces on the lxd host vi /etc/network/interfaces # The loopback network interface auto lo iface lo inet loopback # The main internal Bridge (backend) auto br0 iface br0 inet static address 192.168.1.99 netmask 255.255.255.0 network 192.168.1.0 broadcast 192.168.1.255 gateway 192.168.1.1 dns-nameservers…
Läs mer