0
votes

What is the difference between these two OpenvSwitch commands?
ovs-vsctl add-br br0 -- set bridge br0 datapath_type=netdev & ovs-vsctl add-br br0 .

1

1 Answers

0
votes

The first command sets the bridge to userspace-only mode. The second command does the default setup for the bridge.

More information can be found here.