d84b4819be92cdb09eb9a776172ae0c695503f95
[sliver-openvswitch.git] / utilities / ovs-ofctl.8.in
1 .\" -*- nroff -*-
2 .de IQ
3 .  br
4 .  ns
5 .  IP "\\$1"
6 ..
7 .TH ovs\-ofctl 8 "January 2010" "Open vSwitch" "Open vSwitch Manual"
8 .ds PN ovs\-ofctl
9 .
10 .SH NAME
11 ovs\-ofctl \- administer OpenFlow switches
12 .
13 .SH SYNOPSIS
14 .B ovs\-ofctl
15 [\fIoptions\fR] \fIcommand \fR[\fIswitch\fR] [\fIargs\fR\&...]
16 .
17 .SH DESCRIPTION
18 The
19 .B ovs\-ofctl
20 program is a command line tool for monitoring and administering
21 OpenFlow switches.  It can also show the current state of an OpenFlow
22 switch, including features, configuration, and table entries.
23 .
24 .SS "OpenFlow Switch Management Commands"
25 .PP
26 These commands allow \fBovs\-ofctl\fR to monitor and administer an OpenFlow
27 switch.  It is able to show the current state of a switch, including
28 features, configuration, and table entries.
29 .PP
30 Most of these commands take an argument that specifies the method for
31 connecting to an OpenFlow switch.  The following connection methods
32 are supported:
33 .
34 .RS
35 .so lib/vconn-active.man
36 .
37 .IP "\fIfile\fR"
38 This is short for \fBunix:\fIfile\fR, as long as \fIfile\fR does not
39 contain a colon.
40 .
41 .IP \fIbridge\fR
42 This is short for \fBunix:@RUNDIR@/\fIbridge\fB.mgmt\fR, as long as
43 \fIbridge\fR does not contain a colon.
44 .
45 .IP [\fItype\fB@\fR]\fIdp\fR
46 Attempts to look up the bridge associated with \fIdp\fR and open as
47 above.  If \fItype\fR is given, it specifies the datapath provider of
48 \fIdp\fR, otherwise the default provider \fBsystem\fR is assumed.
49 .RE
50 .
51 .TP
52 \fBshow \fIswitch\fR
53 Prints to the console information on \fIswitch\fR, including
54 information on its flow tables and ports.
55 .
56 .TP
57 \fBstatus \fIswitch\fR [\fIkey\fR]
58 Prints to the console a series of key-value pairs that report the
59 status of \fIswitch\fR.  If \fIkey\fR is specified, only the key-value
60 pairs whose key names begin with \fIkey\fR are printed.  If \fIkey\fR is
61 omitted, all key-value pairs are printed.
62 .
63 .TP
64 \fBdump-tables \fIswitch\fR
65 Prints to the console statistics for each of the flow tables used by
66 \fIswitch\fR.
67 .
68 .TP
69 \fBdump-ports \fIswitch\fR [\fInetdev\fR]
70 Prints to the console statistics for network devices associated with 
71 \fIswitch\fR.  If \fInetdev\fR is specified, only the statistics
72 associated with that device will be printed.  \fInetdev\fR can be an
73 OpenFlow assigned port number or device name, e.g. \fBeth0\fR.
74 .
75 .TP
76 \fBmod-port \fIswitch\fR \fInetdev\fR \fIaction\fR
77 Modify characteristics of an interface monitored by \fIswitch\fR.  
78 \fInetdev\fR can be referred to by its OpenFlow assigned port number or 
79 the device name, e.g. \fBeth0\fR.  The \fIaction\fR may be any one of the
80 following:
81 .
82 .RS
83 .IP \fBup\fR
84 Enables the interface.  This is equivalent to ``ifconfig up'' on a Unix
85 system.
86 .
87 .IP \fBdown\fR
88 Disables the interface.  This is equivalent to ``ifconfig down'' on a Unix
89 system.
90 .
91 .IP \fBflood\fR
92 When a \fIflood\fR action is specified, traffic will be sent out this
93 interface.  This is the default posture for monitored ports.
94 .
95 .IP \fBnoflood\fR
96 When a \fIflood\fR action is specified, traffic will not be sent out 
97 this interface.  This is primarily useful to prevent loops when a
98 spanning tree protocol is not in use.
99 .
100 .RE
101 .
102 .TP
103 \fBdump-flows \fIswitch \fR[\fIflows\fR]
104 Prints to the console all flow entries in \fIswitch\fR's
105 tables that match \fIflows\fR.  If \fIflows\fR is omitted, all flows
106 in the switch are retrieved.  See \fBFlow Syntax\fR, below, for the
107 syntax of \fIflows\fR.  The output format is described in 
108 \fBTable Entry Output\fR.
109 .
110 .TP
111 \fBdump-aggregate \fIswitch \fR[\fIflows\fR]
112 Prints to the console aggregate statistics for flows in 
113 \fIswitch\fR's tables that match \fIflows\fR.  If \fIflows\fR is omitted, 
114 the statistics are aggregated across all flows in the switch's flow
115 tables.  See \fBFlow Syntax\fR, below, for the syntax of \fIflows\fR.
116 The output format is descrbed in \fBTable Entry Output\fR.
117 .
118 .TP
119 \fBadd-flow \fIswitch flow\fR
120 Add the flow entry as described by \fIflow\fR to the \fIswitch\fR's 
121 tables.  The flow entry is in the format described in \fBFlow Syntax\fR, 
122 below.
123 .
124 .TP
125 \fBadd-flows \fIswitch file\fR
126 Add flow entries as described in \fIfile\fR to \fIswitch\fR's 
127 tables.  Each line in \fIfile\fR is a flow entry in the format
128 described in \fBFlow Syntax\fR, below.
129 .
130 .TP
131 \fBmod-flows \fIswitch flow\fR
132 Modify the actions in entries from the \fIswitch\fR's tables 
133 that match \fIflow\fR.  When invoked with the \fB--strict\fR option,
134 wildcards are not treated as active for matching purposes.  See 
135 \fBFlow Syntax\fR, below, for the syntax of \fIflows\fR.
136 .
137 .TP
138 \fBdel-flows \fIswitch \fR[\fIflow\fR]
139 Deletes entries from the \fIswitch\fR's tables that match
140 \fIflow\fR.  When invoked with the \fB--strict\fR option, wildcards are 
141 not treated as active for matching purposes.  If \fIflow\fR is 
142 omitted and the \fB--strict\fR option is not used, all flows in the 
143 switch's tables are removed.  See \fBFlow Syntax\fR, below, for the 
144 syntax of \fIflows\fR.
145 .
146 .IP "\fBsnoop \fIswitch\fR"
147 Connects to \fIswitch\fR and prints to the console all OpenFlow
148 messages received.  Unlike other \fBovs\-ofctl\fR commands, if
149 \fIswitch\fR is the name of a bridge, then the \fBsnoop\fR command
150 connects to a Unix domain socket named
151 \fB@RUNDIR@/\fIbridge\fB.snoop\fR.  \fBovs\-vswitchd\fR listens on
152 such a socket for each bridge and sends to it all of the OpenFlow
153 messages sent to or received from its configured OpenFlow controller.
154 Thus, this command can be used to view OpenFlow protocol activity
155 between a switch and its controller.
156 .IP
157 When a switch has more than one controller configured, only the
158 protocol to and from a single controller, chosen arbitrarily by Open
159 vSwitch, is given.  If a switch has no controller configured, or if
160 the configured controller is disconnected, no traffic is sent, so
161 monitoring will not show any traffic.
162 .
163 .IQ "\fBmonitor \fIswitch\fR [\fImiss-len\fR]"
164 Connects to \fIswitch\fR and prints to the console all OpenFlow
165 messages received.  Usually, \fIswitch\fR should specify a connection
166 named on \fBovs\-openflowd\fR(8)'s \fB-l\fR or \fB--listen\fR command line
167 option.
168 .IP
169 If \fImiss-len\fR is provided, \fBovs\-ofctl\fR sends an OpenFlow ``set
170 configuration'' message at connection setup time that requests
171 \fImiss-len\fR bytes of each packet that misses the flow table.  Open vSwitch
172 does not send these and other asynchronous messages to an
173 \fBovs\-ofctl monitor\fR client connection unless a nonzero value is
174 specified on this argument.  (Thus, if \fImiss\-len\fR is not
175 specified, very little traffic will ordinarily be printed.)
176 .IP
177 This command may be useful for debugging switch or controller
178 implementations.
179 .
180 .SS "OpenFlow Switch and Controller Commands"
181 .
182 The following commands, like those in the previous section, may be
183 applied to OpenFlow switches, using any of the connection methods
184 described in that section.  Unlike those commands, these may also be
185 applied to OpenFlow controllers.
186 .
187 .TP
188 \fBprobe \fItarget\fR
189 Sends a single OpenFlow echo-request message to \fItarget\fR and waits
190 for the response.  With the \fB-t\fR or \fB--timeout\fR option, this
191 command can test whether an OpenFlow switch or controller is up and
192 running.
193 .
194 .TP
195 \fBping \fItarget \fR[\fIn\fR]
196 Sends a series of 10 echo request packets to \fItarget\fR and times
197 each reply.  The echo request packets consist of an OpenFlow header
198 plus \fIn\fR bytes (default: 64) of randomly generated payload.  This
199 measures the latency of individual requests.
200 .
201 .TP
202 \fBbenchmark \fItarget n count\fR
203 Sends \fIcount\fR echo request packets that each consist of an
204 OpenFlow header plus \fIn\fR bytes of payload and waits for each
205 response.  Reports the total time required.  This is a measure of the
206 maximum bandwidth to \fItarget\fR for round-trips of \fIn\fR-byte
207 messages.
208 .
209 .SS "Flow Syntax"
210 .PP
211 Some \fBovs\-ofctl\fR commands accept an argument that describes a flow or
212 flows.  Such flow descriptions comprise a series
213 \fIfield\fB=\fIvalue\fR assignments, separated by commas or white
214 space.  (Embedding spaces into a flow description normally requires
215 quoting to prevent the shell from breaking the description into
216 multiple arguments.)
217 .PP
218 The following field assignments describe how a flow matches a packet.
219 If any of these assignments is omitted from the flow syntax, the field
220 is treated as a wildcard; thus, if all of them are omitted, the
221 resulting flow matches all packets.  The string \fB*\fR or \fBANY\fR
222 may be specified to explicitly mark any of these fields as a wildcard.  
223 (\fB*\fR should be quoted to protect it from shell expansion.)
224 .
225 .IP \fBin_port=\fIport_no\fR
226 Matches physical port \fIport_no\fR.  Switch ports are numbered as
227 displayed by \fBovs\-ofctl show\fR.
228 .
229 .IP \fBdl_vlan=\fIvlan\fR
230 Matches IEEE 802.1q Virtual LAN tag \fIvlan\fR.  Specify \fB0xffff\fR
231 as \fIvlan\fR to match packets that are not tagged with a Virtual LAN;
232 otherwise, specify a number between 0 and 4095, inclusive, as the
233 12-bit VLAN ID to match.
234 .
235 .IP \fBdl_vlan_pcp=\fIpriority\fR
236 Matches IEEE 802.1q Priority Code Point (PCP) \fIpriority\fR, which is
237 specified as a value between 0 and 7, inclusive.  A higher value
238 indicates a higher frame priority level.
239 .
240 .IP \fBdl_src=\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fR
241 .IQ \fBdl_dst=\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fR
242 Matches an Ethernet source (or destination) address specified as 6
243 pairs of hexadecimal digits delimited by colons
244 (e.g. \fB00:0A:E4:25:6B:B0\fR).
245 .
246 .IP \fBdl_type=\fIethertype\fR
247 Matches Ethernet protocol type \fIethertype\fR, which is specified as an
248 integer between 0 and 65535, inclusive, either in decimal or as a 
249 hexadecimal number prefixed by \fB0x\fR (e.g. \fB0x0806\fR to match ARP 
250 packets).
251 .
252 .IP \fBnw_src=\fIip\fR[\fB/\fInetmask\fR]
253 .IQ \fBnw_dst=\fIip\fR[\fB/\fInetmask\fR]
254 When \fBdl_type\fR is 0x0800 (possibly via shorthand, e.g. \fBip\fR
255 or \fBtcp\fR), matches IPv4 source (or destination) address \fIip\fR,
256 which may be specified as an IP address or host name
257 (e.g. \fB192.168.1.1\fR or \fBwww.example.com\fR).  The optional
258 \fInetmask\fR allows restricting a match to an IPv4 address prefix.
259 The netmask may be specified as a dotted quad
260 (e.g. \fB192.168.1.0/255.255.255.0\fR) or as a CIDR block
261 (e.g. \fB192.168.1.0/24\fR).
262 .IP
263 When \fBdl_type=0x0806\fR or \fBarp\fR is specified, matches the
264 \fBar_spa\fR or \fBar_tpa\fR field, respectively, in ARP packets for
265 IPv4 and Ethernet.
266 .IP
267 When \fBdl_type\fR is wildcarded or set to a value other than 0x0800
268 or 0x0806, the values of \fBnw_src\fR and \fBnw_dst\fR are silently
269 ignored.
270 .
271 .IP \fBnw_proto=\fIproto\fR
272 When \fBip\fR or \fBdl_type=0x0800\fR is specified, matches IP
273 protocol type \fIproto\fR, which is specified as a decimal number
274 between 0 and 255, inclusive (e.g. 6 to match TCP packets).
275 .IP
276 When \fBarp\fR or \fBdl_type=0x0806\fR is specified, matches the lower
277 8 bits of the ARP opcode.  ARP opcodes greater than 255 are treated as
278 0.
279 .IP
280 When \fBdl_type\fR is wildcarded or set to a value other than 0x0800
281 or 0x0806, the value of \fBnw_proto\fR is silently ignored.
282 .
283 .IP \fBnw_tos=\fItos\fR
284 Matches IP ToS/DSCP field \fItos\fR, which is specified as a decimal 
285 number between 0 and 255, inclusive.  Note that the two lower reserved
286 bits are ignored for matching purposes.
287 .IP
288 The value of \fBnw_proto\fR is silently ignored unless
289 \fBdl_type=0x0800\fR, \fBip\fR, \fBicmp\fR, \fBtcp\fR, or \fBudp\fR is
290 also specified.
291 .
292 .IP \fBtp_src=\fIport\fR
293 .IQ \fBtp_dst=\fIport\fR
294 When \fBdl_type\fR and \fBnw_proto\fR specify TCP or UDP, \fBtp_src\fR
295 and \fBtp_dst\fR match the UDP or TCP source or destination port
296 \fIport\fR, respectively. which is specified as a decimal number
297 between 0 and 65535, inclusive (e.g. 80 to match packets originating
298 from a HTTP server).
299 .IP
300 When \fBdl_type\fR and \fBnw_proto\fR take other values, the values of
301 these settings are silently ignored.
302 .
303 .IP \fBicmp_type=\fItype\fR
304 .IQ \fBicmp_code=\fIcode\fR
305 When \fBdl_type\fR and \fBnw_proto\fR specify ICMP, \fItype\fR matches
306 the ICMP type and \fIcode\fR matches the ICMP code.  Each is specified
307 as a decimal number between 0 and 255, inclusive.
308 .IP
309 When \fBdl_type\fR and \fBnw_proto\fR take other values, the values of
310 these settings are silently ignored.
311 .
312 .PP
313 The following shorthand notations are also available:
314 .
315 .IP \fBip\fR
316 Same as \fBdl_type=0x0800\fR.
317 .
318 .IP \fBicmp\fR
319 Same as \fBdl_type=0x0800,nw_proto=1\fR.
320 .
321 .IP \fBtcp\fR
322 Same as \fBdl_type=0x0800,nw_proto=6\fR.
323 .
324 .IP \fBudp\fR
325 Same as \fBdl_type=0x0800,nw_proto=17\fR.
326 .
327 .IP \fBarp\fR
328 Same as \fBdl_type=0x0806\fR.
329 .
330 .PP
331 The \fBadd-flow\fR and \fBadd-flows\fR commands require an additional
332 field, which must be the final field specified:
333 .
334 .IP \fBactions=\fR[\fItarget\fR][\fB,\fItarget\fR...]\fR
335 Specifies a comma-separated list of actions to take on a packet when the 
336 flow entry matches.  If no \fItarget\fR is specified, then packets
337 matching the flow are dropped.  The \fItarget\fR may be a decimal port 
338 number designating the physical port on which to output the packet, or one 
339 of the following keywords:
340 .
341 .RS
342 .IP \fBoutput\fR:\fIport\fR
343 Outputs the packet on the port specified by \fIport\fR.
344 .
345 .IP \fBnormal\fR
346 Subjects the packet to the device's normal L2/L3 processing.  (This
347 action is not implemented by all OpenFlow switches.)
348 .
349 .IP \fBflood\fR
350 Outputs the packet on all switch physical ports other than the port on
351 which it was received and any ports on which flooding is disabled
352 (typically, these would be ports disabled by the IEEE 802.1D spanning
353 tree protocol).
354 .
355 .IP \fBall\fR
356 Outputs the packet on all switch physical ports other than the port on
357 which it was received.
358 .
359 .IP \fBcontroller\fR:\fImax_len\fR
360 Sends the packet to the OpenFlow controller as a ``packet in''
361 message.  If \fImax_len\fR is a number, then it specifies the maximum
362 number of bytes that should be sent.  If \fImax_len\fR is \fBALL\fR or
363 omitted, then the entire packet is sent.
364 .
365 .IP \fBlocal\fR
366 Outputs the packet on the ``local port,'' which corresponds to the
367 \fBof\fIn\fR network device (see \fBCONTACTING THE CONTROLLER\fR in
368 \fBovs\-openflowd\fR(8) for information on the \fBof\fIn\fR network device).
369 .
370 .IP \fBdrop\fR
371 Discards the packet, so no further processing or forwarding takes place.
372 If a drop action is used, no other actions may be specified.
373 .
374 .IP \fBmod_vlan_vid\fR:\fIvlan_vid\fR
375 Modifies the VLAN id on a packet.  The VLAN tag is added or modified 
376 as necessary to match the value specified.  If the VLAN tag is added,
377 a priority of zero is used (see the \fBmod_vlan_pcp\fR action to set
378 this).
379 .
380 .IP \fBmod_vlan_pcp\fR:\fIvlan_pcp\fR
381 Modifies the VLAN priority on a packet.  The VLAN tag is added or modified 
382 as necessary to match the value specified.  Valid values are between 0
383 (lowest) and 7 (highest).  If the VLAN tag is added, a vid of zero is used 
384 (see the \fBmod_vlan_vid\fR action to set this).
385 .
386 .IP \fBstrip_vlan\fR
387 Strips the VLAN tag from a packet if it is present.
388 .
389 .IP \fBmod_dl_src\fB:\fImac\fR
390 Sets the source Ethernet address to \fImac\fR.
391 .
392 .IP \fBmod_dl_dst\fB:\fImac\fR
393 Sets the destination Ethernet address to \fImac\fR.
394 .
395 .IP \fBmod_nw_src\fB:\fIip\fR
396 Sets the IPv4 source address to \fIip\fR.
397 .
398 .IP \fBmod_nw_dst\fB:\fIip\fR
399 Sets the IPv4 destination address to \fIip\fR.
400 .
401 .IP \fBmod_tp_src\fB:\fIport\fR
402 Sets the TCP or UDP source port to \fIport\fR.
403 .
404 .IP \fBmod_tp_dst\fB:\fIport\fR
405 Sets the TCP or UDP destination port to \fIport\fR.
406 .
407 .IP \fBmod_nw_tos\fB:\fItos\fR
408 Sets the IP ToS/DSCP field to \fItos\fR.  Valid values are between 0 and
409 255, inclusive.  Note that the two lower reserved bits are never
410 modified.
411 .
412 .RE
413 .IP
414 The following actions are Nicira vendor extensions that, as of this writing, are
415 only known to be implemented by Open vSwitch:
416 .
417 .RS
418 .
419 .IP \fBresubmit\fB:\fIport\fR
420 Re-searches the OpenFlow flow table with the \fBin_port\fR field
421 replaced by \fIport\fR and executes the actions found, if any, in
422 addition to any other actions in this flow entry.  Recursive
423 \fBresubmit\fR actions are ignored.
424 .
425 .IP \fBset_tunnel\fB:\fIid\fR
426 If outputting to a port that encapsulates the packet in a tunnel and supports
427 an identifier (such as GRE), sets the identifier to \fBid\fR.
428 .
429 .RE
430 .
431 .IP
432 (The OpenFlow protocol supports other actions that \fBovs\-ofctl\fR does
433 not yet expose to the user.)
434 .
435 .PP
436 The \fBadd\-flow\fR, \fBadd\-flows\fR, and \fBmod\-flows\fR commands
437 support an additional optional field:
438 .
439 .IP \fBcookie=\fIvalue\fR
440 .
441 A cookie is an opaque identifier that can be associated with the flow.
442 \fIvalue\fR can be any 64-bit number and need not be unique among
443 flows.
444 .
445 .PP
446 The \fBadd-flow\fR, \fBadd-flows\fR, and \fBdel-flows\fR commands
447 support an additional optional field:
448 .
449 .IP \fBpriority=\fIvalue\fR
450 The priority at which a wildcarded entry will match in comparison to
451 others.  \fIvalue\fR is a number between 0 and 65535, inclusive.  A higher 
452 \fIvalue\fR will match before a lower one.  An exact-match entry will always 
453 have priority over an entry containing wildcards, so it has an implicit 
454 priority value of 65535.  When adding a flow, if the field is not specified, 
455 the flow's priority will default to 32768.
456 .
457 .PP
458 The \fBadd-flow\fR and \fBadd-flows\fR commands support additional
459 optional fields:
460 .
461 .TP
462 \fBidle_timeout=\fIseconds\fR
463 Causes the flow to expire after the given number of seconds of
464 inactivity.  A value of 0 prevents a flow from expiring due to
465 inactivity.  The default is 60 seconds.
466 .
467 .IP \fBhard_timeout=\fIseconds\fR
468 Causes the flow to expire after the given number of seconds,
469 regardless of activity.  A value of 0 (the default) gives the flow no
470 hard expiration deadline.
471 .
472 .PP
473 The \fBdump-flows\fR, \fBdump-aggregate\fR, \fBdel-flow\fR 
474 and \fBdel-flows\fR commands support one additional optional field:
475 .
476 .TP
477 \fBout_port=\fIport\fR
478 If set, a matching flow must include an output action to \fIport\fR.
479 .
480 .PP
481 The \fBdump-flows\fR and \fBdump-aggregate\fR commands support an
482 additional optional field:
483 .
484 .IP \fBtable=\fInumber\fR
485 If specified, limits the flows about which statistics are gathered to
486 those in the table with the given \fInumber\fR.  Tables are numbered
487 as shown by the \fBdump-tables\fR command.
488 .
489 If this field is not specified, or if \fInumber\fR is given as
490 \fB255\fR, statistics are gathered about flows from all tables.
491 .
492 .SS "Table Entry Output"
493 .
494 The \fBdump-tables\fR and \fBdump-aggregate\fR commands print information 
495 about the entries in a datapath's tables.  Each line of output is a 
496 unique flow entry, which begins with some common information:
497 .
498 .IP \fBduration\fR
499 The number of seconds the entry has been in the table.
500 .
501 .IP \fBtable_id\fR
502 The table that contains the flow.  When a packet arrives, the switch 
503 begins searching for an entry at the lowest numbered table.  Tables are 
504 numbered as shown by the \fBdump-tables\fR command.
505 .
506 .IP \fBpriority\fR
507 The priority of the entry in relation to other entries within the same
508 table.  A higher value will match before a lower one.
509 .
510 .IP \fBn_packets\fR
511 The number of packets that have matched the entry.
512 .
513 .IP \fBn_bytes\fR
514 The total number of bytes from packets that have matched the entry.
515 .
516 .PP
517 The rest of the line consists of a description of the flow entry as 
518 described in \fBFlow Syntax\fR, above.
519 .
520 .
521 .SH OPTIONS
522 .TP
523 \fB--strict\fR
524 Uses strict matching when running flow modification commands.
525 .
526 .SS "Public Key Infrastructure Options"
527 .so lib/ssl.man
528 .so lib/vlog.man
529 .so lib/common.man
530 .
531 .SH EXAMPLES
532 .
533 The following examples assume that an OpenFlow switch on the local
534 host has been configured to listen for management connections on a
535 Unix domain socket named \fB@RUNDIR@/openflow.sock\fR, e.g. by
536 specifying \fB--listen=punix:@RUNDIR@/openflow.sock\fR on the
537 \fBovs\-openflowd\fR(8) command line.
538 .
539 .TP
540 \fBovs\-ofctl dump-tables unix:@RUNDIR@/openflow.sock\fR
541 Prints out the switch's table stats.  (This is more interesting after
542 some traffic has passed through.)
543 .
544 .TP
545 \fBovs\-ofctl dump-flows unix:@RUNDIR@/openflow.sock\fR
546 Prints the flow entries in the switch.
547 .
548 .SH "SEE ALSO"
549 .
550 .BR ovs\-appctl (8),
551 .BR ovs\-controller (8),
552 .BR ovs\-vswitchd (8)