On Mon, Feb 11, 2013 at 06:51:25PM +0000, Rafael Gomes wrote: > First for example, the command ovs-vswitched flow_table, i guess > don't work because appear this messages in console:
This command does not make sense. What led you to believe that this was a reasonable command to run? > Other example is the command ovs-dpctl dump-flows br0, the error > message is ovs-dctl: opening datapath (No such device)... This is undoubtedly because you have not started or configured ovs-vswitchd correctly or, if you are running 1.10 or later, that there will not be a datapath named br0 even if you create a bridge by that name. > ovsdb-server --remote=punix:/usr/local/var/run/openvswitch/db.sock \ > --remote=db:Open_vSwitch,manager_options \ > --private-key=db:SSL,private_key \ > --certificate=db:SSL,certificate \ > --bootstrap-ca-cert=db:SSL,ca_cert \ > --pidfile --detach & The & is unnecessary and generally should not be used along with --detach. > ovs-vswitchd --pidfile –detach The "–" character you have there is some high-numbered Unicode character. It is not the same as "--" (two hyphens). > ovs-vsctl add-br br0 > ovs-vsctl set bridge br0 datapath_type=netdev If you are using the "userspace datapath" (datapath_type=netdev), then ovs-dpctl will not do anything useful. _______________________________________________ discuss mailing list [email protected] http://openvswitch.org/mailman/listinfo/discuss
