KVM : Install2021/05/10 |
This is the Virtualization Configuration with KVM ( Kernel-based Virtual Machine ) + QEMU.
This requires that the CPU on your computer which has a feature Intel VT or AMD-V. |
|
[1] | Install required packages. |
root@dlp:~# apt -y install qemu-kvm libvirt-daemon-system libvirt-daemon virtinst bridge-utils libosinfo-bin
|
[2] | Configure Bridge networking. |
root@dlp:~#
vi /etc/netplan/01-netcfg.yaml network: ethernets: enp1s0: dhcp4: no # disable existing configuration for ethernet #addresses: [10.0.0.30/24] #gateway4: 10.0.0.1 #nameservers: #addresses: [10.0.0.10] dhcp6: no # add configuration for bridge interface bridges: br0: interfaces: [enp1s0] dhcp4: no addresses: [10.0.0.30/24] gateway4: 10.0.0.1 nameservers: addresses: [10.0.0.10] parameters: stp: false dhcp6: no version: 2
root@dlp:~#
root@dlp:~# netplan apply
ip addr 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 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:ac:5b:90 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 16:2c:34:d4:59:46 brd ff:ff:ff:ff:ff:ff inet 10.0.0.30/24 brd 10.0.0.255 scope global br0 valid_lft forever preferred_lft forever inet6 fe80::142c:34ff:fed4:5946/64 scope link valid_lft forever preferred_lft forever 4: virbr0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default qlen 1000 link/ether 52:54:00:ae:04:d6 brd ff:ff:ff:ff:ff:ff inet 192.168.122.1/24 brd 192.168.122.255 scope global virbr0 valid_lft forever preferred_lft forever |
Sponsored Link |