Devstack is not using my own private network configuration
Hello,
I am trying to setup a devstack environment using my own private network configuration with the variables "FIXED_RANGE=192.168.1.0/24" and "NETWORK_GATEWAY=192.168.1.1". But, the devstack always uses its hard coded private network configuration, i.e Network: 10.0.0.0/8 and GW: 10.0.0.1.
After some googling, I feels that there is some bug around this area. But, I'm unsure about that and wanted to check it here.
My local.conf excerpt showing the network configuration:
NEUTRON_CREATE_INITIAL_NETWORKS=True
FLOATING_RANGE=10.6.0.0/16 #Your LAN network segment
Q_FLOATING_ALLOCATION_POOL=start=10.6.20.100,end=10.6.20.200
FIXED_RANGE=192.168.1.0/24 #Private network for guest VMs
FIXED_NETWORK_SIZE=256
NETWORK_GATEWAY=192.168.1.1 #Gateway used for guest VMs
PUBLIC_NETWORK_GATEWAY=10.6.0.1
Thanks