Not able to list floating IPs in ESSEX
Hi,
I have done a two node installation of ESSEX following the document http://docs.openstack.org/essex/openstack-compute/starter/content/ (http://docs.openstack.org/essex/opens...) . Installed and configured keystone, glance and nova and dashboard.
The IP of the two servers are
server1:
auto eth0 iface eth0 inet static address 192.168.1.1 netmask 255.255.255.0 network 192.168.1.0 broadcast 192.168.1.255
auto eth1 iface eth1 inet static address 10.10.10.11 netmask 255.255.255.0 broadcast 10.10.10.255 gateway 10.10.10.1
Server 2:
auto eth0 iface eth0 inet static address 192.168.1.2 netmask 255.255.255.0 network 192.168.1.0 broadcast 192.168.1.255
auto eth1 iface eth1 inet static address 10.10.10.12 netmask 255.255.255.0 broadcast 10.10.10.255
gateway 10.10.10.1
I am using VLAN manager as networking. eth0 is my VLAN interface and eth1 is my public interface
The following packages are installed in my controller node
ii nova-api 2012.1+stable~20120612-3ee026e-0ubuntu1.1 OpenStack Compute - API frontend ii nova-cert 2012.1+stable~20120612-3ee026e-0ubuntu1.1 OpenStack Compute - certificate management ii nova-common 2012.1+stable~20120612-3ee026e-0ubuntu1.1 OpenStack Compute - common files ii nova-compute 2012.1+stable~20120612-3ee026e-0ubuntu1.1 OpenStack Compute - compute node ii nova-compute-kvm 2012.1+stable~20120612-3ee026e-0ubuntu1.1 OpenStack Compute - compute node (KVM) ii nova-consoleauth 2012.1+stable~20120612-3ee026e-0ubuntu1.1 OpenStack Compute - Console Authenticator ii nova-doc 2012.1+stable~20120612-3ee026e-0ubuntu1.1 OpenStack Compute - documentation ii nova-network 2012.1+stable~20120612-3ee026e-0ubuntu1.1 OpenStack Compute - Network manager ii nova-objectstore 2012.1+stable~20120612-3ee026e-0ubuntu1.1 OpenStack Compute - object store ii nova-scheduler 2012.1+stable~20120612-3ee026e-0ubuntu1.1 OpenStack Compute - virtual machine scheduler ii nova-volume 2012.1+stable~20120612-3ee026e-0ubuntu1.1 OpenStack Compute - storage ii python-nova 2012.1+stable~20120612-3ee026e-0ubuntu1.1 OpenStack Compute Python libraries ii python-novaclient 2012.1-0ubuntu1 client library for OpenStack Compute API
The /etc/nova/.conf file of my controller is as follows:
[DEFAULT] dhcpbridge_flagfile=/etc/nova/nova.conf dhcpbridge=/usr/bin/nova-dhcpbridge logdir=/var/log/nova state_path=/var/lib/nova lock_path=/run/lock/nova verbose=true allow_admin_api=true use_deprecated_auth=false auth_strategy=keystone scheduler_driver=nova.scheduler.simple.SimpleScheduler my_ip=10.10.10.11 s3_host=10.10.10.11 rabbit_host=10.10.10.11 cc_host=10.10.10.11 ec2_host=10.10.10.11 ec2_dmz_host=10.10.10.11 nova_url=http://10.10.10.11:8774/v1.1/ ec2_url=http://10.10.10.11:8773/services/Cloud keystone_ec2_url=http://10.10.10.11:5000/v2.0/ec2tokens api_paste_config=/etc/nova/api-paste.ini libvirt_type=kvm root_helper=sudo nova-rootwrap
#VNC configuration novnc_enabled=False #vncserver_listen=10.10.10.11 #novncproxy_base_url=http://10.10.10.11:6080/vnc_auto.html #vncserver_proxyclient_address=10.10.10.11 #vncserver_listen=0.0.0.0
#Network config network_manager=nova.network.manager.VlanManager #floating_range=10.10.10.128/25 fixed_range=192.168.0.0/16 network_size=10 force_dhcp_release=True #update_dhcp_on_disassociate=true routing_source_ip=10.10.10.11 ec2_private_dns_show_ip=True #sql_connection=postgresql://novadbadmin:novasecret@10.10.10 ...