| Summary: | Physical interface is not bringed up | ||||||||
|---|---|---|---|---|---|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Pavel Zhukov <pzhukov> | ||||||
| Component: | openvswitch | Assignee: | Flavio Leitner <fleitner> | ||||||
| Status: | CLOSED NOTABUG | QA Contact: | Fedora Extras Quality Assurance <extras-qa> | ||||||
| Severity: | unspecified | Docs Contact: | |||||||
| Priority: | unspecified | ||||||||
| Version: | 19 | CC: | chrisw, fleitner, markmc, nobody, pzhukov, tgraf | ||||||
| Target Milestone: | --- | ||||||||
| Target Release: | --- | ||||||||
| Hardware: | Unspecified | ||||||||
| OS: | Unspecified | ||||||||
| Whiteboard: | |||||||||
| Fixed In Version: | Doc Type: | Bug Fix | |||||||
| Doc Text: | Story Points: | --- | |||||||
| Clone Of: | Environment: | ||||||||
| Last Closed: | 2013-10-02 13:57:58 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: | |||||||
| Attachments: |
|
||||||||
|
Description
Pavel Zhukov
2013-09-20 07:22:46 UTC
Created attachment 800325 [details]
/etc/sysconfig/network-scripts/
Created attachment 800326 [details]
journald output
The problem happens because the OVS bridge isn't configured properly. You uploaded this: $ cat ifcfg-obr0 DEVICE=obr0 ONBOOT=yes DEVICETYPE=ovs TYPE=OVSBridge BOOTPROTO=dhcp HOTPLUG=no But OVS Bridge doesn't use BOOTPROTO and requires OVSDHCPINTERFACES. To enable DHCP on the bridge you need to use OVSBOOTPROTO instead of BOOTPROTO, and all the interfaces that can reach the DHCP server as a space separated list in OVSDHCPINTERFACES. In your case, it would be like below: DEVICE=obr0 ONBOOT=yes DEVICETYPE=ovs TYPE=OVSBridge HOTPLUG=no OVSBOOTPROTO="dhcp" OVSDHCPINTERFACES="p3p1" The other file ifcfg-p3p1 looks good to me. Could you see if fixing ifcfg-obr0 fixes the problem? Thanks! Pavel, I am going to close this bug since I think the problem is just a misconfiguration. If you think otherwise, feel free to reopen it. Thanks (In reply to Flavio Leitner from comment #4) > Pavel, > > I am going to close this bug since I think the problem is just a > misconfiguration. If you think otherwise, feel free to reopen it. > > Thanks Sorry for the last response. I've checked the configuration right now. It works. Thank you! |