Bridge interface for KVM/QEMU
by nooobeee from LinuxQuestions.org on (#5PC0R)
Setting up a new office workstation and I would like to get transparent bridging working for my VMs to be able to be on the main network. Since this is a workstation, both the host and the VMs will be on DHCP.
Everything was working before I created br0. br0 was created by creating /etc/network/interfaces.d/br0 with the following info:
Code:## DHCP ip config file for br0 ##
auto br0
# Bridge setup
iface br0 inet dhcp
bridge_ports eno1Code:ip a s lists br0 with proper ip information.
Code:ip r shows the default route via my local gateway IP as it should
Code:less /var/lib/dhcp/dhclient.br0.leases shows that option domain-name-servers contains proper local DNS config
However it seems I've lost DNS after setting up br0. Host can ping IPs but not names. What might I be missing?
Everything was working before I created br0. br0 was created by creating /etc/network/interfaces.d/br0 with the following info:
Code:## DHCP ip config file for br0 ##
auto br0
# Bridge setup
iface br0 inet dhcp
bridge_ports eno1Code:ip a s lists br0 with proper ip information.
Code:ip r shows the default route via my local gateway IP as it should
Code:less /var/lib/dhcp/dhclient.br0.leases shows that option domain-name-servers contains proper local DNS config
However it seems I've lost DNS after setting up br0. Host can ping IPs but not names. What might I be missing?