Add Neutron 7.0.0 for Ubuntu 14.04
[openstack-build/neutron-build.git] / trusty / debian / neutron-common.README.Debian
1 Debian packages are set to use OpenVSwitch by default, since that is the most
2 universal option. To have a correct setup, you should do the following on
3 your node:
4
5 ovs-vsctl add-br br-int
6 ovs-vsctl add-br br-ex
7 ovs-vsctl br-set-external-id br-ex bridge-id br-ex
8 ovs-vsctl add-port br-ex eth0
9
10 Then your br-ex IP address is handled by your network config in your
11 /etc/network/interfaces configuration file:
12
13 auto br-ex
14 iface br-ex inet static
15         address 192.168.1.10
16         netmask 255.255.255.0
17
18 This will bring up a bridge "br-int" for the internal network, and "br-ex" for
19 the network connected to the public internet. Here, 192.168.1.10 is then of
20 course your public IP address of the router which will deliver network to your
21 virtual machines.
22
23 With this setup, using tenant_network_type = gre and enable_tunneling = True
24 in /etc/neutron/plugins/ml2/openvswitch_agent.ini, which is the
25 default in this package, should work.
26
27  -- Thomas Goirand <zigo@debian.org>  Sat, 03 Nov 2012 14:01:32 +0000