Setting tag sliver-openvswitch-2.2.90-1
[sliver-openvswitch.git] / ofproto / ofproto-dpif-unixctl.man
1 .SS "DATAPATH COMMANDS"
2 These commands manage logical datapaths.  They are are similar to the
3 equivalent \fBovs\-dpctl\fR commands.
4 .
5 .IP "\fBdpif/dump\-dps\fR"
6 Prints the name of each configured datapath on a separate line.
7 .
8 .IP "\fBdpif/show\fR"
9 Prints a summary of configured datapaths, including statistics and a
10 list of connected ports.  The port information includes the OpenFlow
11 port number, datapath port number, and the type.  (The local port is
12 identified as OpenFlow port 65534.)
13 .
14 .IP "\fBdpif/dump\-flows\fR [\fB\-m\fR] \fIdp\fR"
15 Prints to the console all flow entries in datapath \fIdp\fR's
16 flow table. Without \fB\-m\fR, output omits match fields that a flow
17 wildcards entirely; with \fB\-m\fR output includes all wildcarded fields.
18 .IP
19 This command is primarily useful for debugging Open vSwitch.  The flow
20 table entries that it displays are not OpenFlow flow entries.  Instead,
21 they are different and considerably simpler flows maintained by the
22 datapath module.  If you wish to see the OpenFlow flow entries, use
23 \fBovs\-ofctl dump\-flows\fR.
24 .
25 .IP "\fBdpif/del\-flows \fIdp\fR"
26 Deletes all flow entries from datapath \fIdp\fR's flow table and
27 underlying datapath implementation (e.g., kernel datapath module).
28 .IP
29 This command is primarily useful for debugging Open vSwitch.  As
30 discussed in \fBdpif/dump\-flows\fR, these entries are
31 not OpenFlow flow entries.