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
I see that we can only set openflow protocols as bridge options.
// Bridge sets configuration for a bridge using the values from a BridgeOptions// struct.func (v*VSwitchSetService) Bridge(bridgestring, optionsBridgeOptions) error {
// Prepend command line arguments before expanding options slice// and appending itargs:= []string{"set", "bridge", bridge}
args=append(args, options.slice()...)
log.Println(args)
_, err:=v.v.exec(args...)
returnerr
}
Would it be possible to add another method to allow for setting something like "other-config:forward-bpdu=true", or possibly extend the BridgeOptions struct to allow 'other-options'
// BridgeOther allows for setting of non openflow BridgeOptionsfunc (v*VSwitchSetService) BridgeOther(bridgestring, optionsstring) error {
// Prepend command line arguments before expanding options string// and appending itargs:= []string{"set", "bridge", bridge}
args=append(args, options)
_, err:=v.v.exec(args...)
returnerr
}
Thanks!
The text was updated successfully, but these errors were encountered:
I see that we can only set openflow protocols as bridge options.
Would it be possible to add another method to allow for setting something like "other-config:forward-bpdu=true", or possibly extend the BridgeOptions struct to allow 'other-options'
Thanks!
The text was updated successfully, but these errors were encountered: