Depending on the setup (I cannot comment, but OP needs to add details like virtual machine system used (VMWare, QEMU KVM etc.) networkd interfaces or netplan yaml files for host and client) I assume that the OP wants each VM to have a different IP, on the same network.
To add separate subnets to each client VM requires a host bridge device, for the VM to create an interface against, with a suitable DHCP server ready to assign addresses.
Networkd interfaces approach:
# Do not set an IP - bind IP to bridge
auto eno2
iface eno2 inet manual
# Bridge interface
auto br26eno2
iface br26eno2 inet static
address 172.26.0.10
netmask 255.255.255.0
bridge_ports eno2
gateway 172.26.0.201
# Options for VM's:
bridge_fd 0
bridge_stp off
bridge_fd 0
bridge_maxwait 0
Netplan (which has some funnies regarding bridges, so mostly for production we have disabled, and used networkd instead):
ethernets:
eno2:
dhcp4: yes
dhcp6: no
# Don't wait for it to come up during boot.
optional: true
bridges:
br8eno1:
interfaces: [ eno2 ]
dhcp4: no
dhcp6: no
You then add the bridges to the VM host (libvirt uses a xml file, that you then load in), and create client interfaces.