You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
it is impossible to set the OVS bridge to protocols=OpenFlow13 using ovs-vsctl before launching clab. We can set the protocol version after clab is launched. But this complicates automation scripts. It would be nice to get that fixed.
The solution is to change the parameters of the connection that the ovs library creates.
It should be as easy as doing client := ovs.New(goOvs.Sudo(), ovs.FlowFormat("OXM-OpenFlow15"), ovs.Protocols("OpenFlow15"))
Then the client would support all bridge versions up to 1.5
I have not tried this yet but I'm working on something to be able to test with 1.0 and all versions to 1.5. Once I can confirm the solution works, I can submit a PR.
The text was updated successfully, but these errors were encountered:
it is impossible to set the OVS bridge to protocols=OpenFlow13 using ovs-vsctl before launching clab. We can set the protocol version after clab is launched. But this complicates automation scripts. It would be nice to get that fixed.
The solution is to change the parameters of the connection that the ovs library creates.
It should be as easy as doing
client := ovs.New(goOvs.Sudo(), ovs.FlowFormat("OXM-OpenFlow15"), ovs.Protocols("OpenFlow15"))
Then the client would support all bridge versions up to 1.5
I have not tried this yet but I'm working on something to be able to test with 1.0 and all versions to 1.5. Once I can confirm the solution works, I can submit a PR.
The text was updated successfully, but these errors were encountered: