Commit 2b911ad6 by Edward Zarecor

Explicitly set MTU for interfaces to avoid jumbo frame bug.

typo
parent d01bfcd5
......@@ -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