I set up my first ubuntu server recently and I am struggeling with netplan.
As I need a Windows to run one service which isnt available on linux, I try to set up KVM.
The server has serveral static ips used for different services or docker containers running services, so my netplan config looks like this:
network:
version: 2
renderer: networkd
ethernets:
enp30s0:
dhcp4: no
addresses: [xxx.xxx.xxx.100/24, xxx.xxx.xxx.102/24, xxx.xxx.xxx.105/24, ...]
gateway4: xxx.xxx.xxx.1
nameservers:
addresses: [xxx.xxx.xxx.1]
Now it seems as I need to create a network bridge to make it available for the guest machine, but I was unable to find a solution to do so only for 1 adress.
Is there any way to achieve this, or am I making a conceptual mistake here?
Any help would be highly appreciated! Thank you.