Hi! I had the same issue, though I was working on Suse Enterprise Linux Server. The solution *seems* to work in line with other distributions of Linux:
Code:
prlctl clone <template_name> --name <new_vm_name>
prlctl set <new_vm_name> --device-set net0 --ipadd <ip_address_predecided_by_me> # sets up VM to point to new IP address
prlctl start <new_vm_name>
# wait for VM to boot up
prlctl exec <new_vm_name> rm /etc/udev/rules.d/70-persistent-net.rules # Resolves conflict between
prlctl stop <new_vm_name>
prlctl start <new_vm_name>
You can verify it worked by looking at
after the VM has booted up.
I pieced together this solution from here and here
Hope this helps!