Bug 1302907
| Summary: | Correctly set MTU on vovsbr and vlinuxbr | ||
|---|---|---|---|
| Product: | OpenShift Container Platform | Reporter: | Eric Jones <erjones> |
| Component: | Networking | Assignee: | Dan Winship <danw> |
| Status: | CLOSED ERRATA | QA Contact: | Meng Bo <bmeng> |
| Severity: | medium | Docs Contact: | |
| Priority: | medium | ||
| Version: | 3.1.0 | CC: | aos-bugs, bleanhar, brubisch, eparis, mrobson, yadu |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: |
OpenShift 3.1
|
|
| Last Closed: | 2016-02-29 16:39:22 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: | |||
|
Description
Eric Jones
2016-01-28 23:34:17 UTC
os-sdn pr merged origin PR merged (https://github.com/openshift/origin/pull/7310) This is now in OSE Test on latest OSE env, bug have been fixed. [root@node1 ~]# ifconfig | grep -i mtu eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 lbr0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536 tun0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 vlinuxbr: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 vovsbr: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 Add following settings to atomic-openshift-node.service ExecStartPost=/usr/bin/sleep 10 ExecStartPost=/usr/sbin/ip link set dev vovsbr mtu 8951 ExecStartPost=/usr/sbin/ip link set dev vlinuxbr mtu 8951 [root@node1 ~]# systemctl stop atomic-openshift-node [root@node1 ~]# systemctl start atomic-openshift-node [root@node1 ~]# ifconfig | grep -i mtu eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 lbr0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 8951 lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536 tun0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 8951 vlinuxbr: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 8951 vovsbr: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 8951 Change the mtu settings in node-config.yaml, it will take effect too. networkConfig: mtu: 3450 Delete lbr0 then restart openshift-node [root@node1 ~]# ip a | grep mtu 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN 2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000 3: ovs-system: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN 5: br0: <BROADCAST,MULTICAST> mtu 3450 qdisc noop state DOWN 385: lbr0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 3450 qdisc noqueue state UP 386: vovsbr@vlinuxbr: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 3450 qdisc pfifo_fast master ovs-system state UP 387: vlinuxbr@vovsbr: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 3450 qdisc pfifo_fast master lbr0 state UP 388: tun0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 3450 qdisc noqueue state UNKNOWN Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory, and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. https://access.redhat.com/errata/RHBA-2016:0320 |