]> git.proxmox.com Git - mirror_ovs.git/blame - ofproto/ofproto-dpif-unixctl.man
dpctl: Fix usage for most dpctl commands.
[mirror_ovs.git] / ofproto / ofproto-dpif-unixctl.man
CommitLineData
fceef209
DDP
1.SS "DATAPATH DEBUGGING COMMANDS"
2These commands query and modify datapaths. They are are similar to
3\fBovs\-dpctl\fR(8) commands. \fBdpif/show\fR has the additional
4functionality, beyond \fBdpctl/show\fR of printing OpenFlow port
5numbers. The other commands are redundant and will be removed in a
6future release.
27022416
JP
7.
8.IP "\fBdpif/dump\-dps\fR"
9Prints the name of each configured datapath on a separate line.
10.
dc54ef36 11.IP "\fBdpif/show\fR"
27022416
JP
12Prints a summary of configured datapaths, including statistics and a
13list of connected ports. The port information includes the OpenFlow
14port number, datapath port number, and the type. (The local port is
15identified as OpenFlow port 65534.)
27022416 16.
04b541df 17.IP "\fBdpif/dump\-flows\fR [\fB\-m\fR] \fIdp\fR"
27022416 18Prints to the console all flow entries in datapath \fIdp\fR's
04b541df
GS
19flow table. Without \fB\-m\fR, output omits match fields that a flow
20wildcards entirely; with \fB\-m\fR output includes all wildcarded fields.
27022416
JP
21.IP
22This command is primarily useful for debugging Open vSwitch. The flow
23table entries that it displays are not OpenFlow flow entries. Instead,
24they are different and considerably simpler flows maintained by the
25datapath 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"
29Deletes all flow entries from datapath \fIdp\fR's flow table and
30underlying datapath implementation (e.g., kernel datapath module).
31.IP
32This command is primarily useful for debugging Open vSwitch. As
33discussed in \fBdpif/dump\-flows\fR, these entries are
34not OpenFlow flow entries.