<p dir="ltr">Hi there, I have a lot of problems with RDO/OpenStack configuration. Firstly, I need to describe my network situation.</p>
<p dir="ltr">I have 7 machine, each of them with 2 NIC. I would like to use one machine as a controller/network node and the others as compute nodes.</p>
<p dir="ltr">I would like to use the eth0 to connect nodes to internet (and get access by remote sessions) with the network "<a href="http://172.16.58.0/24">172.16.58.0/24</a>", in which I have just 7 available IPs, and eth1 as configuration network on the network <a href="http://10.42.100.0/42">10.42.100.0/42</a>.</p>
<p dir="ltr">This is my current configuration, for each node (varying the IPs on each machine):</p>
<p dir="ltr">    eth0:<br>
    DEVICE=eth0<br>
    TYPE=Ethernet<br>
    ONBOOT=yes<br>
    BOOTPROTO=static<br>
    IPADDR=172.16.58.50<br>
    NETMASK=255.255.255.0<br>
    GATEWAY=172.16.58.254<br>
    DNS1=172.16.58.50<br>
    DOMAIN=###<br>
    DEFROUTE="yes"</p>
<p dir="ltr">    eth1:<br>
    DEVICE=eth1<br>
    TYPE=OVSPort<br>
    DEVICETYPE=ovs<br>
    OVS_BRIDGE=br-ex<br>
    ONBOOT=yes</p>
<p dir="ltr">    br-ex:<br>
    DEVICE=br-ex<br>
    DEVICETYPE=ovs<br>
    TYPE=OVSBridge<br>
    BOOTPROTO=static<br>
    IPADDR=10.42.100.1<br>
    NETMASK=255.255.255.0<br>
    ONBOOT=yes</p>
<p dir="ltr">I'd like to have instances on <a href="http://10.42.200.0/24">10.42.200.0/24</a> virtual private network and the remaining IPs of <a href="http://10.42.100.0/24">10.42.100.0/24</a> network as floating IPs.</p>
<p dir="ltr">These are the relevant parts of my answers.txt file:</p>
<p dir="ltr">    CONFIG_CONTROLLER_HOST=10.42.100.1<br>
    CONFIG_COMPUTE_HOSTS=10.42.100.10,10.42.100.11,10.42.100.12,10.42.100.13,10.42.100.14,10.42.100.15<br>
    CONFIG_NETWORK_HOSTS=10.42.100.1<br>
    CONFIG_AMQP_HOST=10.42.100.1<br>
    CONFIG_MARIADB_HOST=10.42.100.1<br>
    CONFIG_NOVA_COMPUTE_PRIVIF=eth1<br>
    CONFIG_NOVA_NETWORK_PUBIF=eth1<br>
    CONFIG_NOVA_NETWORK_PRIVIF=eth1<br>
    CONFIG_NOVA_NETWORK_FIXEDRANGE=<a href="http://10.42.200.0/24">10.42.200.0/24</a><br>
    CONFIG_NOVA_NETWORK_FLOATRANGE=<a href="http://10.42.100.0/24">10.42.100.0/24</a><br>
    CONFIG_NEUTRON_L3_EXT_BRIDGE=br-ex<br>
    CONFIG_NEUTRON_ML2_TYPE_DRIVERS=vxlan<br>
    CONFIG_NEUTRON_ML2_TENANT_NETWORK_TYPES=vxlan<br>
    CONFIG_NEUTRON_ML2_VNI_RANGES=10:100<br>
    CONFIG_NEUTRON_LB_INTERFACE_MAPPINGS=<br>
    CONFIG_NEUTRON_OVS_BRIDGE_MAPPINGS=<br>
    CONFIG_NEUTRON_OVS_BRIDGE_IFACES=<br>
    CONFIG_NEUTRON_OVS_TUNNEL_IF=eth1</p>
<p dir="ltr">After the installation, I configure the network like this:</p>
<p dir="ltr">    neutron router-create router<br>
    neutron net-create private<br>
    neutron subnet-create private <a href="http://10.42.200.0/24">10.42.200.0/24</a> --name private-subnet<br>
    neutron router-interface-add router private-subnet<br>
    neutron net-create public --router:external=True<br>
    neutron subnet-create public <a href="http://10.42.100.0/24">10.42.100.0/24</a> --name public-subnet --enable_dhcp=False --allocation-pool start=10.42.100.100,end=10.42.100.200 --no-gateway<br>
    neutron router-gateway-set router public</p>
<p dir="ltr">I'm able to launch instances but I can't get access (ping/ssh) to them.</p>
<p dir="ltr">I don't know if I'm doing something wrong starting from planning. </p>
<p dir="ltr">Please, help me!</p>