How to set MTU for nodes?

Asked by Joshua Dotson

Can anyone tell me, specifically, how to set node MTU sizes? I'm at work stoppage without this knowledge.

RE: https://bugs.launchpad.net/fuel/+bug/1340288

Question information

Language:
English Edit question
Status:
Solved
For:
Fuel for OpenStack Edit question
Assignee:
No assignee Edit question
Solved by:
Evgeny Kozhemyakin
Solved:
Last query:
Last reply:
Revision history for this message
Best Evgeny Kozhemyakin (ekozhemyakin) said :
#1

Hello, Joshua.

Thank you for launching the bug.
We are updating "Reference Architectures" guide as soon as possible.

About your case:
you can download default configuration, edit it and uploade it back
as described here
http://docs.mirantis.com/openstack/fuel/fuel-5.0/reference-architecture.html#id48
The place to set "mtu" parameter is "network_scheme:->interfaces:->eth0:->mtu:".

Below is an example:

<code>
network_scheme:
  endpoints:
    br-ex:
      IP:
      - 172.16.0.7/24
      gateway: 172.16.0.1
    br-fw-admin:
      IP:
      - 10.20.0.7/24
    br-mgmt:
      IP:
      - 192.168.0.7/24
    br-prv:
      IP: none
    br-storage:
      IP:
      - 192.168.1.6/24
  interfaces:
    eth0:
      mtu: '1234'
      L2:
        vlan_splinters: 'off'
    eth1:
      mtu: '4321'
      L2:
        vlan_splinters: 'off'
    eth2:
      L2:
        vlan_splinters: 'off'
</code>

Revision history for this message
Joshua Dotson (tns9) said :
#2

Thanks Evgeny Kozhemyakin, that solved my question.