0

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 .

Ketul Patani
  • 101
  • 1
  • 9

1 Answers1

0

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.

Brotsalat
  • 63
  • 5