ofproto-dpif: Add ovs-appctl commands for ovs-dpctl functions.
[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 [\fIdp\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 .IP
14 If one or more datapaths are specified, information on only those
15 datapaths are displayed.  Otherwise, information about all configured
16 datapaths are shown.
17 .
18 .IP "\fBdpif/dump\-flows \fIdp\fR"
19 Prints to the console all flow entries in datapath \fIdp\fR's
20 flow table.
21 .IP
22 This command is primarily useful for debugging Open vSwitch.  The flow
23 table entries that it displays are not OpenFlow flow entries.  Instead,
24 they are different and considerably simpler flows maintained by the
25 datapath module.  If you wish to see the OpenFlow flow entries, use
26 \fBovs\-ofctl dump\-flows\fR.
27 .
28 .IP "\fBdpif/del\-flows \fIdp\fR"
29 Deletes all flow entries from datapath \fIdp\fR's flow table and
30 underlying datapath implementation (e.g., kernel datapath module).
31 .IP
32 This command is primarily useful for debugging Open vSwitch.  As
33 discussed in \fBdpif/dump\-flows\fR, these entries are
34 not OpenFlow flow entries.