openstack team mailing list archive
-
openstack team
-
Mailing list archive
-
Message #25049
faile scheduling network in quantum vlan
hi,
I used packstack to make a two node openstack deployment with quantum(vlan) on Scientific linux 6.
I configured EPEL using: rpm -Uvh http://mirror.uv.es/mirror/fedora-epel/6/x86_64/epel-release-6-8.noarch.rpm
I upgraded the dnsmasq using: yum install http://ftp.is.co.za/mirror/ftp.rpmforge.net/redhat/el6/en/x86_64/extras/RPMS/dnsmasq-2.65-1.el6.rfx.x86_64.rpm
Then I changed the following in the generated answer file to enable quantum vlan:
CONFIG_QUANTUM_OVS_TENANT_NETWORK_TYPE=vlan
CONFIG_QUANTUM_OVS_VLAN_RANGES=default:100:110
CONFIG_QUANTUM_OVS_BRIDGE_MAPPINGS=default:br-ex
Then I created a non-admin user and followed this http://docs.openstack.org/grizzly/openstack-network/admin/content/demo_logical_network_config.html tutorial to create the networks.
[arindam@sl-1 ~(keystone_user)]$ quantum net-list
+--------------------------------------+---------+--------------------------------------------------+
| id | name | subnets |
+--------------------------------------+---------+--------------------------------------------------+
| 06614a9a-0ccd-47a8-996d-c7a6b2a6a605 | ext_net | 2c864957-09c9-4067-82de-64ad0da3ed41 |
| 66e0a1bc-0852-4cd4-9f11-aac57ed74d53 | net1 | 761103ea-1b0d-41f1-9a40-39bd14aaf99d 10.5.5.0/24 |
+--------------------------------------+---------+--------------------------------------------------+
[arindam@sl-1 ~(keystone_user)]$ quantum router-list
+--------------------------------------+---------+--------------------------------------------------------+
| id | name | external_gateway_info |
+--------------------------------------+---------+--------------------------------------------------------+
| 2cb10a37-48bf-48f1-bf22-b5e255deba44 | router1 | {"network_id": "06614a9a-0ccd-47a8-996d-c7a6b2a6a605"} |
+--------------------------------------+---------+--------------------------------------------------------+
[arindam@sl-1 ~(keystone_user)]$ quantum router-port-list 2cb10a37-48bf-48f1-bf22-b5e255deba44
+--------------------------------------+------+-------------------+---------------------------------------------------------------------------------+
| id | name | mac_address | fixed_ips |
+--------------------------------------+------+-------------------+---------------------------------------------------------------------------------+
| 2e77fa36-3127-414b-bfcf-d8dd6cd568be | | fa:16:3e:fd:3e:16 | {"subnet_id": "761103ea-1b0d-41f1-9a40-39bd14aaf99d", "ip_address": "10.5.5.1"} |
+--------------------------------------+------+-------------------+---------------------------------------------------------------------------------+
but when I instantiate a virtual machine, it does not get ip address.
2013-07-11 22:45:49 WARNING [quantum.db.agentschedulers_db] Fail
scheduling network {'status': u'ACTIVE', 'subnets':
[u'761103ea-1b0d-41f1-9a40-39bd14aaf99d'], 'name': u'net1',
'provider:physical_network': u'default', 'admin_state_up': True,
'tenant_id': u'335c80bb3f304bdcb987c27eaf8eb364',
'provider:network_type': u'vlan', 'router:external': False, 'shared':
False, 'id': u'66e0a1bc-0852-4cd4-9f11-aac57ed74d53',
'provider:segmentation_id': 101L}
Follow ups