]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
Improve ml2_conf.ini
authorZhiQiang Fan <aji.zqfan@gmail.com>
Sun, 29 Sep 2013 17:11:43 +0000 (01:11 +0800)
committerZhiQiang Fan <aji.zqfan@gmail.com>
Sun, 29 Sep 2013 17:14:03 +0000 (01:14 +0800)
ml2_type_vxlan section is missing, also does option vni_ranges.

Change-Id: Icf9328d82603640279d1c5aa31f41b6ff23c26f0
Fixes-Bug: #1231124

etc/neutron/plugins/ml2/ml2_conf.ini

index ba8e1dd5895312747b91ad9f12391f4471f3ee43..a9b0d508b674c8c04193a4f5e6783d9bf8fe55ec 100644 (file)
 # tenant_network_types = local
 # Example: tenant_network_types = vlan,gre,vxlan
 
-# (StrOpt) Multicast group for the VXLAN interface. When configured, will
-# enable sending all broadcast traffic to this multicast group. When left
-# unconfigured, will disable multicast VXLAN mode.
-#
-# vxlan_group =
-# Example: vxlan_group = 239.1.1.1
-
 # (ListOpt) Ordered list of networking mechanism driver entrypoints
 # to be loaded from the neutron.ml2.mechanism_drivers namespace.
 # mechanism_drivers =
 [ml2_type_gre]
 # (ListOpt) Comma-separated list of <tun_min>:<tun_max> tuples enumerating ranges of GRE tunnel IDs that are available for tenant network allocation
 # tunnel_id_ranges =
+
+[ml2_type_vxlan]
+# (ListOpt) Comma-separated list of <vni_min>:<vni_max> tuples enumerating
+# ranges of VXLAN VNI IDs that are available for tenant network allocation.
+#
+# vni_ranges =
+
+# (StrOpt) Multicast group for the VXLAN interface. When configured, will
+# enable sending all broadcast traffic to this multicast group. When left
+# unconfigured, will disable multicast VXLAN mode.
+#
+# vxlan_group =
+# Example: vxlan_group = 239.1.1.1