ovs-ofctl: Clarify in_port in manpage.
[cascardo/ovs.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 2011" "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 \fBdump\-tables \fIswitch\fR
58 Prints to the console statistics for each of the flow tables used by
59 \fIswitch\fR.
60 .
61 .TP
62 \fBdump\-ports \fIswitch\fR [\fInetdev\fR]
63 Prints to the console statistics for network devices associated with 
64 \fIswitch\fR.  If \fInetdev\fR is specified, only the statistics
65 associated with that device will be printed.  \fInetdev\fR can be an
66 OpenFlow assigned port number or device name, e.g. \fBeth0\fR.
67 .
68 .TP
69 \fBmod\-port \fIswitch\fR \fInetdev\fR \fIaction\fR
70 Modify characteristics of an interface monitored by \fIswitch\fR.  
71 \fInetdev\fR can be referred to by its OpenFlow assigned port number or 
72 the device name, e.g. \fBeth0\fR.  The \fIaction\fR may be any one of the
73 following:
74 .
75 .RS
76 .IP \fBup\fR
77 Enables the interface.  This is equivalent to ``ifconfig up'' on a Unix
78 system.
79 .
80 .IP \fBdown\fR
81 Disables the interface.  This is equivalent to ``ifconfig down'' on a Unix
82 system.
83 .
84 .IP \fBflood\fR
85 When a \fIflood\fR action is specified, traffic will be sent out this
86 interface.  This is the default posture for monitored ports.
87 .
88 .IP \fBnoflood\fR
89 When a \fIflood\fR action is specified, traffic will not be sent out 
90 this interface.  This is primarily useful to prevent loops when a
91 spanning tree protocol is not in use.
92 .
93 .RE
94 .
95 .TP
96 \fBdump\-flows \fIswitch \fR[\fIflows\fR]
97 Prints to the console all flow entries in \fIswitch\fR's
98 tables that match \fIflows\fR.  If \fIflows\fR is omitted, all flows
99 in the switch are retrieved.  See \fBFlow Syntax\fR, below, for the
100 syntax of \fIflows\fR.  The output format is described in 
101 \fBTable Entry Output\fR.
102 .
103 .TP
104 \fBdump\-aggregate \fIswitch \fR[\fIflows\fR]
105 Prints to the console aggregate statistics for flows in 
106 \fIswitch\fR's tables that match \fIflows\fR.  If \fIflows\fR is omitted, 
107 the statistics are aggregated across all flows in the switch's flow
108 tables.  See \fBFlow Syntax\fR, below, for the syntax of \fIflows\fR.
109 The output format is descrbed in \fBTable Entry Output\fR.
110 .
111 .IP "\fBqueue\-stats \fIswitch \fR[\fIport \fR[\fIqueue\fR]]"
112 Prints to the console statistics for the specified \fIqueue\fR on
113 \fIport\fR within \fIswitch\fR.  Either of \fIport\fR or \fIqueue\fR
114 or both may be omitted (or equivalently specified as \fBALL\fR).  If
115 both are omitted, statistics are printed for all queues on all ports.
116 If only \fIqueue\fR is omitted, then statistics are printed for all
117 queues on \fIport\fR; if only \fIport\fR is omitted, then statistics
118 are printed for \fIqueue\fR on every port where it exists.
119 .
120 .SS "OpenFlow Switch Flow Table Commands"
121 .
122 These commands manage the flow table in an OpenFlow switch.  In each
123 case, \fIflow\fR specifies a flow entry in the format described in
124 \fBFlow Syntax\fR, below, and \fIfile\fR is a text file that contains
125 zero or more flows in the same syntax, one per line.
126 .
127 .IP "\fBadd\-flow \fIswitch flow\fR"
128 .IQ "\fBadd\-flow \fIswitch \fB\- < \fIfile\fR"
129 .IQ "\fBadd\-flows \fIswitch file\fR"
130 Add each flow entry to \fIswitch\fR's tables.
131 .
132 .IP "[\fB\-\-strict\fR] \fBmod\-flows \fIswitch flow\fR"
133 .IQ "[\fB\-\-strict\fR] \fBmod\-flows \fIswitch \fB\- < \fIfile\fR"
134 Modify the actions in entries from \fIswitch\fR's tables that match
135 the specified flows.  With \fB\-\-strict\fR, wildcards are not treated
136 as active for matching purposes.
137 .
138 .IP "\fBdel\-flows \fIswitch\fR"
139 .IQ "[\fB\-\-strict\fR] \fBdel\-flows \fIswitch \fR[\fIflow\fR]"
140 .IQ "[\fB\-\-strict\fR] \fBdel\-flows \fIswitch \fB\- < \fIfile\fR"
141 Deletes entries from \fIswitch\fR's flow table.  With only a
142 \fIswitch\fR argument, deletes all flows.  Otherwise, deletes flow
143 entries that match the specified flows.  With \fB\-\-strict\fR,
144 wildcards are not treated as active for matching purposes.
145 .
146 .IP "[\fB\-\-readd\fR] \fBreplace\-flows \fIswitch file\fR"
147 Reads flow entries from \fIfile\fR (or \fBstdin\fR if \fIfile\fR is
148 \fB\-\fR) and queries the flow table from \fIswitch\fR.  Then it fixes
149 up any differences, adding flows from \fIflow\fR that are missing on
150 \fIswitch\fR, deleting flows from \fIswitch\fR that are not in
151 \fIfile\fR, and updating flows in \fIswitch\fR whose actions, cookie,
152 or timeouts differ in \fIfile\fR.
153 .
154 .IP
155 With \fB\-\-readd\fR, \fBovs\-ofctl\fR adds all the flows from
156 \fIfile\fR, even those that exist with the same actions, cookie, and
157 timeout in \fIswitch\fR.  This resets all the flow packet and byte
158 counters to 0, which can be useful for debugging.
159 .
160 .IP "\fBdiff\-flows \fIsource1 source2\fR"
161 Reads flow entries from \fIsource1\fR and \fIsource2\fR and prints the
162 differences.  A flow that is in \fIsource1\fR but not in \fIsource2\fR
163 is printed preceded by a \fB\-\fR, and a flow that is in \fIsource2\fR
164 but not in \fIsource1\fR is printed preceded by a \fB+\fR.  If a flow
165 exists in both \fIsource1\fR and \fIsource2\fR with different actions,
166 cookie, or timeouts, then both versions are printed preceded by
167 \fB\-\fR and \fB+\fR, respectively.
168 .IP
169 \fIsource1\fR and \fIsource2\fR may each name a file or a switch.  If
170 a name begins with \fB/\fR or \fB.\fR, then it is considered to be a
171 file name.  A name that contains \fB:\fR is considered to be a switch.
172 Otherwise, it is a file if a file by that name exists, a switch if
173 not.
174 .IP
175 For this command, an exit status of 0 means that no differences were
176 found, 1 means that an error occurred, and 2 means that some
177 differences were found.
178 .
179 .SS "OpenFlow Switch Monitoring Commands"
180 .
181 .IP "\fBsnoop \fIswitch\fR"
182 Connects to \fIswitch\fR and prints to the console all OpenFlow
183 messages received.  Unlike other \fBovs\-ofctl\fR commands, if
184 \fIswitch\fR is the name of a bridge, then the \fBsnoop\fR command
185 connects to a Unix domain socket named
186 \fB@RUNDIR@/\fIbridge\fB.snoop\fR.  \fBovs\-vswitchd\fR listens on
187 such a socket for each bridge and sends to it all of the OpenFlow
188 messages sent to or received from its configured OpenFlow controller.
189 Thus, this command can be used to view OpenFlow protocol activity
190 between a switch and its controller.
191 .IP
192 When a switch has more than one controller configured, only the
193 traffic to and from a single controller is output.  If none of the
194 controllers is configured as a master or a slave (using a Nicira
195 extension to OpenFlow), then a controller is chosen arbitrarily among
196 them.  If there is a master controller, it is chosen; otherwise, if
197 there are any controllers that are not masters or slaves, one is
198 chosen arbitrarily; otherwise, a slave controller is chosen
199 arbitrarily.  This choice is made once at connection time and does not
200 change as controllers reconfigure their roles.
201 .IP
202 If a switch has no controller configured, or if
203 the configured controller is disconnected, no traffic is sent, so
204 monitoring will not show any traffic.
205 .
206 .IP "\fBmonitor \fIswitch\fR [\fImiss-len\fR]"
207 Connects to \fIswitch\fR and prints to the console all OpenFlow
208 messages received.  Usually, \fIswitch\fR should specify the name of a
209 bridge in the \fBovs\-vswitchd\fR database.
210 .IP
211 If \fImiss-len\fR is provided, \fBovs\-ofctl\fR sends an OpenFlow ``set
212 configuration'' message at connection setup time that requests
213 \fImiss-len\fR bytes of each packet that misses the flow table.  Open vSwitch
214 does not send these and other asynchronous messages to an
215 \fBovs\-ofctl monitor\fR client connection unless a nonzero value is
216 specified on this argument.  (Thus, if \fImiss\-len\fR is not
217 specified, very little traffic will ordinarily be printed.)
218 .IP
219 This command may be useful for debugging switch or controller
220 implementations.
221 .
222 .SS "OpenFlow Switch and Controller Commands"
223 .
224 The following commands, like those in the previous section, may be
225 applied to OpenFlow switches, using any of the connection methods
226 described in that section.  Unlike those commands, these may also be
227 applied to OpenFlow controllers.
228 .
229 .TP
230 \fBprobe \fItarget\fR
231 Sends a single OpenFlow echo-request message to \fItarget\fR and waits
232 for the response.  With the \fB\-t\fR or \fB\-\-timeout\fR option, this
233 command can test whether an OpenFlow switch or controller is up and
234 running.
235 .
236 .TP
237 \fBping \fItarget \fR[\fIn\fR]
238 Sends a series of 10 echo request packets to \fItarget\fR and times
239 each reply.  The echo request packets consist of an OpenFlow header
240 plus \fIn\fR bytes (default: 64) of randomly generated payload.  This
241 measures the latency of individual requests.
242 .
243 .TP
244 \fBbenchmark \fItarget n count\fR
245 Sends \fIcount\fR echo request packets that each consist of an
246 OpenFlow header plus \fIn\fR bytes of payload and waits for each
247 response.  Reports the total time required.  This is a measure of the
248 maximum bandwidth to \fItarget\fR for round-trips of \fIn\fR-byte
249 messages.
250 .
251 .SS "Flow Syntax"
252 .PP
253 Some \fBovs\-ofctl\fR commands accept an argument that describes a flow or
254 flows.  Such flow descriptions comprise a series
255 \fIfield\fB=\fIvalue\fR assignments, separated by commas or white
256 space.  (Embedding spaces into a flow description normally requires
257 quoting to prevent the shell from breaking the description into
258 multiple arguments.)
259 .PP
260 Flow descriptions should be in \fBnormal form\fR.  This means that a
261 flow may only specify a value for an L3 field if it also specifies a
262 particular L2 protocol, and that a flow may only specify an L4 field
263 if it also specifies particular L2 and L3 protocol types.  For
264 example, if the L2 protocol type \fBdl_type\fR is wildcarded, then L3
265 fields \fBnw_src\fR, \fBnw_dst\fR, and \fBnw_proto\fR must also be
266 wildcarded.  Similarly, if \fBdl_type\fR or \fBnw_proto\fR (the L3
267 protocol type) is wildcarded, so must be \fBtp_dst\fR and
268 \fBtp_src\fR, which are L4 fields.  \fBovs\-ofctl\fR will warn about
269 flows not in normal form.
270 .PP
271 The following field assignments describe how a flow matches a packet.
272 If any of these assignments is omitted from the flow syntax, the field
273 is treated as a wildcard; thus, if all of them are omitted, the
274 resulting flow matches all packets.  The string \fB*\fR or \fBANY\fR
275 may be specified to explicitly mark any of these fields as a wildcard.  
276 (\fB*\fR should be quoted to protect it from shell expansion.)
277 .
278 .IP \fBin_port=\fIport_no\fR
279 Matches OpenFlow port \fIport_no\fR.  Ports are numbered as
280 displayed by \fBovs\-ofctl show\fR.
281 .IP
282 (The \fBresubmit\fR action can search OpenFlow flow tables with
283 arbitrary \fBin_port\fR values, so flows that match port numbers that
284 do not exist from an OpenFlow perspective can still potentially be
285 matched.)
286 .
287 .IP \fBdl_vlan=\fIvlan\fR
288 Matches IEEE 802.1q Virtual LAN tag \fIvlan\fR.  Specify \fB0xffff\fR
289 as \fIvlan\fR to match packets that are not tagged with a Virtual LAN;
290 otherwise, specify a number between 0 and 4095, inclusive, as the
291 12-bit VLAN ID to match.
292 .
293 .IP \fBdl_vlan_pcp=\fIpriority\fR
294 Matches IEEE 802.1q Priority Code Point (PCP) \fIpriority\fR, which is
295 specified as a value between 0 and 7, inclusive.  A higher value
296 indicates a higher frame priority level.
297 .
298 .IP \fBdl_src=\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fR
299 .IQ \fBdl_dst=\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fR
300 Matches an Ethernet source (or destination) address specified as 6
301 pairs of hexadecimal digits delimited by colons
302 (e.g. \fB00:0A:E4:25:6B:B0\fR).
303 .
304 .IP \fBdl_dst=\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB/\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fR
305 Matches an Ethernet destination address specified as 6 pairs of
306 hexadecimal digits delimited by colons (e.g. \fB00:0A:E4:25:6B:B0\fR),
307 with a wildcard mask following the slash.  Only
308 the following masks are allowed:
309 .RS
310 .IP \fB01:00:00:00:00:00\fR
311 Match only the multicast bit.  Thus,
312 \fBdl_dst=01:00:00:00:00:00/01:00:00:00:00:00\fR matches all multicast
313 (including broadcast) Ethernet packets, and
314 \fBdl_dst=00:00:00:00:00:00/01:00:00:00:00:00\fR matches all unicast
315 Ethernet packets.
316 .IP \fBfe:ff:ff:ff:ff:ff\fR
317 Match all bits except the multicast bit.  This is probably not useful.
318 .IP \fBff:ff:ff:ff:ff:ff\fR
319 Exact match (equivalent to omitting the mask).
320 .IP \fB00:00:00:00:00:00\fR
321 Wildcard all bits (equivalent to \fBdl_dst=*\fR.)
322 .RE
323 .
324 .IP \fBdl_type=\fIethertype\fR
325 Matches Ethernet protocol type \fIethertype\fR, which is specified as an
326 integer between 0 and 65535, inclusive, either in decimal or as a 
327 hexadecimal number prefixed by \fB0x\fR (e.g. \fB0x0806\fR to match ARP 
328 packets).
329 .
330 .IP \fBnw_src=\fIip\fR[\fB/\fInetmask\fR]
331 .IQ \fBnw_dst=\fIip\fR[\fB/\fInetmask\fR]
332 When \fBdl_type\fR is 0x0800 (possibly via shorthand, e.g. \fBip\fR
333 or \fBtcp\fR), matches IPv4 source (or destination) address \fIip\fR,
334 which may be specified as an IP address or host name
335 (e.g. \fB192.168.1.1\fR or \fBwww.example.com\fR).  The optional
336 \fInetmask\fR allows restricting a match to an IPv4 address prefix.
337 The netmask may be specified as a dotted quad
338 (e.g. \fB192.168.1.0/255.255.255.0\fR) or as a CIDR block
339 (e.g. \fB192.168.1.0/24\fR).
340 .IP
341 When \fBdl_type=0x0806\fR or \fBarp\fR is specified, matches the
342 \fBar_spa\fR or \fBar_tpa\fR field, respectively, in ARP packets for
343 IPv4 and Ethernet.
344 .IP
345 When \fBdl_type\fR is wildcarded or set to a value other than 0x0800
346 or 0x0806, the values of \fBnw_src\fR and \fBnw_dst\fR are ignored
347 (see \fBFlow Syntax\fR above).
348 .
349 .IP \fBnw_proto=\fIproto\fR
350 When \fBip\fR or \fBdl_type=0x0800\fR is specified, matches IP
351 protocol type \fIproto\fR, which is specified as a decimal number
352 between 0 and 255, inclusive (e.g. 1 to match ICMP packets or 6 to match
353 TCP packets).
354 .IP
355 When \fBipv6\fR or \fBdl_type=0x86dd\fR is specified, matches IPv6
356 header type \fIproto\fR, which is specified as a decimal number between
357 0 and 255, inclusive (e.g. 58 to match ICMPv6 packets or 6 to match
358 TCP).  The header type is the terminal header as described in the
359 \fBDESIGN\fR document.
360 .IP
361 When \fBarp\fR or \fBdl_type=0x0806\fR is specified, matches the lower
362 8 bits of the ARP opcode.  ARP opcodes greater than 255 are treated as
363 0.
364 .IP
365 When \fBdl_type\fR is wildcarded or set to a value other than 0x0800,
366 0x0806, or 0x86dd, the value of \fBnw_proto\fR is ignored (see \fBFlow
367 Syntax\fR above).
368 .
369 .IP \fBnw_tos=\fItos\fR
370 Matches IP ToS/DSCP or IPv6 traffic class field \fItos\fR, which is
371 specified as a decimal number between 0 and 255, inclusive.  Note that
372 the two lower reserved bits are ignored for matching purposes.
373 .IP
374 When \fBdl_type\fR is wildcarded or set to a value other than 0x0800,
375 0x0806, or 0x86dd, the value of \fBnw_tos\fR is ignored (see \fBFlow
376 Syntax\fR above).
377 .
378 .IP \fBtp_src=\fIport\fR
379 .IQ \fBtp_dst=\fIport\fR
380 When \fBdl_type\fR and \fBnw_proto\fR specify TCP or UDP, \fBtp_src\fR
381 and \fBtp_dst\fR match the UDP or TCP source or destination port
382 \fIport\fR, respectively. which is specified as a decimal number
383 between 0 and 65535, inclusive (e.g. 80 to match packets originating
384 from a HTTP server).
385 .IP
386 When \fBdl_type\fR and \fBnw_proto\fR take other values, the values of
387 these settings are ignored (see \fBFlow Syntax\fR above).
388 .
389 .IP \fBicmp_type=\fItype\fR
390 .IQ \fBicmp_code=\fIcode\fR
391 When \fBdl_type\fR and \fBnw_proto\fR specify ICMP or ICMPv6, \fItype\fR
392 matches the ICMP type and \fIcode\fR matches the ICMP code.  Each is
393 specified as a decimal number between 0 and 255, inclusive.
394 .IP
395 When \fBdl_type\fR and \fBnw_proto\fR take other values, the values of
396 these settings are ignored (see \fBFlow Syntax\fR above).
397 .
398 .IP \fBtable=\fInumber\fR
399 If specified, limits the flow manipulation and flow dump commands to
400 only apply to the table with the given \fInumber\fR.
401 \fInumber\fR is a number between 0 and 254, inclusive.
402 .
403 Behavior varies if \fBtable\fR is not specified.  For flow table
404 modification commands without \fB\-\-strict\fR, the switch will choose
405 the table for these commands to operate on.  For flow table
406 modification commands with \fB\-\-strict\fR, the command will operate
407 on any single matching flow in any table; it will do nothing if there
408 are matches in more than one table.  The \fBdump-flows\fR and
409 \fBdump-aggregate\fR commands will gather statistics about flows from
410 all tables.
411 .IP
412 When this field is specified in \fBadd-flow\fR, \fBadd-flows\fR,
413 \fBmod-flows\fR and \fBdel-flows\fR commands, it activates a Nicira
414 extension to OpenFlow, which as of this writing is only known to be
415 implemented by Open vSwitch.
416 .
417 .PP
418 The following shorthand notations are also available:
419 .
420 .IP \fBip\fR
421 Same as \fBdl_type=0x0800\fR.
422 .
423 .IP \fBicmp\fR
424 Same as \fBdl_type=0x0800,nw_proto=1\fR.
425 .
426 .IP \fBtcp\fR
427 Same as \fBdl_type=0x0800,nw_proto=6\fR.
428 .
429 .IP \fBudp\fR
430 Same as \fBdl_type=0x0800,nw_proto=17\fR.
431 .
432 .IP \fBarp\fR
433 Same as \fBdl_type=0x0806\fR.
434 .
435 .PP
436 The following field assignments require support for the NXM (Nicira
437 Extended Match) extension to OpenFlow.  When one of these is specified,
438 \fBovs\-ofctl\fR will automatically attempt to negotiate use of this
439 extension.  If the switch does not support NXM, then \fBovs\-ofctl\fR
440 will report a fatal error.
441 .
442 .IP \fBvlan_tci=\fItci\fR[\fB/\fImask\fR]
443 Matches modified VLAN TCI \fItci\fR.  If \fImask\fR is omitted,
444 \fItci\fR is the exact VLAN TCI to match; if \fImask\fR is specified,
445 then a 1-bit in \fItci\fR indicates that the corresponding bit in
446 \fItci\fR must match exactly, and a 0-bit wildcards that bit.  Both
447 \fItci\fR and \fImask\fR are 16-bit values that are decimal by
448 default; use a \fB0x\fR prefix to specify them in hexadecimal.
449 .
450 .IP
451 The value that \fBvlan_tci\fR matches against is 0 for a packet that
452 has no 802.1Q header.  Otherwise, it is the TCI value from the 802.1Q
453 header with the CFI bit (with value \fB0x1000\fR) forced to 1.
454 .IP
455 Examples:
456 .RS
457 .IP \fBvlan_tci=0\fR
458 Match only packets without an 802.1Q header.
459 .IP \fBvlan_tci=0xf123\fR
460 Match packets tagged with priority 7 in VLAN 0x123.
461 .IP \fBvlan_tci=0x1123/0x1fff\fR
462 Match packets tagged with VLAN 0x123 (and any priority).
463 .IP \fBvlan_tci=0x5000/0xf000\fR
464 Match packets tagged with priority 2 (in any VLAN).
465 .IP \fBvlan_tci=0/0xfff\fR
466 Match packets with no 802.1Q header or tagged with VLAN 0 (and any
467 priority).
468 .IP \fBvlan_tci=0x5000/0xe000\fR
469 Match packets with no 802.1Q header or tagged with priority 2 (in any
470 VLAN).
471 .IP \fBvlan_tci=0/0xefff\fR
472 Match packets with no 802.1Q header or tagged with VLAN 0 and priority
473 0.
474 .RE
475 .IP
476 Some of these matching possibilities can also be achieved with
477 \fBdl_vlan\fR and \fBdl_vlan_pcp\fR.
478 .
479 .IP \fBarp_sha=\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fR
480 .IQ \fBarp_tha=\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fR
481 When \fBdl_type\fR specifies ARP, \fBarp_sha\fR and \fBarp_tha\fR match
482 the source and target hardware address, respectively.  An address is
483 specified as 6 pairs of hexadecimal digits delimited by colons.
484 .
485 .IP \fBipv6_src=\fIipv6\fR[\fB/\fInetmask\fR]
486 .IQ \fBipv6_dst=\fIipv6\fR[\fB/\fInetmask\fR]
487 When \fBdl_type\fR is 0x86dd (possibly via shorthand, e.g., \fBipv6\fR
488 or \fBtcp6\fR), matches IPv6 source (or destination) address \fIipv6\fR,
489 which may be specified as defined in RFC 2373.  The preferred format is 
490 \fIx\fB:\fIx\fB:\fIx\fB:\fIx\fB:\fIx\fB:\fIx\fB:\fIx\fB:\fIx\fR, where
491 \fIx\fR are the hexadecimal values of the eight 16-bit pieces of the
492 address.  A single instance of \fB::\fR may be used to indicate multiple
493 groups of 16-bits of zeros.  The optional \fInetmask\fR allows
494 restricting a match to an IPv6 address prefix.  A netmask is specified
495 as a CIDR block (e.g. \fB2001:db8:3c4d:1::/64\fR).
496 .
497 .IP \fBnd_target=\fIipv6\fR
498 When \fBdl_type\fR, \fBnw_proto\fR, and \fBicmp_type\fR specify
499 IPv6 Neighbor Discovery (ICMPv6 type 135 or 136), matches the target address
500 \fIipv6\fR.  \fIipv6\fR is in the same format described earlier for the
501 \fBipv6_src\fR and \fBipv6_dst\fR fields.
502 .
503 .IP \fBnd_sll=\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fR
504 When \fBdl_type\fR, \fBnw_proto\fR, and \fBicmp_type\fR specify IPv6
505 Neighbor Solicitation (ICMPv6 type 135), matches the source link\-layer
506 address option.  An address is specified as 6 pairs of hexadecimal
507 digits delimited by colons.
508 .
509 .IP \fBnd_tll=\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fR
510 When \fBdl_type\fR, \fBnw_proto\fR, and \fBicmp_type\fR specify IPv6
511 Neighbor Advertisement (ICMPv6 type 136), matches the target link\-layer
512 address option.  An address is specified as 6 pairs of hexadecimal
513 digits delimited by colons.
514 .
515 .IP \fBtun_id=\fItunnel-id\fR[\fB/\fImask\fR]
516 Matches tunnel identifier \fItunnel-id\fR.  Only packets that arrive
517 over a tunnel that carries a key (e.g. GRE with the RFC 2890 key
518 extension) will have a nonzero tunnel ID.  If \fImask\fR is omitted,
519 \fItunnel-id\fR is the exact tunnel ID to match; if \fImask\fR is
520 specified, then a 1-bit in \fImask\fR indicates that the corresponding
521 bit in \fItunnel-id\fR must match exactly, and a 0-bit wildcards that
522 bit.
523 .IP
524 In an attempt to be compatible with more switches, \fBovs\-ofctl\fR will
525 prefer to use the ``tunnel ID from cookie'' Nicira extension to NXM.
526 The use of this extension comes with three caveats: the top 32 bits of
527 the \fBcookie\fR (see below) are used for \fItunnel-id\fR and thus
528 unavailable for other use, specifying \fBtun_id\fR on \fBdump\-flows\fR
529 or \fBdump\-aggregate\fR has no effect, and \fImask\fR is not supported.
530 If any of these caveats apply, \fBovs-ofctl\fR will use NXM.
531 .
532 .IP "\fBreg\fIidx\fB=\fIvalue\fR[\fB/\fImask\fR]"
533 Matches \fIvalue\fR either exactly or with optional \fImask\fR in
534 register number \fIidx\fR.  The valid range of \fIidx\fR depends on
535 the switch.  \fIvalue\fR and \fImask\fR are 32-bit integers, by
536 default in decimal (use a \fB0x\fR prefix to specify hexadecimal).
537 Arbitrary \fImask\fR values are allowed: a 1-bit in \fImask\fR
538 indicates that the corresponding bit in \fIvalue\fR must match
539 exactly, and a 0-bit wildcards that bit.
540 .IP
541 When a packet enters an OpenFlow switch, all of the registers are set
542 to 0.  Only explicit Nicira extension actions change register values.
543 .
544 .PP
545 Defining IPv6 flows (those with \fBdl_type\fR equal to 0x86dd) requires
546 support for NXM.  The following shorthand notations are available for
547 IPv6-related flows:
548 .
549 .IP \fBipv6\fR
550 Same as \fBdl_type=0x86dd\fR.
551 .
552 .IP \fBtcp6\fR
553 Same as \fBdl_type=0x86dd,nw_proto=6\fR.
554 .
555 .IP \fBudp6\fR
556 Same as \fBdl_type=0x86dd,nw_proto=17\fR.
557 .
558 .IP \fBicmp6\fR
559 Same as \fBdl_type=0x86dd,nw_proto=58\fR.
560 .
561 .PP
562 Finally, field assignments to \fBduration\fR, \fBn_packets\fR, or
563 \fBn_bytes\fR are ignored to allow output from the \fBdump\-flows\fR
564 command to be used as input for other commands that parse flows.
565 .
566 .PP
567 The \fBadd\-flow\fR, \fBadd\-flows\fR, and \fBmod\-flows\fR commands
568 require an additional field, which must be the final field specified:
569 .
570 .IP \fBactions=\fR[\fItarget\fR][\fB,\fItarget\fR...]\fR
571 Specifies a comma-separated list of actions to take on a packet when the 
572 flow entry matches.  If no \fItarget\fR is specified, then packets
573 matching the flow are dropped.  The \fItarget\fR may be a decimal port 
574 number designating the physical port on which to output the packet, or one 
575 of the following keywords:
576 .
577 .RS
578 .IP \fBoutput\fR:\fIport\fR
579 .IQ \fBoutput\fR:\fIsrc\fB[\fIstart\fB..\fIend\fB]
580 Outputs the packet. If \fIport\fR is an OpenFlow port number, outputs directly
581 to it.  Otherwise, outputs to the OpenFlow port number read from \fIsrc\fR
582 which must be an NXM field as described above.  Outputting to an NXM field is
583 an OpenFlow extension which is not supported by standard OpenFlow switches.
584 .IP
585 Example: \fBoutput:NXM_NX_REG0[16..31]\fR outputs to the OpenFlow port number
586 written in the upper half of register 0.
587 .
588 .IP \fBenqueue\fR:\fIport\fB:\fIqueue\fR
589 Enqueues the packet on the specified \fIqueue\fR within port
590 \fIport\fR.  The number of supported queues depends on the switch;
591 some OpenFlow implementations do not support queuing at all.
592 .
593 .IP \fBnormal\fR
594 Subjects the packet to the device's normal L2/L3 processing.  (This
595 action is not implemented by all OpenFlow switches.)
596 .
597 .IP \fBflood\fR
598 Outputs the packet on all switch physical ports other than the port on
599 which it was received and any ports on which flooding is disabled
600 (typically, these would be ports disabled by the IEEE 802.1D spanning
601 tree protocol).
602 .
603 .IP \fBall\fR
604 Outputs the packet on all switch physical ports other than the port on
605 which it was received.
606 .
607 .IP \fBcontroller\fR:\fImax_len\fR
608 Sends the packet to the OpenFlow controller as a ``packet in''
609 message.  If \fImax_len\fR is a number, then it specifies the maximum
610 number of bytes that should be sent.  If \fImax_len\fR is \fBALL\fR or
611 omitted, then the entire packet is sent.
612 .
613 .IP \fBlocal\fR
614 Outputs the packet on the ``local port,'' which corresponds to the
615 network device that has the same name as the bridge.
616 .
617 .IP \fBin_port\fR
618 Outputs the packet on the port from which it was received.
619 .
620 .IP \fBdrop\fR
621 Discards the packet, so no further processing or forwarding takes place.
622 If a drop action is used, no other actions may be specified.
623 .
624 .IP \fBmod_vlan_vid\fR:\fIvlan_vid\fR
625 Modifies the VLAN id on a packet.  The VLAN tag is added or modified 
626 as necessary to match the value specified.  If the VLAN tag is added,
627 a priority of zero is used (see the \fBmod_vlan_pcp\fR action to set
628 this).
629 .
630 .IP \fBmod_vlan_pcp\fR:\fIvlan_pcp\fR
631 Modifies the VLAN priority on a packet.  The VLAN tag is added or modified 
632 as necessary to match the value specified.  Valid values are between 0
633 (lowest) and 7 (highest).  If the VLAN tag is added, a vid of zero is used 
634 (see the \fBmod_vlan_vid\fR action to set this).
635 .
636 .IP \fBstrip_vlan\fR
637 Strips the VLAN tag from a packet if it is present.
638 .
639 .IP \fBmod_dl_src\fB:\fImac\fR
640 Sets the source Ethernet address to \fImac\fR.
641 .
642 .IP \fBmod_dl_dst\fB:\fImac\fR
643 Sets the destination Ethernet address to \fImac\fR.
644 .
645 .IP \fBmod_nw_src\fB:\fIip\fR
646 Sets the IPv4 source address to \fIip\fR.
647 .
648 .IP \fBmod_nw_dst\fB:\fIip\fR
649 Sets the IPv4 destination address to \fIip\fR.
650 .
651 .IP \fBmod_tp_src\fB:\fIport\fR
652 Sets the TCP or UDP source port to \fIport\fR.
653 .
654 .IP \fBmod_tp_dst\fB:\fIport\fR
655 Sets the TCP or UDP destination port to \fIport\fR.
656 .
657 .IP \fBmod_nw_tos\fB:\fItos\fR
658 Sets the IP ToS/DSCP field to \fItos\fR.  Valid values are between 0 and
659 255, inclusive.  Note that the two lower reserved bits are never
660 modified.
661 .
662 .RE
663 .IP
664 The following actions are Nicira vendor extensions that, as of this writing, are
665 only known to be implemented by Open vSwitch:
666 .
667 .RS
668 .
669 .IP \fBresubmit\fB:\fIport\fR
670 .IQ \fBresubmit\fB(\fR[\fIport\fR]\fB,\fR[\fItable\fR]\fB)
671 Re-searches this OpenFlow flow table (or the table whose number is
672 specified by \fItable\fR) with the \fBin_port\fR field replaced by
673 \fIport\fR (if \fIport\fR is specified) and executes the actions
674 found, if any, in addition to any other actions in this flow entry.
675 .IP
676 Recursive \fBresubmit\fR actions are obeyed up to an
677 implementation-defined maximum depth.  Open vSwitch 1.0.1 and earlier
678 did not support recursion; Open vSwitch before 1.2.90 did not support
679 \fItable\fR.
680 .
681 .IP \fBset_tunnel\fB:\fIid\fR
682 .IQ \fBset_tunnel64\fB:\fIid\fR
683 If outputting to a port that encapsulates the packet in a tunnel and
684 supports an identifier (such as GRE), sets the identifier to \fIid\fR.
685 If the \fBset_tunnel\fR form is used and \fIid\fR fits in 32 bits,
686 then this uses an action extension that is supported by Open vSwitch
687 1.0 and later.  Otherwise, if \fIid\fR is a 64-bit value, it requires
688 Open vSwitch 1.1 or later.
689 .
690 .IP \fBset_queue\fB:\fIqueue\fR
691 Sets the queue that should be used to \fIqueue\fR when packets are
692 output.  The number of supported queues depends on the switch; some
693 OpenFlow implementations do not support queuing at all.
694 .
695 .IP \fBpop_queue\fR
696 Restores the queue to the value it was before any \fBset_queue\fR
697 actions were applied.
698 .
699 .IP \fBnote:\fR[\fIhh\fR]...
700 Does nothing at all.  Any number of bytes represented as hex digits
701 \fIhh\fR may be included.  Pairs of hex digits may be separated by
702 periods for readability.
703 .
704 .IP "\fBmove:\fIsrc\fB[\fIstart\fB..\fIend\fB]\->\fIdst\fB[\fIstart\fB..\fIend\fB]\fR"
705 Copies the named bits from field \fIsrc\fR to field \fIdst\fR.
706 \fIsrc\fR and \fIdst\fR must be NXM field names as defined in
707 \fBnicira\-ext.h\fR, e.g. \fBNXM_OF_UDP_SRC\fR or \fBNXM_NX_REG0\fR.
708 Each \fIstart\fR and \fIend\fR pair, which are inclusive, must specify
709 the same number of bits and must fit within its respective field.
710 Shorthands for \fB[\fIstart\fB..\fIend\fB]\fR exist: use
711 \fB[\fIbit\fB]\fR to specify a single bit or \fB[]\fR to specify an
712 entire field.
713 .IP
714 Examples: \fBmove:NXM_NX_REG0[0..5]\->NXM_NX_REG1[26..31]\fR copies the
715 six bits numbered 0 through 5, inclusive, in register 0 into bits 26
716 through 31, inclusive;
717 \fBmove:NXM_NX_REG0[0..15]\->NXM_OF_VLAN_TCI[]\fR copies the least
718 significant 16 bits of register 0 into the VLAN TCI field.
719 .
720 .IP "\fBload:\fIvalue\fB\->\fIdst\fB[\fIstart\fB..\fIend\fB]"
721 Writes \fIvalue\fR to bits \fIstart\fR through \fIend\fR, inclusive,
722 in field \fIdst\fR.
723 .IP
724 Example: \fBload:55\->NXM_NX_REG2[0..5]\fR loads value 55 (bit pattern
725 \fB110111\fR) into bits 0 through 5, inclusive, in register 2.
726 .
727 .IP "\fBmultipath(\fIfields\fB, \fIbasis\fB, \fIalgorithm\fB, \fIn_links\fB, \fIarg\fB, \fIdst\fB[\fIstart\fB..\fIend\fB])\fR"
728 Hashes \fIfields\fR using \fIbasis\fR as a universal hash parameter,
729 then the applies multipath link selection \fIalgorithm\fR (with
730 parameter \fIarg\fR) to choose one of \fIn_links\fR output links
731 numbered 0 through \fIn_links\fR minus 1, and stores the link into
732 \fIdst\fB[\fIstart\fB..\fIend\fB]\fR, which must be an NXM field as
733 described above.
734 .IP
735 Currently, \fIfields\fR must be either \fBeth_src\fR or
736 \fBsymmetric_l4\fR and \fIalgorithm\fR must be one of \fBmodulo_n\fR,
737 \fBhash_threshold\fR, \fBhrw\fR, and \fBiter_hash\fR.  Only
738 the \fBiter_hash\fR algorithm uses \fIarg\fR.
739 .IP
740 Refer to \fBnicira\-ext.h\fR for more details.
741 .
742 .IP "\fBautopath(\fIid\fB, \fIdst\fB[\fIstart\fB..\fIend\fB])\fR"
743 Given \fIid\fR, chooses an OpenFlow port and populates it in
744 \fIdst\fB[\fIstart\fB..\fIend\fB]\fR, which must be an NXM field as
745 described above.
746 .IP
747 Currently, \fIid\fR should be the OpenFlow port number of an interface on the
748 bridge.  If it isn't then \fIdst\fB[\fIstart\fB..\fIend\fB]\fR will be
749 populated with the OpenFlow port "none".  If \fIid\fR is a member of a bond,
750 the normal bond selection logic will be used to choose the destination port.
751 Otherwise, the register will be populated with \fIid\fR itself.
752 .IP
753 Refer to \fBnicira\-ext.h\fR for more details.
754 .
755 .IP "\fBbundle(\fIfields\fB, \fIbasis\fB, \fIalgorithm\fB, \fIslave_type\fB, slaves:[\fIs1\fB, \fIs2\fB, ...])\fR"
756 Hashes \fIfields\fR using \fIbasis\fR as a universal hash parameter, then
757 applies the bundle link selection \fIalgorithm\fR to choose one of the listed
758 slaves represented as \fIslave_type\fR.  Currently the only supported
759 \fIslave_type\fR is \fBofport\fR.  Thus, each \fIs1\fR through \fIsN\fR should
760 be an OpenFlow port number. Outputs to the selected slave.
761 .IP
762 Currently, \fIfields\fR must be either \fBeth_src\fR or \fBsymmetric_l4\fR and
763 \fIalgorithm\fR must be one of \fBhrw\fR and \fBactive_backup\fR.
764 .IP
765 Example: \fBbundle(eth_src,0,hrw,ofport,slaves:4,8)\fR uses an Ethernet source
766 hash with basis 0, to select between OpenFlow ports 4 and 8 using the Highest
767 Random Weight algorithm.
768 .IP
769 Refer to \fBnicira\-ext.h\fR for more details.
770 .
771 .IP "\fBbundle_load(\fIfields\fB, \fIbasis\fB, \fIalgorithm\fB, \fIslave_type\fB, \fIdst\fB[\fIstart\fB..\fIend\fB], slaves:[\fIs1\fB, \fIs2\fB, ...])\fR"
772 Has the same behavior as the \fBbundle\fR action, with one exception.  Instead
773 of outputting to the selected slave, it writes its selection to
774 \fIdst\fB[\fIstart\fB..\fIend\fB]\fR, which must be an NXM field as described
775 above.
776 .IP
777 Example: \fBbundle_load(eth_src, 0, hrw, ofport, NXM_NX_REG0[],
778 slaves:4, 8)\fR uses an Ethernet source hash with basis 0, to select
779 between OpenFlow ports 4 and 8 using the Highest Random Weight
780 algorithm, and writes the selection to \fBNXM_NX_REG0[]\fR.
781 .IP
782 Refer to \fBnicira\-ext.h\fR for more details.
783 .
784 .IP "\fBlearn(\fIargument\fR[\fB,\fIargument\fR]...\fB)\fR"
785 This action adds or modifies a flow in an OpenFlow table, similar to
786 \fBovs\-ofctl \-\-strict mod\-flows\fR.  The arguments specify the
787 flow's match fields, actions, and other properties, as follows.  At
788 least one match criterion and one action argument should ordinarily be
789 specified.
790 .RS
791 .IP \fBidle_timeout=\fIseconds\fR
792 .IQ \fBhard_timeout=\fIseconds\fR
793 .IQ \fBpriority=\fIvalue\fR
794 These key-value pairs have the same meaning as in the usual
795 \fBovs\-ofctl\fR flow syntax.
796 .
797 .IP \fBtable=\fInumber\fR
798 The table in which the new flow should be inserted.  Specify a decimal
799 number between 0 and 254.  The default, if \fBtable\fR is unspecified,
800 is table 1.
801 .
802 .IP \fIfield\fB=\fIvalue\fR
803 .IQ \fIfield\fB[\fIstart\fB..\fIend\fB]=\fIsrc\fB[\fIstart\fB..\fIend\fB]\fR
804 .IQ \fIfield\fB[\fIstart\fB..\fIend\fB]\fR
805 Adds a match criterion to the new flow.
806 .IP
807 The first form specifies that \fIfield\fR must match the literal
808 \fIvalue\fR, e.g. \fBdl_type=0x0800\fR.  All of the fields and values
809 for \fBovs\-ofctl\fR flow syntax are available with their usual
810 meanings.
811 .IP
812 The second form specifies that \fIfield\fB[\fIstart\fB..\fIend\fB]\fR
813 in the new flow must match \fIsrc\fB[\fIstart\fB..\fIend\fB]\fR taken
814 from the flow currently being processed.
815 .IP
816 The third form is a shorthand for the second form.  It specifies that
817 \fIfield\fB[\fIstart\fB..\fIend\fB]\fR in the new flow must match
818 \fIfield\fB[\fIstart\fB..\fIend\fB]\fR taken from the flow currently
819 being processed.
820 .
821 .IP \fBload:\fIvalue\fB\->\fIdst\fB[\fIstart\fB..\fIend\fB]
822 .IQ \fBload:\fIsrc\fB[\fIstart\fB..\fIend\fB]\->\fIdst\fB[\fIstart\fB..\fIend\fB]
823 .
824 Adds a \fBload\fR action to the new flow.
825 .IP
826 The first form loads the literal \fIvalue\fR into bits \fIstart\fR
827 through \fIend\fR, inclusive, in field \fIdst\fR.  Its syntax is the
828 same as the \fBload\fR action described earlier in this section.
829 .IP
830 The second form loads \fIsrc\fB[\fIstart\fB..\fIend\fB]\fR, a value
831 from the flow currently being processed, into bits \fIstart\fR
832 through \fIend\fR, inclusive, in field \fIdst\fR.
833 .
834 .IP \fBoutput:\fIfield\fB[\fIstart\fB..\fIend\fB]\fR
835 Add an \fBoutput\fR action to the new flow's actions, that outputs to
836 the OpenFlow port taken from \fIfield\fB[\fIstart\fB..\fIend\fB]\fR,
837 which must be an NXM field as described above.
838 .RE
839 .IP
840 For best performance, segregate learned flows into a table (using
841 \fBtable=\fInumber\fR) that is not used for any other flows except
842 possibly for a lowest-priority ``catch-all'' flow, that is, a flow
843 with no match criteria.  (This is why the default \fBtable\fR is 1, to
844 keep the learned flows separate from the primary flow table 0.)
845 .RE
846 .
847 .PP
848 The \fBadd\-flow\fR, \fBadd\-flows\fR, and \fBmod\-flows\fR commands
849 support an additional optional field:
850 .
851 .IP \fBcookie=\fIvalue\fR
852 .
853 A cookie is an opaque identifier that can be associated with the flow.
854 \fIvalue\fR can be any 64-bit number and need not be unique among
855 flows.  If this field is omitted, these commands set a default cookie
856 value of 0.
857 .
858 .PP
859 The following additional field sets the priority for flows added by
860 the \fBadd\-flow\fR and \fBadd\-flows\fR commands.  For
861 \fBmod\-flows\fR and \fBdel\-flows\fR when \fB\-\-strict\fR is
862 specified, priority must match along with the rest of the flow
863 specification.  Other commands do not allow priority to be specified.
864 .
865 .IP \fBpriority=\fIvalue\fR
866 The priority at which a wildcarded entry will match in comparison to
867 others.  \fIvalue\fR is a number between 0 and 65535, inclusive.  A higher 
868 \fIvalue\fR will match before a lower one.  An exact-match entry will always 
869 have priority over an entry containing wildcards, so it has an implicit 
870 priority value of 65535.  When adding a flow, if the field is not specified, 
871 the flow's priority will default to 32768.
872 .
873 .PP
874 The \fBadd\-flow\fR and \fBadd\-flows\fR commands support additional
875 optional fields:
876 .
877 .TP
878 \fBidle_timeout=\fIseconds\fR
879 Causes the flow to expire after the given number of seconds of
880 inactivity.  A value of 0 (the default) prevents a flow from expiring due to
881 inactivity.
882 .
883 .IP \fBhard_timeout=\fIseconds\fR
884 Causes the flow to expire after the given number of seconds,
885 regardless of activity.  A value of 0 (the default) gives the flow no
886 hard expiration deadline.
887 .
888 .PP
889 The \fBdump\-flows\fR, \fBdump\-aggregate\fR, \fBdel\-flow\fR 
890 and \fBdel\-flows\fR commands support one additional optional field:
891 .
892 .TP
893 \fBout_port=\fIport\fR
894 If set, a matching flow must include an output action to \fIport\fR.
895 .
896 .SS "Table Entry Output"
897 .
898 The \fBdump\-tables\fR and \fBdump\-aggregate\fR commands print information 
899 about the entries in a datapath's tables.  Each line of output is a 
900 unique flow entry, which begins with some common information:
901 .
902 .IP \fBduration\fR
903 The number of seconds the entry has been in the table.
904 .
905 .IP \fBtable_id\fR
906 The table that contains the flow.  When a packet arrives, the switch 
907 begins searching for an entry at the lowest numbered table.  Tables are 
908 numbered as shown by the \fBdump\-tables\fR command.
909 .
910 .IP \fBpriority\fR
911 The priority of the entry in relation to other entries within the same
912 table.  A higher value will match before a lower one.
913 .
914 .IP \fBn_packets\fR
915 The number of packets that have matched the entry.
916 .
917 .IP \fBn_bytes\fR
918 The total number of bytes from packets that have matched the entry.
919 .
920 .PP
921 The rest of the line consists of a description of the flow entry as 
922 described in \fBFlow Syntax\fR, above.
923 .
924 .
925 .SH OPTIONS
926 .TP
927 \fB\-\-strict\fR
928 Uses strict matching when running flow modification commands.
929 .
930 .IP "\fB\-F \fIformat\fR"
931 .IQ "\fB\-\-flow\-format=\fIformat\fR"
932 \fBovs\-ofctl\fR supports the following flow formats, in order of
933 increasing capability:
934 .RS
935 .IP "\fBopenflow10\fR"
936 This is the standard OpenFlow 1.0 flow format.  It should be supported
937 by all OpenFlow switches.
938 .
939 .IP "\fBnxm\fR (Nicira Extended Match)"
940 This Nicira extension to OpenFlow is flexible and extensible.  It
941 supports all of the Nicira flow extensions, such as \fBtun_id\fR and
942 registers.
943 .RE
944 .IP
945 Usually, \fBovs\-ofctl\fR picks the correct format automatically.  For
946 commands that modify the flow table, \fBovs\-ofctl\fR by default uses
947 the most widely supported flow format that supports the flows being
948 added.  For commands that query the flow table, \fBovs\-ofctl\fR by
949 default queries and uses the most advanced format supported by the
950 switch.
951 .IP
952 This option, where \fIformat\fR is one of the formats listed in the
953 above table, overrides \fBovs\-ofctl\fR's default choice of flow
954 format.  If a command cannot work as requested using the requested
955 flow format, \fBovs\-ofctl\fR will report a fatal error.
956 .
957 .IP "\fB\-m\fR"
958 .IQ "\fB\-\-more\fR"
959 Increases the verbosity of OpenFlow messages printed and logged by
960 \fBovs\-ofctl\fR commands.  Specify this option more than once to
961 increase verbosity further.
962 .SS "Public Key Infrastructure Options"
963 .so lib/ssl.man
964 .so lib/vlog.man
965 .so lib/common.man
966 .
967 .SH EXAMPLES
968 .
969 The following examples assume that \fBovs\-vswitchd\fR has a bridge
970 named \fBbr0\fR configured.
971 .
972 .TP
973 \fBovs\-ofctl dump\-tables br0\fR
974 Prints out the switch's table stats.  (This is more interesting after
975 some traffic has passed through.)
976 .
977 .TP
978 \fBovs\-ofctl dump\-flows br0\fR
979 Prints the flow entries in the switch.
980 .
981 .SH "SEE ALSO"
982 .
983 .BR ovs\-appctl (8),
984 .BR ovs\-controller (8),
985 .BR ovs\-vswitchd (8)