First time here? Check out the FAQ!
![]() | 1 | initial version |
I was able to overcome this by translating the neutron cli command to an openstack cli command, and specifying different combination of options.
openstack subnet create --subnet-pool provider --network provider \
--prefix-length 27 --subnet-range 192.168.84.64/27 \
--allocation-pool start=192.168.84.67,end=192.168.84.94 \
provider-64
I think the most important part of the change is including the --subnet-range
option which enables the use of the --allocation-pool
.