<font size=2 face="sans-serif">I have been trying to get </font><a href="http://docs.openstack.org/developer/devstack/guides/neutron.html#using-neutron-with-a-single-interface"><font size=2 color=blue face="sans-serif">http://docs.openstack.org/developer/devstack/guides/neutron.html#using-neutron-with-a-single-interface</font></a><font size=2 face="sans-serif">working on Ubuntu 14.04 (updated to the latest, which includes kernel 3.19).
 With the latest sources and a sufficiently recent OVS, the one-node
install pretty much works!  I added to local.conf only: (a) IP_VERSION=4,
to avoid issues with v6, and (b) some settings to get logs saved to files
without coloring.</font><br><br><font size=2 face="sans-serif">In particular, what I have done regarding
OVS is to download 2.4 and build the .deb packages according to the instructions.
 I used the kernel datapath from the linux kernel 3.19.  I installed
the openvswitch-common and openvswitch-switch .debs that I built.</font><br><br><font size=2 face="sans-serif">I think the doc should be enhanced to
discuss IPv6.  I tried once without the `IP_VERSION=4`, and the resulting
IPv6 config was not good.</font><br><br><font size=2 face="sans-serif">IMHO the default should be to keeps
logs in files without coloring, because that is the most user-friendly.
 I think that for DevStack the defaults should be friendly to newbies,
since this is where they start.</font><br><br><font size=2 face="sans-serif">I then went on to </font><a href="http://docs.openstack.org/developer/devstack/guides/neutron.html#adding-additional-compute-nodes"><font size=2 color=blue face="sans-serif">http://docs.openstack.org/developer/devstack/guides/neutron.html#adding-additional-compute-nodes</font></a><font size=2 face="sans-serif">, and ran into MTU problems.  All MTUs come out to be 1500, which
just does not work (due to the tunneling overhead).</font><br><br><font size=2 face="sans-serif">I then tried a fresh DevStack install
with a revised local.conf derived from </font><a href="https://specs.openstack.org/openstack/fuel-specs/specs/7.0/jumbo-frames-between-instances.html#proposed-change"><font size=2 color=blue face="sans-serif">https://specs.openstack.org/openstack/fuel-specs/specs/7.0/jumbo-frames-between-instances.html#proposed-change</font></a><font size=2 face="sans-serif">.  Specifically, this is what I added to my local.conf for MTU issues:</font><br><br><tt><font size=2>[[post-config|$NEUTRON_CONF]]</font></tt><br><tt><font size=2>[DEFAULT]</font></tt><br><tt><font size=2>advertise_mtu=True</font></tt><br><tt><font size=2>network_device_mtu=1450</font></tt><br><br><tt><font size=2>[[post-config|/$Q_PLUGIN_CONF_FILE]]</font></tt><br><tt><font size=2>[ml2]</font></tt><br><tt><font size=2>physical_network_mtus = public:1450</font></tt><br><br><font size=2 face="sans-serif">That got me MTUs of 1450 on the router
and DHCP ports but not the VM plumbing.  Perhaps I read too much into
the word "keep".</font><br><br><font size=2 face="sans-serif">Then I added</font><br><br><font size=2 color=#e26200 face="Menlo-Regular">network_device_mtu</font><font size=2 face="Menlo-Regular">= 65000</font><br><br><font size=2 face="sans-serif">to the DEFAULT section of nova.conf,
then restarted all the nova processes.  I created a new VM after that.
 The result was that the qbr..., qvo..., qvb..., and tap... network
interfaces in the main netns have MTU of 65000 --- and eth0 inside the
VM has an MTU of 1500.</font><br><br><font size=2 face="sans-serif">So then I changed the network_device_mtu
setting in nova.conf to 1450, restarted all the nova processes again, and
made another new VM.  Now the qbr..., qvo..., qvb..., and tap... network
interfaces in the main netns have MTU of 1450 but the VM still got an MTU
of 1500 on its eth0.</font><br><br><font size=2 face="sans-serif">In my logs directory, `</font><font size=2 face="Menlo-Regular">grep
'Running command' *.log | grep set | grep -i mtu</font><font size=2 face="sans-serif">`
finds only the setting of the MTUs of the router and DHCP stuff --- nothing
for any of the VMs.</font><br><br><font size=2 face="sans-serif">Regards,</font><br><font size=2 face="sans-serif">Mike</font><br><br><BR>