On Mon, Feb 04, 2013 at 10:03:44AM +0530, john paul wrote:
>            I am trying to add flags like  --may-exist when adding a bridge
> with the same name
>  i used instruction like this
> 
> ovs-vsctl add-br br0
> 
> ovs-vsctl add-port br eth0
> 
> ovs-vsctl --may-exist add-br br0
> 
> then it will send me an error that unrecognised option i check the value of
> flage in program ovs-vsctl.c it is 0

ovs-vsctl is part of Open vSwitch so ovs-discuss would be a better place
to ask this question.

The problem is that you need to add -- to separate global and
command-specific options:

    ovs-vsctl -- --may-exist add-br br0

This is confusing, although it's documented, so we've fixed it in the
very latest version of Open vSwitch.
_______________________________________________
openflow-discuss mailing list
openflow-discuss@lists.stanford.edu
https://mailman.stanford.edu/mailman/listinfo/openflow-discuss

Reply via email to