Do not use the consumed IP addresses of the used network pool.
Workaround:
Manually delete the allocated IPs by the failed Domain Creation in the database, or the whole
network_pool if it is not used by other hosts. Steps:
- Log into the SDDC Manager and switch to root user
- Execute the following command for the network pool that needs to be deleted (name-of-network-pool in the example):
2.1 delete from vcf_network where id in (select vcf_network_id from vcf_network_and_network_pool where network_pool_id=(select id from network_pool where name='name-of-network-pool'));
2.2 delete from vcf_network_and_network_pool where network_pool_id=(select id from network_pool where name='name-of-network-pool');
2.3 delete from network_pool where name='name-of-network-pool';