Bug 1644941
Summary: | Problems enabling jumbo frames | ||||||
---|---|---|---|---|---|---|---|
Product: | Red Hat OpenStack | Reporter: | Lars Kellogg-Stedman <lars> | ||||
Component: | rhosp-director | Assignee: | RHOS Maint <rhos-maint> | ||||
Status: | CLOSED NOTABUG | QA Contact: | Gurenko Alex <agurenko> | ||||
Severity: | unspecified | Docs Contact: | |||||
Priority: | unspecified | ||||||
Version: | 13.0 (Queens) | CC: | beagles, bfournie, dbecker, dsneddon, jslagle, jtaleric, mburns, morazi | ||||
Target Milestone: | --- | ||||||
Target Release: | --- | ||||||
Hardware: | Unspecified | ||||||
OS: | Unspecified | ||||||
Whiteboard: | |||||||
Fixed In Version: | Doc Type: | If docs needed, set a value | |||||
Doc Text: | Story Points: | --- | |||||
Clone Of: | Environment: | ||||||
Last Closed: | 2018-11-12 15:24:57 UTC | Type: | Bug | ||||
Regression: | --- | Mount Type: | --- | ||||
Documentation: | --- | CRM: | |||||
Verified Versions: | Category: | --- | |||||
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||
Cloudforms Team: | --- | Target Upstream Version: | |||||
Embargoed: | |||||||
Attachments: |
|
Description
Lars Kellogg-Stedman
2018-11-01 01:37:46 UTC
Templates and environment files are all available at: https://github.com/CCI-MOC/rhosp-director-config/tree/new-kaizen The initial deploy command is: https://github.com/CCI-MOC/rhosp-director-config/blob/new-kaizen/overcloud-deploy.sh Network configs are in: https://github.com/CCI-MOC/rhosp-director-config/tree/new-kaizen/templates/network/config Including networking DFG There is a specific setting that allows you to override the global_physnet_mtu for a specific bridge. For example:: parameter_defaults: NeutronGlobalPhysnetMtu: 9000 NeutronML2PhysicalNetworkMtus: [br-ex:1500] You could even do: parameter_defaults: NeutronML2PhysicalNetworkMtus: [br-ex:1500,br-tenant:9000] But that said, I don't think the br-int and br-tun MTUs matter in this case. If I'm not mistaken, OVS bridges will actually pass larger frames, and the indicated MTU in "ip addr" only applies if you were to put an IP on br-int or br-tun and generate traffic from that IP, the traffic would be limited to 1500 MTU. Just passing traffic between bridges entirely inside OVS shouldn't be limited to a lower MTU to the best of my knowledge. I've made the MTU explicit on all of our NIC configs. This seems to have solved the issue with the erroneous MTU on br-ex. Despite the odd-looking MTUs on the OVS bridges, we are able to pass jumbo frames between instances on different networks so I think this is resolved from our perspective. Thanks Dan and Lars. Closing this out. |