Skip to content

Instantly share code, notes, and snippets.

@cloudnull
Created March 2, 2016 18:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cloudnull/05d60237fda2bdb177b0 to your computer and use it in GitHub Desktop.
Save cloudnull/05d60237fda2bdb177b0 to your computer and use it in GitHub Desktop.

When converting to Jumbo Frames from a standard MTU the tap and tunnel devices on the compute and neutron agent nodes will need to be updated to use the new larger MTU. Tap devices and tagged interfaces will have an MTU of 1450 if they were created using an L3 network before the conversion to Jumbo frames was completed.

To adjust the MTU for these devices run the following command

ansible nova_compute:neutron_agent -m shell -a "for i in \$(ip a l  | grep 'mtu 1450' | awk -F':' '{print \$2}'); do ip link set dev \$i mtu 8950; done" --forks 50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment