To use the relatively new macvtap bridge network interfaces in KVM, the host network interface must be set to promiscuous mode.
Edit /etc/network/interfaces with nano or something and add the up and down lines.
For example...iface eth0 inet static
up ifconfig $IFACE promisc
#######
# YOUR INTERFACE CONFIG HERE
#######
down ifconfig $IFACE -promisc
Reboot and check if promiscuous mode is enabled: ifconfig and see if the PROMISC flag is set on the interface.
Related Articles
KVM - Enable Direct PCI Pass-T...
This example was done on Ubuntu server.* Enable VM direct I/O in the BIOS.* Open /etc/default/grub using an editor like nano or something.* Find GRUB_CMDLINE_LI...
Toshiba 37Z2000 TV - Sensitive...
My Toshiba 37Z2000 TV has a cool feature that allows me to record TV over my network to a CIFS (aka Samba) file share on my FreeNAS server. Unfortunately, howe...
Zimbra - Add Trusted Relay to ...
My domain name registrar offers email aliases and forwarding; however, this feature causes my mail server's SPF checks to fail because the registrar's mail rela...
Virtual PfSense on KVM - VirtI...
Virtualization of pfSense on KVM went smoothly for the most part. PCI pass-through to a network card worked swimmingly, and I adore the new built-in virtio dri...