Bug 2134772
| Summary: | Failure configuring multiple controllers and connection-mode=out-of-band in a single transaction. | ||
|---|---|---|---|
| Product: | Red Hat Enterprise Linux Fast Datapath | Reporter: | Eelco Chaudron <echaudro> |
| Component: | openvswitch2.11 | Assignee: | Eelco Chaudron <echaudro> |
| Status: | CLOSED NOTABUG | QA Contact: | ovs-qe |
| Severity: | unspecified | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | FDP 22.C | CC: | ctrautma, i.maximets, jhsiao, ralongi |
| 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: | 2022-10-14 15:26:29 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
Eelco Chaudron
2022-10-14 09:10:56 UTC
'set controller br-int' is a syntactic sugar that can work if the bridge
has only one controller. The reason is that 'set controller' is a
direct access to database rows, it's not a vsctl wrapper like 'set-controller',
and 'Controller' table has no row corresponding to 'br-int' directly.
The full database command should be used instead:
ovs-vsctl --id=@c1 create controller target='"tcp:127.0.0.1:6633"' connection-mode=out-of-band -- \
--id=@c2 create controller target='"tcp:127.0.0.1:6644"' connection-mode=out-of-band -- \
add bridge test-br controller @c1 @c2
Closing as this is not a problem :) |