Atualmente, você tem sua ponte e missões em uma sub-rede diferente da sua sub-rede principal. Então, não suas missões não têm acesso à internet, porque não há caminho para o seu gateway. Coloque tudo na mesma sub-rede. Exemplos do meu computador host principal:
host principal ifconfig. Observe como o enp3s0 nem mostra um endereço IP. Isso é porque ele é ligado a br0 e ambos têm o mesmo endereço IP. Ignore lxcbr0 e virbr0, eles não fazem parte desta discussão, nem os utilizo (mostrados apenas para completude).
doug@s15:~$ ifconfig
br0 Link encap:Ethernet HWaddr f4:6d:04:65:2d:8e
inet addr:192.168.111.112 Bcast:192.168.111.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:4574 errors:0 dropped:0 overruns:0 frame:0
TX packets:2604 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:509690 (509.6 KB) TX bytes:425082 (425.0 KB)
enp3s0 Link encap:Ethernet HWaddr f4:6d:04:65:2d:8e
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:4574 errors:0 dropped:0 overruns:0 frame:0
TX packets:2604 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:573726 (573.7 KB) TX bytes:426090 (426.0 KB)
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
UP LOOPBACK RUNNING MTU:65536 Metric:1
RX packets:174 errors:0 dropped:0 overruns:0 frame:0
TX packets:174 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:12644 (12.6 KB) TX bytes:12644 (12.6 KB)
lxcbr0 Link encap:Ethernet HWaddr 00:16:3e:00:00:00
inet addr:10.0.3.1 Bcast:0.0.0.0 Mask:255.255.255.0
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
virbr0 Link encap:Ethernet HWaddr 52:54:00:21:9e:43
inet addr:192.168.122.1 Bcast:192.168.122.255 Mask:255.255.255.0
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
Aqui está o meu arquivo de interfaces de hosts principais, onde br0 é vinculado a enp3s0:
doug@s15:~$ cat /etc/network/interfaces
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface and bridge
auto br0
iface br0 inet dhcp
#iface br0 inet static
# address 192.168.111.112
# network 192.168.111.0
# netmask 255.255.255.0
# gateway 192.168.111.1
# broadcast 192.168.111.255
# dns-search smythies.com
# dns-nameservers 192.168.111.1
bridge_ports enp3s0
bridge_fd 9
bridge_hello 2
bridge_maxage 12
bridge_stp off
E aqui está a seção de rede de um convidado típico. Eu atribuo o MAC porque eu atribuo endereços IP do meu servidor DHCP com base no MAC, e então meu material DNS funciona da maneira que eu quero.
<interface type='bridge'>
<mac address='52:54:00:14:ff:9c'/>
<source bridge='br0'/>
<model type='virtio'/>
<address type='pci' domain='0x0000' bus='0x00' slot='0x03' function='0x0'/>
</interface>
E aqui está o roteamento. Tudo na minha LAN está na sub-rede 192.168.111.XXX e, portanto, há caminho para / do gateway via br0:
doug@s15:~$ netstat -rn
Kernel IP routing table
Destination Gateway Genmask Flags MSS Window irtt Iface
0.0.0.0 192.168.111.1 0.0.0.0 UG 0 0 0 br0
10.0.3.0 0.0.0.0 255.255.255.0 U 0 0 0 lxcbr0
192.168.111.0 0.0.0.0 255.255.255.0 U 0 0 0 br0
192.168.122.0 0.0.0.0 255.255.255.0 U 0 0 0 virbr0