ipvtap is similar to macvtap, but works over wifi too, since it uses the same mac address as the wifi interface.
libvirt doesn't support ipvtap, so we have to configure everything manually. Important data we need before we start:
- the name of the wifi interface,
wlan0
in my case (it's already connected - use NM or networkd+iwd). - the mac address of the wifi interface (it must be the same in the guest too)
On the host:
sudo ip link add name ipvtap0 link wlan0 type ipvtap mode l2 bridge
sudo ip link set up ipvtap0
The network interface for the guest is configured via the following xml
using the mac address from wlan0/ipvtap0:
<interface type="ethernet">
<mac address="f8:d1:11:18:81:c3"/>
<target dev="ipvtap0" managed="no"/>
<model type="virtio"/>
<alias name="net0"/>
<address type="pci" domain="0x0000" bus="0x05" slot="0x00" function="0x0"/>
</interface>
⚠️ DHCP is a … bit complicated
Now, I can start the VM, but I can't ping from/to router to/from the VM, until I configure the guest address on the host ipvtap0 too:
sudo ip addr add dev ipvtap0 192.168.17.111/32
this might be fixable with some proxy-arp?
Host:
- Archlinux, 5.6.15-arch1-1
- libvirt 6.4.0-1
- qemu-headless 5.0.0-6
Guest:
- Archlinux testing, 5.7.0-zen1-1-zen
I've used these instructions to set up an Intel wireless card in AP mode as an interface for pfSense running inside KVM, using
hostapd
in the Linux host OS to configure the card. I'm planning to use this to isolate IOT devices from my main network.I use
virt-install
to set up my VMs, and so far as I can tellvirt-install
does not natively support<interface>
. But it can be generated usingvirt-install
's--xml
option: