Skip to content

Hypervisor system config

This process is primarily intended for development environments. In production environments, it's essential to establish proper rules for the firewalld service and configure SELinux policies to maintain a secure environment.

With these instructions, we allow various types of connections through the different virtual networks within the environment:

## SELinux
sed -i s/^SELINUX=.*$/SELINUX=permissive/ /etc/selinux/config; setenforce 0

## Firewalld
systemctl disable --now firewalld

## Libvirtd
systemctl restart libvirtd
systemctl enable --now libvirtd