cant ping the tenant router gateway or assign IP floatingip address to compute node
I configured the demo tenant Icehouse on 4 CentOS bare-metal servers: controller, neutron network node and 2 compute nodes per these instructions: http://docs.openstack.org/icehouse/in...
Can create a VM and Problem is I cannot ping my tenant gateway 192.168.1.200. Below is my configuration
I created a cirros instance and can access it thru VNC, but no IP address is assigned to eth0.
Any help would be greatly appreciated.
[devops@workstation-02 openstack]$ nova list
+--------------------------------------+----------------+---------+------------+-------------+------------------------------------+
| ID | Name | Status | Task State | Power State | Networks |
+--------------------------------------+----------------+---------+------------+-------------+------------------------------------+
| 5dea6636-7600-405b-b9bd-c99496d4a56a | demo-instance1 | SHUTOFF | - | Shutdown | demo-net=172.16.1.2, 192.168.1.201 |
| 9d277d3b-f42b-4576-9e16-f9e95f8815bd | demo-instance2 | ACTIVE | - | Running | demo-net=172.16.1.4, 192.168.1.202 |
+--------------------------------------+----------------+---------+------------+-------------+------------------------------------+
10.0.0.x is mgmt network
192.168.1.x is external network with gateway 192.168.1.1
10.0.1.x is VM network
source admin-openrc.sh
neutron net-create ext-net --shared --router:external=True
neutron subnet-create ext-net --name ext-subnet \
--allocation-pool start=192.168.1.200,end=192.168.1.254 \
--disable-dhcp --gateway 192.168.1.1 192.168.1.0/24
source demo-openrc.sh
neutron net-create demo-net
neutron subnet-create demo-net --name demo-subnet \
--gateway 172.16.1.1 172.16.1.0/24
neutron net-list
neutron router-create demo-router
neutron router-interface-add demo-router demo-subnet
neutron router-gateway-set demo-router ext-net
Gateway IP = 192.168.1.1
DHCP is turned off
10.x network is on its own switch
192.x network is on its own switch connected to gateway ip
###############################################################################
# Network:
# *.mgmt - OpenStack Internal Network
# *.pub - Public Network
# *.vm - VM Traffic Network
###############################################################################
10.0.0.6 workstation-02.mgmt workstation-02 salt ntp yumrepo
10.0.0.11 controller-01.mgmt controller-01
10.0.0.21 network-01.mgmt network-01
10.0.0.31 compute-01.mgmt compute-01
10.0.0.32 compute-02.mgmt compute-02
10.0.1.31 compute-01.vm compute-01
10.0.1.32 compute-02.vm compute-02
192.168.1.6 workstation-02.pub
192.168.1.11 controller-01.pub
```
##### Network Node
```
[root@network-01 ~]$ ping 192.168.1.200
connect: Network is unreachable
[root@controller-01 openstack]$ ping 192.168.1.200
PING 192.168.1.200 (192.168.1.200) 56(84) bytes of data.
From 192.168.1.11 icmp_seq=2 Destination Host Unreachable
From 192.168.1.11 icmp_seq=3 Destination Host Unreachable
From 192.168.1.11 icmp_seq=4 Destination Host Unreachable
[root@network-01 ~]$ echo $OS_USERNAME
admin
[root@network-01 ~]$ ovs-vsctl show
3ada494e-2979-4cff-b748-2f9becbc4c72
Bridge br-int
fail_mode: secure
Port br-int
Interface br-int
type: internal
Port "qr-90090478-78"
tag: 1
Interface "qr-90090478-78"
type: internal
Port "tap26b688cd-94"
tag: 1
Interface "tap26b688cd-94"
type: internal
Port patch-tun
Interface patch-tun
type: patch
options: {peer=patch-int}
Bridge br-ex
Port "eth2"
Interface "eth2"
Port "qg-40d23e5f-87"
Interface "qg-40d23e5f-87"
type: internal
Port br-ex
Interface br-ex
type: internal
Bridge br-tun
Port "gre-0a00011f"
Interface "gre-0a00011f"
type: gre
options: {in_key=flow, local_ip="10.0.1.21", out_key=flow, remote_ip="10.0.1.31"}
Port patch-int
Interface patch-int
type: patch
options: {peer=patch-tun}
Port br-tun
Interface br-tun
type: internal
Port "gre-0a000120"
Interface "gre-0a000120"
type: gre
options: {in_key=flow, local_ip="10.0.1.21", out_key=flow, remote_ip ...
Does cirros VM comlaining address 169.254.169.254 when booting ?