From 97ec23c39ec9b47760638d895f2b24ef94b725c9 Mon Sep 17 00:00:00 2001 From: Marcus Furlong Date: Tue, 23 Feb 2016 12:56:10 +1100 Subject: [PATCH] fix vxlan example to contain a valid range Otherwise we end up with the following error: ERROR neutron.plugins.ml2.drivers.type_vxlan NetworkTunnelRangeError: Invalid network Tunnel range: '0:300' - 0 is not a valid vxlan identifier Change-Id: I3ff2eda1c9fc0d82e7f0f42ae1615dc5c0e7d5fd --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d73680331..805e72c60 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ class { '::neutron::plugins::ml2': tenant_network_types => ['vxlan'], vxlan_group => '239.1.1.1', mechanism_drivers => ['openvswitch'], - vni_ranges => ['0:300'] + vni_ranges => ['1:300'] } ```