KVM : Install2024/05/09 |
This is the Virtualization configuration with KVM ( Kernel-based Virtual Machine ) + QEMU.
It requires that the CPU on your computer that has a feature Intel VT or AMD-V. |
|
[1] | Install required packages. |
[root@dlp ~]#
dnf -y install qemu-kvm libvirt virt-install # confirm modules are loaded [root@dlp ~]# kvm_intel 425984 0 kvm 1404928 1 kvm_intel irqbypass 12288 1 kvm[root@dlp ~]# systemctl enable --now libvirtd |
[2] | Configure Bridge networking for KVM virtual machines. Replace the interface name [enp1s0] for your own environment. |
# add bridge [br0] [root@dlp ~]# nmcli connection add type bridge autoconnect yes con-name br0 ifname br0 Connection 'br0' (d5bdefd2-3761-48fb-84ff-3746c2f32e0b) successfully added. # set IP address for [br0] [root@dlp ~]# nmcli connection modify br0 ipv4.addresses 10.0.0.30/24 ipv4.method manual # set Gateway for [br0] [root@dlp ~]# nmcli connection modify br0 ipv4.gateway 10.0.0.1 # set DNS for [br0] [root@dlp ~]# nmcli connection modify br0 ipv4.dns 10.0.0.10 # set DNS search base for [br0] [root@dlp ~]# nmcli connection modify br0 ipv4.dns-search srv.world # remove the current interface [root@dlp ~]# nmcli connection del enp1s0 # add the removed interface again as a member of [br0] [root@dlp ~]# nmcli connection add type bridge-slave autoconnect yes con-name enp1s0 ifname enp1s0 master br0 # restart [root@dlp ~]# ip address show 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 inet 127.0.0.1/8 scope host lo valid_lft forever preferred_lft forever inet6 ::1/128 scope host noprefixroute valid_lft forever preferred_lft forever 2: enp1s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel master br0 state UP group default qlen 1000 link/ether 52:54:00:f8:e3:e0 brd ff:ff:ff:ff:ff:ff 3: br0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000 link/ether 52:54:00:f8:e3:e0 brd ff:ff:ff:ff:ff:ff inet 10.0.0.30/24 brd 10.0.0.255 scope global noprefixroute br0 valid_lft forever preferred_lft forever inet6 fe80::8129:a2e9:7138:c5c7/64 scope link |
Sponsored Link |