quantum and openvswitch configuration
I have an installation of openstack-folsom with quantum and openvswitch. I have a controller (all the services, quantum server and openvswitch agent) and a compute (with openvswitch agent) On both nodes, I have br-int and br-eth2 (eth2 is the physical NIC with VLANs configured on it)... The ovs plugin ini contains:
tenant_network_type = vlan network_vlan_ranges = eth2:150:299 integration_bridge = br-int bridge_mappings = eth2:br-eth2
I have created a provider network, a subnet and two ports on this subnet like this:
quantum net-create net1 --tenant_id ... --provider:network_type vlan --provider:physical_network eth2 --provider:segmentation_id 150 quantum subnet-create --no-gateway net1 10.0.1.0/24 --enable_dhcp False quantum port-create --fixed-ip subnet_id=...,ip_address=10.0.1.100 net1
and finally spawn two virtual machine (one on the compute and the other on the controller) with the created ports. The two VMs are running but I cannot ping one VM from the other. The ping on one VM triggers ARP requests that arrive to the br-eth2 bridge on the physical host where the other VM is but they never reach the VM itself. The tcpdump on the eth1 interface of the destination VM shows no incoming traffic.
Is there something conceptually wrong?