Script to create a KVM bridge in Fedora 35

This will enable the guest machines to get an address for the local lan ( home network ).  You put in bridged in the KVM config and device is “br0” #!/bin/sh export MAIN_CONN=enp5s0f0 bash -x <<EOS systemctl stop libvirtd nmcli c delete “$MAIN_CONN” nmcli c delete “Wired connection 1” nmcli c add type bridge ifname br0 autoconnect yes con-name br0 […]