Commit 023eb8ce by Edward Zarecor

Merge pull request #1861 from edx/e0d/update-mtu

Explicitly set MTU for interfaces to avoid jumbo frame bug.
parents 0f71983c 2b911ad6
......@@ -24,9 +24,17 @@
#
# Start dealing with Jumbo frames issue in mixed MTU deployements in AWS
#
- lineinfile: dest=/etc/network/interfaces regexp=^mtu line="mtu 1500"
- shell: >
/sbin/ifconfig eth0 mtu 1500 up
when: ansible_distribution in common_debian_variants
- lineinfile: >
dest=/etc/dhcp/dhclient.conf
regexp="^supercede interfact-mtu"
line="supercede interface-mtu 1500;"
insertbefore="^request"
when: ansible_distribution in common_debian_variants
#
# End dealing with Jumbo frames issue in mixed MTU deployements in AWS
#
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment