Configuring VLANs for your Libvirt virtual machines

Previous title was “libvirtd with trunk port and VM in VLAN aware bridges”.

I use my small home server as a virtualization host running Fedora 32.

It has only one network interface enp8s0.

I have 3 VLANs:

My NAS sits in VLAN 10 and I wanted to be able to run virtual machines in VLAN 20 and 30 with no tagging done inside the guests VMs.

First of all, the host must be connected to a trunk port on your switch.

Then we must create VLAN aware bridges on the host for the guests VMs.

Let’s see how to do it.

Configure the trunk on the switch

My switch is a Ubiquiti EdgeSwitch 24 Lite. Adjust accordingly to your gear.

enable
configure
interface 0/23
    description NAS
    switchport mode trunk
    switchport trunk allowed vlan 1,10,20,30
    switchport trunk native vlan 10
    exit

The native VLAN is my home network, so any traffic coming from my NAS or from a VM using the macvtap enp8s0 device should fall within the home VLAN.

We need to configure the host with VLAN aware bridges for other VLANs.

Configure the bridge for the guest VLAN

I use nmtui as an easy interface to NetworkManager. You can obviously use nmcli. This blog post covers nmcli.

Install the package if you want to use the TUI dnf install NetworkManager-tui.

Start nmtui.

Create a new connection of type bridge:

Give it a name (bridge-guest here) and disable STP (unless you really need it in your setup):

When done add a bridge slave of type VLAN:

Give the new VLAN a name (vlan-guest here) and specify the device name.

The device name is the original network interface followed by a dot and the VLAN id:

enp8s0.20

The TUI will figure out the parent and VLAN ID automatically based on the device name:

The resulting bridge:

Save the new bridge, activate it and quit nmtui.

Now when you configure your VM, do not choose a predefined libvirt network.

Instead just select “specify shared device name” and type the name of your new bridge bridge-guest:

After starting the VM it should look like this:

Your guest VM should now be sitting in the guest VLAN.

You can now redo the procedure for any other VLANs.

Regarding VMs in the native VLAN

There is a known limitation for VMs that need to use the same VLAN as the host.

In such a scenario the VM would be using the host device enp8s0 which will use macvtap.

The communication between host and guests using macvtap is not possible for technical reasons detailed here.

Guests to guests communication is possible.

I personally run a Pi-hole DNS server in a VM on my home network, so it means the host can’t use Pi-hole as the resolver.

There are two possible workarounds.

Second NAT NIC on the guest

You create a second NAT network interface, and the libvirt hosts resolves through the NAT IP

                  +----------------------------------------------+
                  |                                              |
                  |                libvirt host                  |
Switch trunk      +--------+            ^                        |
   +------------->+ enp8s0 +------------+-----------+            |
                  +----+---+                    +---v----------+ |
                  |    ^   ^-----------------+  |              | |
                  |    |                     |  |   VM home    | |
                  |    +----+                |  |              | |
                  |         |                |  +--------------+ |
                  +----------------------+-----------------------+
                  |         |            |   +------+            |
                  | bridge  |  enp8s0.20 | bridge   |  enp8s0.30 |
                  |         |            |          |            |
                  +----------------------------------------------+
                  |         |            |          |            |
                  |  +------+-------+    |     +----+---------+  |
                  |  |              |    |     |              |  |
                  |  |  VM guest    |    |     |   VM work    |  |
                  |  |              |    |     |              |  |
                  |  +--------------+    |     +--------------+  |
                  +----------------------+-----------------------+

Second physical NIC on the host

You can also add a second physical NIC on the host and bridge the VMs on the macvtap of the second NIC.

Host and guest will then be able to communicate since they are no longer sharing the same NIC (this is what I have done using a cheap 12 euros tplink Gigabit Ethernet card).

                  +----------------------------------------------+
                  |                                    +---------|
                  |                libvirt host     +--+ enp1s0 <---+switch untagged
Switch trunk      +--------+            ^           |  +---------+
   +------------->+ enp8s0 +------------+           |            |
                  +----+---+                    +---+----------+ |
                  |    ^   ^-----------------+  |              | |
                  |    |                     |  |   VM home    | |
                  |    +----+                |  |              | |
                  |         |                |  +--------------+ |
                  +----------------------+-----------------------+
                  |         |            |   +------+            |
                  | bridge  |  enp8s0.20 | bridge   |  enp8s0.30 |
                  |         |            |          |            |
                  +----------------------------------------------+
                  |         |            |          |            |
                  |  +------+-------+    |     +----+---------+  |
                  |  |              |    |     |              |  |
                  |  |  VM guest    |    |     |   VM work    |  |
                  |  |              |    |     |              |  |
                  |  +--------------+    |     +--------------+  |
                  +----------------------+-----------------------+

Now that you have two network interface in the same subnet, you will need to configure metric priority like this:

[root@srv ~]# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         10.10.0.1       0.0.0.0         UG    10     0        0 enp8s0
0.0.0.0         10.10.0.1       0.0.0.0         UG    100    0        0 enp1s0

I give enp8s0 (host traffic) priority over enp1s0 (VM).

Conclusion

Native VLAN on the trunk port means no tagging needed for the traffic of the host.

By making VLAN aware bridges on the libvirt host, I don’t have to configure VLAN tagging inside VMs. Simply configure the VM NIC to use the appropriate bridge.

Configuration of VLAN aware bridges with nmtui did not disrupt traffic. I didn’t lose my SSH connection to the host while configuring them.

So all in all, everything can be performed and configured remotely.

Besides the two options presented above, there’s another option where you use one bridge and VLAN filtering. The procedure is detailed on this Red Hat blog post (I have not tested it).




Thanks for reading this post!


Did you find an issue in this article?

- click on the following Github link
- log into Github with your account
- click on the line number containing the error
- click on the "..." button
- choose "Reference in new issue"
- add a title and your comment
- click "Submit new issue"

Your feedback is much appreciated! πŸ€œπŸΌπŸ€›πŸΌ

You can also drop me a line below!