Skip to content

Commit

Permalink
Update neutron ML2 configuration
Browse files Browse the repository at this point in the history
I updated the installation guide neutron ML2 configuration to
use the newer '[agent] tunnel_types' option instead of the
'[ovs] tunnel_type' option. I also improved the description of
a few steps.

Change-Id: I9ddc150b7f09b15afaf1b9a4113a0fb8b13fe032
Closes-Bug: #1391097
backport: juno
(cherry picked from commit 300aaf7)
  • Loading branch information
ionosphere80 committed Nov 21, 2014
1 parent c5898e3 commit bbaeea3
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 7 deletions.
12 changes: 9 additions & 3 deletions doc/install-guide/section_neutron-compute-node.xml
Expand Up @@ -182,18 +182,24 @@ enable_ipset = True
firewall_driver = neutron.agent.linux.iptables_firewall.OVSHybridIptablesFirewallDriver</programlisting>
</step>
<step>
<para>In the <literal>[ovs]</literal> section, configure the
<glossterm>Open vSwitch (OVS) agent</glossterm>:</para>
<para>In the <literal>[ovs]</literal> section, enable tunnels
and configure the local tunnel endpoint:</para>
<programlisting language="ini">[ovs]
...
local_ip = <replaceable>INSTANCE_TUNNELS_INTERFACE_IP_ADDRESS</replaceable>
tunnel_type = gre
enable_tunneling = True</programlisting>
<para>Replace
<replaceable>INSTANCE_TUNNELS_INTERFACE_IP_ADDRESS</replaceable>
with the IP address of the instance tunnels network interface
on your compute node.</para>
</step>
<step>
<para>In the <literal>[agent]</literal> section, enable GRE
tunnels:</para>
<programlisting language="ini">[agent]
...
tunnel_types = gre</programlisting>
</step>
</substeps>
</step>
</procedure>
Expand Down
16 changes: 12 additions & 4 deletions doc/install-guide/section_neutron-network-node.xml
Expand Up @@ -171,7 +171,7 @@ mechanism_drivers = openvswitch</programlisting>
</step>
<step>
<para>In the <literal>[ml2_type_flat]</literal> section,
configure the external network:</para>
configure the external flat provider network:</para>
<programlisting language="ini">[ml2_type_flat]
...
flat_networks = external</programlisting>
Expand All @@ -196,19 +196,27 @@ enable_ipset = True
firewall_driver = neutron.agent.linux.iptables_firewall.OVSHybridIptablesFirewallDriver</programlisting>
</step>
<step>
<para>In the <literal>[ovs]</literal> section, configure the
<glossterm>Open vSwitch (OVS) agent</glossterm>:</para>
<para>In the <literal>[ovs]</literal> section, enable tunnels,
configure the local tunnel endpoint, and map the external flat
provider network to the <literal>br-ex</literal> external
network bridge:</para>
<programlisting language="ini">[ovs]
...
local_ip = <replaceable>INSTANCE_TUNNELS_INTERFACE_IP_ADDRESS</replaceable>
tunnel_type = gre
enable_tunneling = True
bridge_mappings = external:br-ex</programlisting>
<para>Replace
<replaceable>INSTANCE_TUNNELS_INTERFACE_IP_ADDRESS</replaceable>
with the IP address of the instance
tunnels network interface on your network node.</para>
</step>
<step>
<para>In the <literal>[agent]</literal> section, enable GRE
tunnels:</para>
<programlisting language="ini">[agent]
...
tunnel_types = gre</programlisting>
</step>
</substeps>
</step>
</procedure>
Expand Down

0 comments on commit bbaeea3

Please sign in to comment.