ovs-vtep: Make compatible with python2.7 and 3.
[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 "@VERSION@" "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 It should work with any OpenFlow switch, not just Open vSwitch.
24 .
25 .SS "OpenFlow Switch Management Commands"
26 .PP
27 These commands allow \fBovs\-ofctl\fR to monitor and administer an OpenFlow
28 switch.  It is able to show the current state of a switch, including
29 features, configuration, and table entries.
30 .PP
31 Most of these commands take an argument that specifies the method for
32 connecting to an OpenFlow switch.  The following connection methods
33 are supported:
34 .
35 .RS
36 .so lib/vconn-active.man
37 .
38 .IP "\fIfile\fR"
39 This is short for \fBunix:\fIfile\fR, as long as \fIfile\fR does not
40 contain a colon.
41 .
42 .IP \fIbridge\fR
43 This is short for \fBunix:@RUNDIR@/\fIbridge\fB.mgmt\fR, as long as
44 \fIbridge\fR does not contain a colon.
45 .
46 .IP [\fItype\fB@\fR]\fIdp\fR
47 Attempts to look up the bridge associated with \fIdp\fR and open as
48 above.  If \fItype\fR is given, it specifies the datapath provider of
49 \fIdp\fR, otherwise the default provider \fBsystem\fR is assumed.
50 .RE
51 .
52 .TP
53 \fBshow \fIswitch\fR
54 Prints to the console information on \fIswitch\fR, including
55 information on its flow tables and ports.
56 .
57 .TP
58 \fBdump\-tables \fIswitch\fR
59 Prints to the console statistics for each of the flow tables used by
60 \fIswitch\fR.
61 .TP
62 \fBdump\-table\-features \fIswitch\fR
63 Prints to the console features for each of the flow tables used by
64 \fIswitch\fR.
65 .TP
66 \fBdump\-table\-desc \fIswitch\fR
67 Prints to the console configuration for each of the flow tables used
68 by \fIswitch\fR for OpenFlow 1.4+.
69 .IP "\fBmod\-table \fIswitch\fR \fItable_id\fR \fIsetting\fR"
70 This command configures flow table settings for OpenFlow table
71 \fItable_id\fR within \fIswitch\fR.  The available settings depend on
72 the OpenFlow version in use.  In OpenFlow 1.1 and 1.2 (which must be
73 enabled with the \fB\-O\fR option) only, \fBmod\-table\fR configures
74 behavior when no flow is found when a packet is looked up in a flow
75 table.  The following \fIsetting\fR values are available:
76 .RS
77 .IP \fBdrop\fR
78 Drop the packet.
79 .IP \fBcontinue\fR
80 Continue to the next table in the pipeline.  (This is how an OpenFlow
81 1.0 switch always handles packets that do not match any flow, in
82 tables other than the last one.)
83 .IP \fBcontroller\fR
84 Send to controller.  (This is how an OpenFlow 1.0 switch always
85 handles packets that do not match any flow in the last table.)
86 .RE
87 .IP
88 In OpenFlow 1.4 and later (which must be enabled with the \fB\-O\fR
89 option) only, \fBmod\-table\fR configures the behavior when a
90 controller attempts to add a flow to a flow table that is full.  The
91 following \fIsetting\fR values are available:
92 .RS
93 .IP \fBevict\fR
94 Delete some existing flow from the flow table, according to the
95 algorithm described for the \fBFlow_Table\fR table in
96 \fBovs-vswitchd.conf.db\fR(5).
97 .IP \fBnoevict\fR
98 Refuse to add the new flow.  (Eviction might still be enabled through
99 the \fBoverflow_policy\fR column in the \fBFlow_Table\fR table
100 documented in \fBovs-vswitchd.conf.db\fR(5).)
101 .IP \fBvacancy:\fIlow\fB,\fIhigh\fR
102 Enables sending vacancy events to controllers using \fBTABLE_STATUS\fR
103 messages, based on percentage thresholds \fIlow\fR and \fIhigh\fR.
104 .IP \fBnovacancy\fR
105 Disables vacancy events.
106 .RE
107 .
108 .TP
109 \fBdump\-ports \fIswitch\fR [\fInetdev\fR]
110 Prints to the console statistics for network devices associated with 
111 \fIswitch\fR.  If \fInetdev\fR is specified, only the statistics
112 associated with that device will be printed.  \fInetdev\fR can be an
113 OpenFlow assigned port number or device name, e.g. \fBeth0\fR.
114 .
115 .IP "\fBdump\-ports\-desc \fIswitch\fR [\fIport\fR]"
116 Prints to the console detailed information about network devices
117 associated with \fIswitch\fR.  To dump only a specific port, specify
118 its number as \fIport\fR.  Otherwise, if \fIport\fR is omitted, or if
119 it is specified as \fBANY\fR, then all ports are printed.  This is a
120 subset of the information provided by the \fBshow\fR command.
121 .IP
122 If the connection to \fIswitch\fR negotiates OpenFlow 1.0, 1.2, or
123 1.2, this command uses an OpenFlow extension only implemented in Open
124 vSwitch (version 1.7 and later).
125 .IP
126 Only OpenFlow 1.5 and later support dumping a specific port.  Earlier
127 versions of OpenFlow always dump all ports.
128 .
129 .IP "\fBmod\-port \fIswitch\fR \fIport\fR \fIaction\fR"
130 Modify characteristics of port \fBport\fR in \fIswitch\fR.  \fIport\fR
131 may be an OpenFlow port number or name or the keyword \fBLOCAL\fR (the
132 preferred way to refer to the OpenFlow local port).  The \fIaction\fR
133 may be any one of the following:
134 .
135 .RS
136 .IQ \fBup\fR
137 .IQ \fBdown\fR
138 Enable or disable the interface.  This is equivalent to \fBifconfig
139 up\fR or \fBifconfig down\fR on a Unix system.
140 .
141 .IP \fBstp\fR
142 .IQ \fBno\-stp\fR
143 Enable or disable 802.1D spanning tree protocol (STP) on the
144 interface.  OpenFlow implementations that don't support STP will
145 refuse to enable it.
146 .
147 .IP \fBreceive\fR
148 .IQ \fBno\-receive\fR
149 .IQ \fBreceive\-stp\fR
150 .IQ \fBno\-receive\-stp\fR
151 Enable or disable OpenFlow processing of packets received on this
152 interface.  When packet processing is disabled, packets will be
153 dropped instead of being processed through the OpenFlow table.  The
154 \fBreceive\fR or \fBno\-receive\fR setting applies to all packets
155 except 802.1D spanning tree packets, which are separately controlled
156 by \fBreceive\-stp\fR or \fBno\-receive\-stp\fR.
157 .
158 .IP \fBforward\fR
159 .IQ \fBno\-forward\fR
160 Allow or disallow forwarding of traffic to this interface.  By
161 default, forwarding is enabled.
162 .
163 .IP \fBflood\fR
164 .IQ \fBno\-flood\fR
165 Controls whether an OpenFlow \fBflood\fR action will send traffic out
166 this interface.  By default, flooding is enabled.  Disabling flooding
167 is primarily useful to prevent loops when a spanning tree protocol is
168 not in use.
169 .
170 .IP \fBpacket\-in\fR
171 .IQ \fBno\-packet\-in\fR
172 Controls whether packets received on this interface that do not match
173 a flow table entry generate a ``packet in'' message to the OpenFlow
174 controller.  By default, ``packet in'' messages are enabled.
175 .RE
176 .IP
177 The \fBshow\fR command displays (among other information) the
178 configuration that \fBmod\-port\fR changes.
179 .
180 .IP "\fBget\-frags \fIswitch\fR"
181 Prints \fIswitch\fR's fragment handling mode.  See \fBset\-frags\fR,
182 below, for a description of each fragment handling mode.
183 .IP
184 The \fBshow\fR command also prints the fragment handling mode among
185 its other output.
186 .
187 .IP "\fBset\-frags \fIswitch frag_mode\fR"
188 Configures \fIswitch\fR's treatment of IPv4 and IPv6 fragments.  The
189 choices for \fIfrag_mode\fR are:
190 .RS
191 .IP "\fBnormal\fR"
192 Fragments pass through the flow table like non-fragmented packets.
193 The TCP ports, UDP ports, and ICMP type and code fields are always set
194 to 0, even for fragments where that information would otherwise be
195 available (fragments with offset 0).  This is the default fragment
196 handling mode for an OpenFlow switch.
197 .IP "\fBdrop\fR"
198 Fragments are dropped without passing through the flow table.
199 .IP "\fBreassemble\fR"
200 The switch reassembles fragments into full IP packets before passing
201 them through the flow table.  Open vSwitch does not implement this
202 fragment handling mode.
203 .IP "\fBnx\-match\fR"
204 Fragments pass through the flow table like non-fragmented packets.
205 The TCP ports, UDP ports, and ICMP type and code fields are available
206 for matching for fragments with offset 0, and set to 0 in fragments
207 with nonzero offset.  This mode is a Nicira extension.
208 .RE
209 .IP
210 See the description of \fBip_frag\fR, below, for a way to match on
211 whether a packet is a fragment and on its fragment offset.
212 .
213 .TP
214 \fBdump\-flows \fIswitch \fR[\fIflows\fR]
215 Prints to the console all flow entries in \fIswitch\fR's
216 tables that match \fIflows\fR.  If \fIflows\fR is omitted, all flows
217 in the switch are retrieved.  See \fBFlow Syntax\fR, below, for the
218 syntax of \fIflows\fR.  The output format is described in
219 \fBTable Entry Output\fR.
220 .
221 .IP
222 By default, \fBovs\-ofctl\fR prints flow entries in the same order
223 that the switch sends them, which is unlikely to be intuitive or
224 consistent.  See the description of \fB\-\-sort\fR and \fB\-\-rsort\fR,
225 under \fBOPTIONS\fR below, to influence the display order.
226 .
227 .TP
228 \fBdump\-aggregate \fIswitch \fR[\fIflows\fR]
229 Prints to the console aggregate statistics for flows in
230 \fIswitch\fR's tables that match \fIflows\fR.  If \fIflows\fR is omitted, 
231 the statistics are aggregated across all flows in the switch's flow
232 tables.  See \fBFlow Syntax\fR, below, for the syntax of \fIflows\fR.
233 The output format is described in \fBTable Entry Output\fR.
234 .
235 .IP "\fBqueue\-stats \fIswitch \fR[\fIport \fR[\fIqueue\fR]]"
236 Prints to the console statistics for the specified \fIqueue\fR on
237 \fIport\fR within \fIswitch\fR.  \fIport\fR can be an OpenFlow port
238 number or name, the keyword \fBLOCAL\fR (the preferred way to refer to
239 the OpenFlow local port), or the keyword \fBALL\fR.  Either of
240 \fIport\fR or \fIqueue\fR or both may be omitted (or equivalently the
241 keyword \fBALL\fR).  If both are omitted, statistics are printed for
242 all queues on all ports.  If only \fIqueue\fR is omitted, then
243 statistics are printed for all queues on \fIport\fR; if only
244 \fIport\fR is omitted, then statistics are printed for \fIqueue\fR on
245 every port where it exists.
246 .
247 .IP "\fBqueue\-get\-config \fIswitch [\fIport \fR[\fIqueue\fR]]"
248 Prints to the console the configuration of \fIqueue\fR on \fIport\fR
249 in \fIswitch\fR.  If \fIport\fR is omitted or \fBANY\fR, reports
250 queues for all port.  If \fIqueue\fR is omitted or \fBANY\fR, reports
251 all queues.  For OpenFlow 1.3 and earlier, the output always includes
252 all queues, ignoring \fIqueue\fR if specified.
253 .IP
254 This command has limited usefulness, because ports often have no
255 configured queues and because the OpenFlow protocol provides only very
256 limited information about the configuration of a queue.
257 .
258 .SS "OpenFlow 1.1+ Group Table Commands"
259 .
260 The following commands work only with switches that support OpenFlow
261 1.1 or later.  Because support for OpenFlow 1.1 and later is still
262 experimental in Open vSwitch, it is necessary to explicitly enable
263 these protocol versions in \fBovs\-ofctl\fR (using \fB\-O\fR) and in
264 the switch itself (with the \fBprotocols\fR column in the \fBBridge\fR
265 table).  For more information, see ``Q: What versions of OpenFlow does
266 Open vSwitch support?'' in the Open vSwitch FAQ.
267 .
268 .IP "\fBdump\-groups \fIswitch\fR [\fIgroup\fR]"
269 Prints group entries in \fIswitch\fR's tables to console.  To dump
270 only a specific group, specify its number as \fIgroup\fR.  Otherwise,
271 if \fIgroup\fR is omitted, or if it is specified as \fBALL\fR, then
272 all groups are printed.  Each line of output is a group entry as
273 described in \fBGroup Syntax\fR below.
274 .IP
275 Only OpenFlow 1.5 and later support dumping a specific group.  Earlier
276 versions of OpenFlow always dump all groups.
277 .
278 .IP "\fBdump\-group\-features \fIswitch"
279 Prints to the console the group features of the \fIswitch\fR.
280 .
281 .IP "\fBdump\-group-stats \fIswitch \fR[\fIgroups\fR]"
282 Prints to the console statistics for the specified \fIgroups in the
283 \fIswitch\fR's tables.  If \fIgroups\fR is omitted then statistics for all
284 groups are printed.  See \fBGroup Syntax\fR, below, for the syntax of
285 \fIgroups\fR.
286 .
287 .SS "OpenFlow 1.3+ Switch Meter Table Commands"
288 .
289 These commands manage the meter table in an OpenFlow switch.  In each
290 case, \fImeter\fR specifies a meter entry in the format described in
291 \fBMeter Syntax\fR, below.
292 .
293 .PP
294 OpenFlow 1.3 introduced support for meters, so these commands only
295 work with switches that support OpenFlow 1.3 or later.  The caveats
296 described for groups in the previous section also apply to meters.
297 .
298 .IP "\fBadd\-meter \fIswitch meter\fR"
299 Add a meter entry to \fIswitch\fR's tables. The \fImeter\fR syntax is
300 described in section \fBMeter Syntax\fR, below.
301 .
302 .IP "\fBmod\-meter \fIswitch meter\fR"
303 Modify an existing meter.
304 .
305 .IP "\fBdel\-meters \fIswitch\fR"
306 .IQ "\fBdel\-meter \fIswitch\fR [\fImeter\fR]"
307 Delete entries from \fIswitch\fR's meter table.  \fImeter\fR can specify
308 a single meter with syntax \fBmeter=\fIid\fR, or all meters with syntax
309 \fBmeter=all\fR.
310 .
311 .IP "\fBdump\-meters \fIswitch\fR"
312 .IQ "\fBdump\-meter \fIswitch\fR [\fImeter\fR]"
313 Print meter configuration.  \fImeter\fR can specify a single meter with
314 syntax \fBmeter=\fIid\fR, or all meters with syntax \fBmeter=all\fR.
315 .
316 .IP "\fBmeter\-stats \fIswitch\fR [\fImeter\fR]"
317 Print meter statistics.  \fImeter\fR can specify a single meter with
318 syntax \fBmeter=\fIid\fR, or all meters with syntax \fBmeter=all\fR.
319 .
320 .IP "\fBmeter\-features \fIswitch\fR"
321 Print meter features.
322 .
323 .SS "OpenFlow Switch Flow Table Commands"
324 .
325 These commands manage the flow table in an OpenFlow switch.  In each
326 case, \fIflow\fR specifies a flow entry in the format described in
327 \fBFlow Syntax\fR, below, \fIfile\fR is a text file that contains zero
328 or more flows in the same syntax, one per line, and the optional
329 \fB\-\-bundle\fR option operates the command as a single atomic
330 transation, see option \fB\-\-bundle\fR, below.
331 .
332 .IP "[\fB\-\-bundle\fR] \fBadd\-flow \fIswitch flow\fR"
333 .IQ "[\fB\-\-bundle\fR] \fBadd\-flow \fIswitch \fB\- < \fIfile\fR"
334 .IQ "[\fB\-\-bundle\fR] \fBadd\-flows \fIswitch file\fR"
335 Add each flow entry to \fIswitch\fR's tables.
336 .
337 Each flow specification (e.g., each line in \fIfile\fR) may start with
338 \fBadd\fR, \fBmodify\fR, \fBdelete\fR, \fBmodify_strict\fR, or
339 \fBdelete_strict\fR keyword to specify whether a flow is to be added,
340 modified, or deleted, and whether the modify or delete is strict or
341 not.  For backwards compatibility a flow specification without one of
342 these keywords is treated as a flow add.  All flow mods are executed
343 in the order specified.
344 .
345 .IP "[\fB\-\-bundle\fR] [\fB\-\-strict\fR] \fBmod\-flows \fIswitch flow\fR"
346 .IQ "[\fB\-\-bundle\fR] [\fB\-\-strict\fR] \fBmod\-flows \fIswitch \fB\- < \fIfile\fR"
347 Modify the actions in entries from \fIswitch\fR's tables that match
348 the specified flows.  With \fB\-\-strict\fR, wildcards are not treated
349 as active for matching purposes.
350 .
351 .IP "[\fB\-\-bundle\fR] \fBdel\-flows \fIswitch\fR"
352 .IQ "[\fB\-\-bundle\fR] [\fB\-\-strict\fR] \fBdel\-flows \fIswitch \fR[\fIflow\fR]"
353 .IQ "[\fB\-\-bundle\fR] [\fB\-\-strict\fR] \fBdel\-flows \fIswitch \fB\- < \fIfile\fR"
354 Deletes entries from \fIswitch\fR's flow table.  With only a
355 \fIswitch\fR argument, deletes all flows.  Otherwise, deletes flow
356 entries that match the specified flows.  With \fB\-\-strict\fR,
357 wildcards are not treated as active for matching purposes.
358 .
359 .IP "[\fB\-\-bundle\fR] [\fB\-\-readd\fR] \fBreplace\-flows \fIswitch file\fR"
360 Reads flow entries from \fIfile\fR (or \fBstdin\fR if \fIfile\fR is
361 \fB\-\fR) and queries the flow table from \fIswitch\fR.  Then it fixes
362 up any differences, adding flows from \fIflow\fR that are missing on
363 \fIswitch\fR, deleting flows from \fIswitch\fR that are not in
364 \fIfile\fR, and updating flows in \fIswitch\fR whose actions, cookie,
365 or timeouts differ in \fIfile\fR.
366 .
367 .IP
368 With \fB\-\-readd\fR, \fBovs\-ofctl\fR adds all the flows from
369 \fIfile\fR, even those that exist with the same actions, cookie, and
370 timeout in \fIswitch\fR.  This resets all the flow packet and byte
371 counters to 0, which can be useful for debugging.
372 .
373 .IP "\fBdiff\-flows \fIsource1 source2\fR"
374 Reads flow entries from \fIsource1\fR and \fIsource2\fR and prints the
375 differences.  A flow that is in \fIsource1\fR but not in \fIsource2\fR
376 is printed preceded by a \fB\-\fR, and a flow that is in \fIsource2\fR
377 but not in \fIsource1\fR is printed preceded by a \fB+\fR.  If a flow
378 exists in both \fIsource1\fR and \fIsource2\fR with different actions,
379 cookie, or timeouts, then both versions are printed preceded by
380 \fB\-\fR and \fB+\fR, respectively.
381 .IP
382 \fIsource1\fR and \fIsource2\fR may each name a file or a switch.  If
383 a name begins with \fB/\fR or \fB.\fR, then it is considered to be a
384 file name.  A name that contains \fB:\fR is considered to be a switch.
385 Otherwise, it is a file if a file by that name exists, a switch if
386 not.
387 .IP
388 For this command, an exit status of 0 means that no differences were
389 found, 1 means that an error occurred, and 2 means that some
390 differences were found.
391 .
392 .IP "\fBpacket\-out \fIswitch in_port actions packet\fR..."
393 Connects to \fIswitch\fR and instructs it to execute the OpenFlow
394 \fIactions\fR on each \fIpacket\fR.  Each \fBpacket\fR is specified as a
395 series of hex digits.  For the purpose of executing the
396 actions, the packets are considered to have arrived on \fIin_port\fR,
397 which may be an OpenFlow port number or name (e.g. \fBeth0\fR), the
398 keyword \fBLOCAL\fR (the preferred way to refer to the OpenFlow
399 ``local'' port), or the keyword \fBNONE\fR to indicate that the packet
400 was generated by the switch itself.
401 .
402 .SS "OpenFlow Switch Group Table Commands"
403 .
404 These commands manage the group table in an OpenFlow switch.  In each
405 case, \fIgroup\fR specifies a group entry in the format described in
406 \fBGroup Syntax\fR, below, and \fIfile\fR is a text file that contains
407 zero or more groups in the same syntax, one per line.
408
409 .IP "\fBadd\-group \fIswitch group\fR"
410 .IQ "\fBadd\-group \fIswitch \fB\- < \fIfile\fR"
411 .IQ "\fBadd\-groups \fIswitch file\fR"
412 Add each group entry to \fIswitch\fR's tables.
413 .
414 .IP "\fBmod\-group \fIswitch group\fR"
415 .IQ "\fBmod\-group \fIswitch \fB\- < \fIfile\fR"
416 Modify the action buckets in entries from \fIswitch\fR's tables for
417 each group entry.
418 .
419 .IP "\fBdel\-groups \fIswitch\fR"
420 .IQ "\fBdel\-groups \fIswitch \fR[\fIgroup\fR]"
421 .IQ "\fBdel\-groups \fIswitch \fB\- < \fIfile\fR"
422 Deletes entries from \fIswitch\fR's group table.  With only a
423 \fIswitch\fR argument, deletes all groups.  Otherwise, deletes the group
424 for each group entry.
425 .
426 .IP "\fBinsert\-buckets \fIswitch group\fR"
427 .IQ "\fBinsert\-buckets \fIswitch \fB\- < \fIfile\fR"
428 Add buckets to an existing group present in the \fIswitch\fR's group table.
429 If no \fIcommand_bucket_id\fR is present in the group specification then all
430 buckets of the group are removed.
431 .
432 .IP "\fBremove\-buckets \fIswitch group\fR"
433 .IQ "\fBremove\-buckets \fIswitch \fB\- < \fIfile\fR"
434 Remove buckets to an existing group present in the \fIswitch\fR's group table.
435 If no \fIcommand_bucket_id\fR is present in the group specification then all
436 buckets of the group are removed.
437 .
438 .SS "OpenFlow Switch Tunnel TLV Table Commands"
439 .
440 Open vSwitch maintains a mapping table between tunnel option TLVs (defined
441 by <class, type, length>) and NXM fields \fBtun_metadata\fIn\fR,
442 where \fIn\fR ranges from 0 to 63, that can be operated on for the
443 purposes of matches, actions, etc. This TLV table can be used for
444 Geneve option TLVs or other protocols with options in same TLV format
445 as Geneve options. This mapping must be explicitly specified by the user
446 through the following commands.
447
448 A TLV mapping is specified with the syntax
449 \fB{class=\fIclass\fB,type=\fItype\fB,len=\fIlength\fB}->tun_metadata\fIn\fR.
450 When an option mapping exists for a given \fBtun_metadata\fIn\fR,
451 matching on the defined field becomes possible, e.g.:
452
453 .RS
454 ovs-ofctl add-tlv-map br0 "{class=0xffff,type=0,len=4}->tun_metadata0"
455 .PP
456 ovs-ofctl add-flow br0 tun_metadata0=1234,actions=controller
457 .RE
458
459 A mapping should not be changed while it is in active
460 use by a flow. The result of doing so is undefined.
461
462 Currently, the TLV mapping table is shared between all OpenFlow
463 switches in a given instance of Open vSwitch. This restriction will
464 be lifted in the future to allow for easier management.
465
466 These commands are Nicira extensions to OpenFlow and require Open vSwitch
467 2.5 or later.
468
469 .IP "\fBadd\-tlv\-map \fIswitch option\fR[\fB,\fIoption\fR]..."
470 Add each \fIoption\fR to \fIswitch\fR's tables. Duplicate fields are
471 rejected.
472 .
473 .IP "\fBdel\-tlv\-map \fIswitch \fR[\fIoption\fR[\fB,\fIoption\fR]]..."
474 Delete each \fIoption\fR from \fIswitch\fR's table, or all option TLV
475 mapping if no \fIoption\fR is specified.
476 Fields that aren't mapped are ignored.
477 .
478 .IP "\fBdump\-tlv\-map \fIswitch\fR"
479 Show the currently mapped fields in the switch's option table as well
480 as switch capabilities.
481 .
482 .SS "OpenFlow Switch Monitoring Commands"
483 .
484 .IP "\fBsnoop \fIswitch\fR"
485 Connects to \fIswitch\fR and prints to the console all OpenFlow
486 messages received.  Unlike other \fBovs\-ofctl\fR commands, if
487 \fIswitch\fR is the name of a bridge, then the \fBsnoop\fR command
488 connects to a Unix domain socket named
489 \fB@RUNDIR@/\fIswitch\fB.snoop\fR.  \fBovs\-vswitchd\fR listens on
490 such a socket for each bridge and sends to it all of the OpenFlow
491 messages sent to or received from its configured OpenFlow controller.
492 Thus, this command can be used to view OpenFlow protocol activity
493 between a switch and its controller.
494 .IP
495 When a switch has more than one controller configured, only the
496 traffic to and from a single controller is output.  If none of the
497 controllers is configured as a master or a slave (using a Nicira
498 extension to OpenFlow 1.0 or 1.1, or a standard request in OpenFlow
499 1.2 or later), then a controller is chosen arbitrarily among
500 them.  If there is a master controller, it is chosen; otherwise, if
501 there are any controllers that are not masters or slaves, one is
502 chosen arbitrarily; otherwise, a slave controller is chosen
503 arbitrarily.  This choice is made once at connection time and does not
504 change as controllers reconfigure their roles.
505 .IP
506 If a switch has no controller configured, or if
507 the configured controller is disconnected, no traffic is sent, so
508 monitoring will not show any traffic.
509 .
510 .IP "\fBmonitor \fIswitch\fR [\fImiss-len\fR] [\fBinvalid_ttl\fR] [\fBwatch:\fR[\fIspec\fR...]]"
511 Connects to \fIswitch\fR and prints to the console all OpenFlow
512 messages received.  Usually, \fIswitch\fR should specify the name of a
513 bridge in the \fBovs\-vswitchd\fR database.
514 .IP
515 If \fImiss-len\fR is provided, \fBovs\-ofctl\fR sends an OpenFlow ``set
516 configuration'' message at connection setup time that requests
517 \fImiss-len\fR bytes of each packet that misses the flow table.  Open vSwitch
518 does not send these and other asynchronous messages to an
519 \fBovs\-ofctl monitor\fR client connection unless a nonzero value is
520 specified on this argument.  (Thus, if \fImiss\-len\fR is not
521 specified, very little traffic will ordinarily be printed.)
522 .IP
523 If \fBinvalid_ttl\fR is passed, \fBovs\-ofctl\fR sends an OpenFlow ``set
524 configuration'' message at connection setup time that requests
525 \fBINVALID_TTL_TO_CONTROLLER\fR, so that \fBovs\-ofctl monitor\fR can
526 receive ``packet-in'' messages when TTL reaches zero on \fBdec_ttl\fR action.
527 Only OpenFlow 1.1 and 1.2 support \fBinvalid_ttl\fR; Open vSwitch also
528 implements it for OpenFlow 1.0 as an extension.
529 .IP
530 \fBwatch:\fR[\fB\fIspec\fR...] causes \fBovs\-ofctl\fR to send a
531 ``monitor request'' Nicira extension message to the switch at
532 connection setup time.  This message causes the switch to send
533 information about flow table changes as they occur.  The following
534 comma-separated \fIspec\fR syntax is available:
535 .RS
536 .IP "\fB!initial\fR"
537 Do not report the switch's initial flow table contents.
538 .IP "\fB!add\fR"
539 Do not report newly added flows.
540 .IP "\fB!delete\fR"
541 Do not report deleted flows.
542 .IP "\fB!modify\fR"
543 Do not report modifications to existing flows.
544 .IP "\fB!own\fR"
545 Abbreviate changes made to the flow table by \fBovs\-ofctl\fR's own
546 connection to the switch.  (These could only occur using the
547 \fBofctl/send\fR command described below under \fBRUNTIME MANAGEMENT
548 COMMANDS\fR.)
549 .IP "\fB!actions\fR"
550 Do not report actions as part of flow updates.
551 .IP "\fBtable=\fInumber\fR"
552 Limits the monitoring to the table with the given \fInumber\fR between
553 0 and 254.  By default, all tables are monitored.
554 .IP "\fBout_port=\fIport\fR"
555 If set, only flows that output to \fIport\fR are monitored.  The
556 \fIport\fR may be an OpenFlow port number or keyword
557 (e.g. \fBLOCAL\fR).
558 .IP "\fIfield\fB=\fIvalue\fR"
559 Monitors only flows that have \fIfield\fR specified as the given
560 \fIvalue\fR.  Any syntax valid for matching on \fBdump\-flows\fR may
561 be used.
562 .RE
563 .IP
564 This command may be useful for debugging switch or controller
565 implementations.  With \fBwatch:\fR, it is particularly useful for
566 observing how a controller updates flow tables.
567 .
568 .SS "OpenFlow Switch and Controller Commands"
569 .
570 The following commands, like those in the previous section, may be
571 applied to OpenFlow switches, using any of the connection methods
572 described in that section.  Unlike those commands, these may also be
573 applied to OpenFlow controllers.
574 .
575 .TP
576 \fBprobe \fItarget\fR
577 Sends a single OpenFlow echo-request message to \fItarget\fR and waits
578 for the response.  With the \fB\-t\fR or \fB\-\-timeout\fR option, this
579 command can test whether an OpenFlow switch or controller is up and
580 running.
581 .
582 .TP
583 \fBping \fItarget \fR[\fIn\fR]
584 Sends a series of 10 echo request packets to \fItarget\fR and times
585 each reply.  The echo request packets consist of an OpenFlow header
586 plus \fIn\fR bytes (default: 64) of randomly generated payload.  This
587 measures the latency of individual requests.
588 .
589 .TP
590 \fBbenchmark \fItarget n count\fR
591 Sends \fIcount\fR echo request packets that each consist of an
592 OpenFlow header plus \fIn\fR bytes of payload and waits for each
593 response.  Reports the total time required.  This is a measure of the
594 maximum bandwidth to \fItarget\fR for round-trips of \fIn\fR-byte
595 messages.
596 .
597 .SS "Other Commands"
598 .
599 .IP "\fBofp\-parse\fR \fIfile\fR"
600 Reads \fIfile\fR (or \fBstdin\fR if \fIfile\fR is \fB\-\fR) as a
601 series of OpenFlow messages in the binary format used on an OpenFlow
602 connection, and prints them to the console.  This can be useful for
603 printing OpenFlow messages captured from a TCP stream.
604 .
605 .IP "\fBofp\-parse\-pcap\fR \fIfile\fR [\fIport\fR...]"
606 Reads \fIfile\fR, which must be in the PCAP format used by network
607 capture tools such as \fBtcpdump\fR or \fBwireshark\fR, extracts all
608 the TCP streams for OpenFlow connections, and prints the OpenFlow
609 messages in those connections in human-readable format on
610 \fBstdout\fR.
611 .IP
612 OpenFlow connections are distinguished by TCP port number.
613 Non-OpenFlow packets are ignored.  By default, data on TCP ports 6633
614 and 6653 are considered to be OpenFlow.  Specify one or more
615 \fIport\fR arguments to override the default.
616 .IP
617 This command cannot usefully print SSL encrypted traffic.  It does not
618 understand IPv6.
619 .
620 .SS "Flow Syntax"
621 .PP
622 Some \fBovs\-ofctl\fR commands accept an argument that describes a flow or
623 flows.  Such flow descriptions comprise a series
624 \fIfield\fB=\fIvalue\fR assignments, separated by commas or white
625 space.  (Embedding spaces into a flow description normally requires
626 quoting to prevent the shell from breaking the description into
627 multiple arguments.)
628 .PP
629 Flow descriptions should be in \fBnormal form\fR.  This means that a
630 flow may only specify a value for an L3 field if it also specifies a
631 particular L2 protocol, and that a flow may only specify an L4 field
632 if it also specifies particular L2 and L3 protocol types.  For
633 example, if the L2 protocol type \fBdl_type\fR is wildcarded, then L3
634 fields \fBnw_src\fR, \fBnw_dst\fR, and \fBnw_proto\fR must also be
635 wildcarded.  Similarly, if \fBdl_type\fR or \fBnw_proto\fR (the L3
636 protocol type) is wildcarded, so must be the L4 fields \fBtcp_dst\fR and
637 \fBtcp_src\fR.  \fBovs\-ofctl\fR will warn about
638 flows not in normal form.
639 .PP
640 The following field assignments describe how a flow matches a packet.
641 If any of these assignments is omitted from the flow syntax, the field
642 is treated as a wildcard; thus, if all of them are omitted, the
643 resulting flow matches all packets.  The string \fB*\fR may be specified
644 to explicitly mark any of these fields as a wildcard.
645 (\fB*\fR should be quoted to protect it from shell expansion.)
646 .
647 .IP \fBin_port=\fIport\fR
648 Matches OpenFlow port \fIport\fR, which may be an OpenFlow port number
649 or keyword (e.g. \fBLOCAL\fR).
650 \fBovs\-ofctl show\fR.
651 .IP
652 (The \fBresubmit\fR action can search OpenFlow flow tables with
653 arbitrary \fBin_port\fR values, so flows that match port numbers that
654 do not exist from an OpenFlow perspective can still potentially be
655 matched.)
656 .
657 .IP \fBdl_vlan=\fIvlan\fR
658 Matches IEEE 802.1q Virtual LAN tag \fIvlan\fR.  Specify \fB0xffff\fR
659 as \fIvlan\fR to match packets that are not tagged with a Virtual LAN;
660 otherwise, specify a number between 0 and 4095, inclusive, as the
661 12-bit VLAN ID to match.
662 .
663 .IP \fBdl_vlan_pcp=\fIpriority\fR
664 Matches IEEE 802.1q Priority Code Point (PCP) \fIpriority\fR, which is
665 specified as a value between 0 and 7, inclusive.  A higher value
666 indicates a higher frame priority level.
667 .
668 .IP \fBdl_src=\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fR
669 .IQ \fBdl_dst=\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fR
670 Matches an Ethernet source (or destination) address specified as 6
671 pairs of hexadecimal digits delimited by colons
672 (e.g. \fB00:0A:E4:25:6B:B0\fR).
673 .
674 .IP \fBdl_src=\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB/\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fR
675 .IQ \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
676 Matches an Ethernet destination address specified as 6 pairs of
677 hexadecimal digits delimited by colons (e.g. \fB00:0A:E4:25:6B:B0\fR),
678 with a wildcard mask following the slash. Open vSwitch 1.8 and later
679 support arbitrary masks for source and/or destination. Earlier
680 versions only support masking the destination with the following masks:
681 .RS
682 .IP \fB01:00:00:00:00:00\fR
683 Match only the multicast bit.  Thus,
684 \fBdl_dst=01:00:00:00:00:00/01:00:00:00:00:00\fR matches all multicast
685 (including broadcast) Ethernet packets, and
686 \fBdl_dst=00:00:00:00:00:00/01:00:00:00:00:00\fR matches all unicast
687 Ethernet packets.
688 .IP \fBfe:ff:ff:ff:ff:ff\fR
689 Match all bits except the multicast bit.  This is probably not useful.
690 .IP \fBff:ff:ff:ff:ff:ff\fR
691 Exact match (equivalent to omitting the mask).
692 .IP \fB00:00:00:00:00:00\fR
693 Wildcard all bits (equivalent to \fBdl_dst=*\fR.)
694 .RE
695 .
696 .IP \fBdl_type=\fIethertype\fR
697 Matches Ethernet protocol type \fIethertype\fR, which is specified as an
698 integer between 0 and 65535, inclusive, either in decimal or as a 
699 hexadecimal number prefixed by \fB0x\fR (e.g. \fB0x0806\fR to match ARP 
700 packets).
701 .
702 .IP \fBnw_src=\fIip\fR[\fB/\fInetmask\fR]
703 .IQ \fBnw_dst=\fIip\fR[\fB/\fInetmask\fR]
704 When \fBdl_type\fR is 0x0800 (possibly via shorthand, e.g. \fBip\fR
705 or \fBtcp\fR), matches IPv4 source (or destination) address \fIip\fR,
706 which may be specified as an IP address or host name
707 (e.g. \fB192.168.1.1\fR or \fBwww.example.com\fR).  The optional
708 \fInetmask\fR allows restricting a match to an IPv4 address prefix.
709 The netmask may be specified as a dotted quad
710 (e.g. \fB192.168.1.0/255.255.255.0\fR) or as a CIDR block
711 (e.g. \fB192.168.1.0/24\fR).  Open vSwitch 1.8 and later support
712 arbitrary dotted quad masks; earlier versions support only CIDR masks,
713 that is, the dotted quads that are equivalent to some CIDR block.
714 .IP
715 When \fBdl_type=0x0806\fR or \fBarp\fR is specified, matches the
716 \fBar_spa\fR or \fBar_tpa\fR field, respectively, in ARP packets for
717 IPv4 and Ethernet.
718 .IP
719 When \fBdl_type=0x8035\fR or \fBrarp\fR is specified, matches the
720 \fBar_spa\fR or \fBar_tpa\fR field, respectively, in RARP packets for
721 IPv4 and Ethernet.
722 .IP
723 When \fBdl_type\fR is wildcarded or set to a value other than 0x0800,
724 0x0806, or 0x8035, the values of \fBnw_src\fR and \fBnw_dst\fR are ignored
725 (see \fBFlow Syntax\fR above).
726 .
727 .IP \fBnw_proto=\fIproto\fR
728 .IQ \fBip_proto=\fIproto\fR
729 When \fBip\fR or \fBdl_type=0x0800\fR is specified, matches IP
730 protocol type \fIproto\fR, which is specified as a decimal number
731 between 0 and 255, inclusive (e.g. 1 to match ICMP packets or 6 to match
732 TCP packets).
733 .IP
734 When \fBipv6\fR or \fBdl_type=0x86dd\fR is specified, matches IPv6
735 header type \fIproto\fR, which is specified as a decimal number between
736 0 and 255, inclusive (e.g. 58 to match ICMPv6 packets or 6 to match
737 TCP).  The header type is the terminal header as described in the
738 \fBDESIGN\fR document.
739 .IP
740 When \fBarp\fR or \fBdl_type=0x0806\fR is specified, matches the lower
741 8 bits of the ARP opcode.  ARP opcodes greater than 255 are treated as
742 0.
743 .IP
744 When \fBrarp\fR or \fBdl_type=0x8035\fR is specified, matches the lower
745 8 bits of the ARP opcode.  ARP opcodes greater than 255 are treated as
746 0.
747 .IP
748 When \fBdl_type\fR is wildcarded or set to a value other than 0x0800,
749 0x0806, 0x8035 or 0x86dd, the value of \fBnw_proto\fR is ignored (see
750 \fBFlow Syntax\fR above).
751 .
752 .IP \fBnw_tos=\fItos\fR
753 Matches IP ToS/DSCP or IPv6 traffic class field \fItos\fR, which is
754 specified as a decimal number between 0 and 255, inclusive.  Note that
755 the two lower reserved bits are ignored for matching purposes.
756 .IP
757 When \fBdl_type\fR is wildcarded or set to a value other than 0x0800 or
758 0x86dd, the value of \fBnw_tos\fR is ignored (see \fBFlow Syntax\fR
759 above).
760 .
761 .IP \fBip_dscp=\fIdscp\fR
762 Matches IP ToS/DSCP or IPv6 traffic class field \fIdscp\fR, which is
763 specified as a decimal number between 0 and 63, inclusive.
764 .IP
765 When \fBdl_type\fR is wildcarded or set to a value other than 0x0800 or
766 0x86dd, the value of \fBip_dscp\fR is ignored (see \fBFlow Syntax\fR
767 above).
768 .
769 .IP \fBnw_ecn=\fIecn\fR
770 .IQ \fBip_ecn=\fIecn\fR
771 Matches \fIecn\fR bits in IP ToS or IPv6 traffic class fields, which is
772 specified as a decimal number between 0 and 3, inclusive.
773 .IP
774 When \fBdl_type\fR is wildcarded or set to a value other than 0x0800 or
775 0x86dd, the value of \fBnw_ecn\fR is ignored (see \fBFlow Syntax\fR
776 above).
777 .
778 .IP \fBnw_ttl=\fIttl\fR
779 Matches IP TTL or IPv6 hop limit value \fIttl\fR, which is
780 specified as a decimal number between 0 and 255, inclusive.
781 .IP
782 When \fBdl_type\fR is wildcarded or set to a value other than 0x0800 or
783 0x86dd, the value of \fBnw_ttl\fR is ignored (see \fBFlow Syntax\fR
784 above).
785 .IP
786 .
787 .IP \fBtcp_src=\fIport\fR
788 .IQ \fBtcp_dst=\fIport\fR
789 .IQ \fBudp_src=\fIport\fR
790 .IQ \fBudp_dst=\fIport\fR
791 .IQ \fBsctp_src=\fIport\fR
792 .IQ \fBsctp_dst=\fIport\fR
793 Matches a TCP, UDP, or SCTP source or destination port \fIport\fR,
794 which is specified as a decimal number between 0 and 65535, inclusive.
795 .IP
796 When \fBdl_type\fR and \fBnw_proto\fR are wildcarded or set to values
797 that do not indicate an appropriate protocol, the values of these
798 settings are ignored (see \fBFlow Syntax\fR above).
799 .
800 .IP \fBtcp_src=\fIport\fB/\fImask\fR
801 .IQ \fBtcp_dst=\fIport\fB/\fImask\fR
802 .IQ \fBudp_src=\fIport\fB/\fImask\fR
803 .IQ \fBudp_dst=\fIport\fB/\fImask\fR
804 .IQ \fBsctp_src=\fIport\fB/\fImask\fR
805 .IQ \fBsctp_dst=\fIport\fB/\fImask\fR
806 Bitwise match on TCP (or UDP or SCTP) source or destination port.
807 The \fIport\fR and \fImask\fR are 16-bit numbers
808 written in decimal or in hexadecimal prefixed by \fB0x\fR.  Each 1-bit
809 in \fImask\fR requires that the corresponding bit in \fIport\fR must
810 match.  Each 0-bit in \fImask\fR causes the corresponding bit to be
811 ignored.
812 .IP
813 Bitwise matches on transport ports are rarely useful in isolation, but
814 a group of them can be used to reduce the number of flows required to
815 match on a range of transport ports.  For example, suppose that the
816 goal is to match TCP source ports 1000 to 1999, inclusive.  One way is
817 to insert 1000 flows, each of which matches on a single source port.
818 Another way is to look at the binary representations of 1000 and 1999,
819 as follows:
820 .br
821 .B "01111101000"
822 .br
823 .B "11111001111"
824 .br
825 and then to transform those into a series of bitwise matches that
826 accomplish the same results:
827 .br
828 .B "01111101xxx"
829 .br
830 .B "0111111xxxx"
831 .br
832 .B "10xxxxxxxxx"
833 .br
834 .B "110xxxxxxxx"
835 .br
836 .B "1110xxxxxxx"
837 .br
838 .B "11110xxxxxx"
839 .br
840 .B "1111100xxxx"
841 .br
842 which become the following when written in the syntax required by
843 \fBovs\-ofctl\fR:
844 .br
845 .B "tcp,tcp_src=0x03e8/0xfff8"
846 .br
847 .B "tcp,tcp_src=0x03f0/0xfff0"
848 .br
849 .B "tcp,tcp_src=0x0400/0xfe00"
850 .br
851 .B "tcp,tcp_src=0x0600/0xff00"
852 .br
853 .B "tcp,tcp_src=0x0700/0xff80"
854 .br
855 .B "tcp,tcp_src=0x0780/0xffc0"
856 .br
857 .B "tcp,tcp_src=0x07c0/0xfff0"
858 .IP
859 Only Open vSwitch 1.6 and later supports bitwise matching on transport
860 ports.
861 .IP
862 Like the exact-match forms described
863 above, the bitwise match forms apply only when \fBdl_type\fR and
864 \fBnw_proto\fR specify TCP or UDP or SCTP.
865 .
866 .IP \fBtp_src=\fIport\fR
867 .IQ \fBtp_dst=\fIport\fR
868 These are deprecated generic forms of L4 port matches.  In new code,
869 please use the TCP-, UDP-, or SCTP-specific forms described above.
870 .
871 .IP \fBtcp_flags=\fIflags\fB/\fImask\fR
872 .IQ \fBtcp_flags=\fR[\fB+\fIflag\fR...][\fB-\fIflag\fR...]
873 Bitwise match on TCP flags.  The \fIflags\fR and \fImask\fR are 16-bit
874 numbers written in decimal or in hexadecimal prefixed by \fB0x\fR.
875 Each 1-bit in \fImask\fR requires that the corresponding bit in
876 \fIflags\fR must match.  Each 0-bit in \fImask\fR causes the corresponding
877 bit to be ignored.
878 .IP
879 Alternatively, the flags can be specified by their symbolic names
880 (listed below), each preceded by either \fB+\fR for a flag that must
881 be set, or \fB\-\fR for a flag that must be unset, without any other
882 delimiters between the flags.  Flags not mentioned are wildcarded.
883 For example, \fBtcp,tcp_flags=+syn\-ack\fR matches TCP SYNs that are
884 not ACKs.
885 .IP
886 TCP protocol currently defines 9 flag bits, and additional 3 bits are
887 reserved (must be transmitted as zero), see RFCs 793, 3168, and 3540.
888 The flag bits are, numbering from the least significant bit:
889 .RS
890 .IP "\fB0: fin\fR"
891 No more data from sender.
892 .IP "\fB1: syn\fR"
893 Synchronize sequence numbers.
894 .IP "\fB2: rst\fR"
895 Reset the connection.
896 .IP "\fB3: psh\fR"
897 Push function.
898 .IP "\fB4: ack\fR"
899 Acknowledgement field significant.
900 .IP "\fB5: urg\fR"
901 Urgent pointer field significant.
902 .IP "\fB6: ece\fR"
903 ECN Echo.
904 .IP "\fB7: cwr\fR"
905 Congestion Windows Reduced.
906 .IP "\fB8: ns\fR"
907 Nonce Sum.
908 .IP "\fB9-11:\fR"
909 Reserved.
910 .IP "\fB12-15:\fR"
911 Not matchable, must be zero.
912 .RE
913 .IP \fBicmp_type=\fItype\fR
914 .IQ \fBicmp_code=\fIcode\fR
915 When \fBdl_type\fR and \fBnw_proto\fR specify ICMP or ICMPv6, \fItype\fR
916 matches the ICMP type and \fIcode\fR matches the ICMP code.  Each is
917 specified as a decimal number between 0 and 255, inclusive.
918 .IP
919 When \fBdl_type\fR and \fBnw_proto\fR take other values, the values of
920 these settings are ignored (see \fBFlow Syntax\fR above).
921 .
922 .IP \fBtable=\fInumber\fR
923 For flow dump commands, limits the flows dumped to those in the table
924 with the given \fInumber\fR between 0 and 254.  If not specified (or if
925 255 is specified as \fInumber\fR), then flows in all tables are
926 dumped.
927 .
928 .IP
929 For flow table modification commands, behavior varies based on the
930 OpenFlow version used to connect to the switch:
931 .
932 .RS
933 .IP "OpenFlow 1.0"
934 OpenFlow 1.0 does not support \fBtable\fR for modifying flows.
935 \fBovs\-ofctl\fR will exit with an error if \fBtable\fR (other than
936 \fBtable=255\fR) is specified for a switch that only supports OpenFlow
937 1.0.
938 .IP
939 In OpenFlow 1.0, the switch chooses the table into which to insert a
940 new flow.  The Open vSwitch software switch always chooses table 0.
941 Other Open vSwitch datapaths and other OpenFlow implementations may
942 choose different tables.
943 .IP
944 The OpenFlow 1.0 behavior in Open vSwitch for modifying or removing
945 flows depends on whether \fB\-\-strict\fR is used.  Without
946 \fB\-\-strict\fR, the command applies to matching flows in all tables.
947 With \fB\-\-strict\fR, the command will operate on any single matching
948 flow in any table; it will do nothing if there are matches in more
949 than one table.  (The distinction between these behaviors only matters
950 if non-OpenFlow 1.0 commands were also used, because OpenFlow 1.0
951 alone cannot add flows with the same matching criteria to multiple
952 tables.)
953 .
954 .IP "OpenFlow 1.0 with table_id extension"
955 Open vSwitch implements an OpenFlow extension that allows the
956 controller to specify the table on which to operate.  \fBovs\-ofctl\fR
957 automatically enables the extension when \fBtable\fR is specified and
958 OpenFlow 1.0 is used.  \fBovs\-ofctl\fR automatically detects whether
959 the switch supports the extension.  As of this writing, this extension
960 is only known to be implemented by Open vSwitch.
961 .
962 .IP
963 With this extension, \fBovs\-ofctl\fR operates on the requested table
964 when \fBtable\fR is specified, and acts as described for OpenFlow 1.0
965 above when no \fBtable\fR is specified (or for \fBtable=255\fR).
966 .
967 .IP "OpenFlow 1.1"
968 OpenFlow 1.1 requires flow table modification commands to specify a
969 table.  When \fBtable\fR is not specified (or \fBtable=255\fR is
970 specified), \fBovs\-ofctl\fR defaults to table 0.
971 .
972 .IP "OpenFlow 1.2 and later"
973 OpenFlow 1.2 and later allow flow deletion commands, but not other
974 flow table modification commands, to operate on all flow tables, with
975 the behavior described above for OpenFlow 1.0.
976 .RE
977 .
978 .IP \fBmetadata=\fIvalue\fR[\fB/\fImask\fR]
979 Matches \fIvalue\fR either exactly or with optional \fImask\fR in the metadata
980 field. \fIvalue\fR and \fImask\fR are 64-bit integers, by default in decimal
981 (use a \fB0x\fR prefix to specify hexadecimal). Arbitrary \fImask\fR values
982 are allowed: a 1-bit in \fImask\fR indicates that the corresponding bit in
983 \fIvalue\fR must match exactly, and a 0-bit wildcards that bit. Matching on
984 metadata was added in Open vSwitch 1.8.
985 .
986 .PP
987 The following shorthand notations are also available:
988 .
989 .IP \fBip\fR
990 Same as \fBdl_type=0x0800\fR.
991 .
992 .IP \fBipv6\fR
993 Same as \fBdl_type=0x86dd\fR.
994 .
995 .IP \fBicmp\fR
996 Same as \fBdl_type=0x0800,nw_proto=1\fR.
997 .
998 .IP \fBicmp6\fR
999 Same as \fBdl_type=0x86dd,nw_proto=58\fR.
1000 .
1001 .IP \fBtcp\fR
1002 Same as \fBdl_type=0x0800,nw_proto=6\fR.
1003 .
1004 .IP \fBtcp6\fR
1005 Same as \fBdl_type=0x86dd,nw_proto=6\fR.
1006 .
1007 .IP \fBudp\fR
1008 Same as \fBdl_type=0x0800,nw_proto=17\fR.
1009 .
1010 .IP \fBudp6\fR
1011 Same as \fBdl_type=0x86dd,nw_proto=17\fR.
1012 .
1013 .IP \fBsctp\fR
1014 Same as \fBdl_type=0x0800,nw_proto=132\fR.
1015 .
1016 .IP \fBsctp6\fR
1017 Same as \fBdl_type=0x86dd,nw_proto=132\fR.
1018 .
1019 .IP \fBarp\fR
1020 Same as \fBdl_type=0x0806\fR.
1021 .
1022 .IP \fBrarp\fR
1023 Same as \fBdl_type=0x8035\fR.
1024 .
1025 .IP \fBmpls\fR
1026 Same as \fBdl_type=0x8847\fR.
1027 .
1028 .IP \fBmplsm\fR
1029 Same as \fBdl_type=0x8848\fR.
1030 .
1031 .PP
1032 The following field assignments require support for the NXM (Nicira
1033 Extended Match) extension to OpenFlow.  When one of these is specified,
1034 \fBovs\-ofctl\fR will automatically attempt to negotiate use of this
1035 extension.  If the switch does not support NXM, then \fBovs\-ofctl\fR
1036 will report a fatal error.
1037 .
1038 .IP \fBvlan_tci=\fItci\fR[\fB/\fImask\fR]
1039 Matches modified VLAN TCI \fItci\fR.  If \fImask\fR is omitted,
1040 \fItci\fR is the exact VLAN TCI to match; if \fImask\fR is specified,
1041 then a 1-bit in \fImask\fR indicates that the corresponding bit in
1042 \fItci\fR must match exactly, and a 0-bit wildcards that bit.  Both
1043 \fItci\fR and \fImask\fR are 16-bit values that are decimal by
1044 default; use a \fB0x\fR prefix to specify them in hexadecimal.
1045 .
1046 .IP
1047 The value that \fBvlan_tci\fR matches against is 0 for a packet that
1048 has no 802.1Q header.  Otherwise, it is the TCI value from the 802.1Q
1049 header with the CFI bit (with value \fB0x1000\fR) forced to 1.
1050 .IP
1051 Examples:
1052 .RS
1053 .IP \fBvlan_tci=0\fR
1054 Match packets without an 802.1Q header.
1055 .IP \fBvlan_tci=0x1000/0x1000\fR
1056 Match packets with an 802.1Q header, regardless of VLAN and priority
1057 values.
1058 .IP \fBvlan_tci=0xf123\fR
1059 Match packets tagged with priority 7 in VLAN 0x123.
1060 .IP \fBvlan_tci=0x1123/0x1fff\fR
1061 Match packets tagged with VLAN 0x123 (and any priority).
1062 .IP \fBvlan_tci=0x5000/0xf000\fR
1063 Match packets tagged with priority 2 (in any VLAN).
1064 .IP \fBvlan_tci=0/0xfff\fR
1065 Match packets with no 802.1Q header or tagged with VLAN 0 (and any
1066 priority).
1067 .IP \fBvlan_tci=0x5000/0xe000\fR
1068 Match packets with no 802.1Q header or tagged with priority 2 (in any
1069 VLAN).
1070 .IP \fBvlan_tci=0/0xefff\fR
1071 Match packets with no 802.1Q header or tagged with VLAN 0 and priority
1072 0.
1073 .RE
1074 .IP
1075 Some of these matching possibilities can also be achieved with
1076 \fBdl_vlan\fR and \fBdl_vlan_pcp\fR.
1077 .
1078 .IP \fBip_frag=\fIfrag_type\fR
1079 When \fBdl_type\fR specifies IP or IPv6, \fIfrag_type\fR
1080 specifies what kind of IP fragments or non-fragments to match.  The
1081 following values of \fIfrag_type\fR are supported:
1082 .RS
1083 .IP "\fBno\fR"
1084 Matches only non-fragmented packets.
1085 .IP "\fByes\fR"
1086 Matches all fragments.
1087 .IP "\fBfirst\fR"
1088 Matches only fragments with offset 0.
1089 .IP "\fBlater\fR"
1090 Matches only fragments with nonzero offset.
1091 .IP "\fBnot_later\fR"
1092 Matches non-fragmented packets and fragments with zero offset.
1093 .RE
1094 .IP
1095 The \fBip_frag\fR match type is likely to be most useful in
1096 \fBnx\-match\fR mode.  See the description of the \fBset\-frags\fR
1097 command, above, for more details.
1098 .
1099 .IP \fBarp_spa=\fIip\fR[\fB/\fInetmask\fR]
1100 .IQ \fBarp_tpa=\fIip\fR[\fB/\fInetmask\fR]
1101 When \fBdl_type\fR specifies either ARP or RARP, \fBarp_spa\fR and
1102 \fBarp_tpa\fR match the source and target IPv4 address, respectively.
1103 An address may be specified as an IP address or host name
1104 (e.g. \fB192.168.1.1\fR or \fBwww.example.com\fR).  The optional
1105 \fInetmask\fR allows restricting a match to an IPv4 address prefix.
1106 The netmask may be specified as a dotted quad
1107 (e.g. \fB192.168.1.0/255.255.255.0\fR) or as a CIDR block
1108 (e.g. \fB192.168.1.0/24\fR).
1109 .
1110 .IP \fBarp_sha=\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fR
1111 .IQ \fBarp_tha=\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fR
1112 When \fBdl_type\fR specifies either ARP or RARP, \fBarp_sha\fR and
1113 \fBarp_tha\fR match the source and target hardware address, respectively.  An
1114 address is specified as 6 pairs of hexadecimal digits delimited by colons
1115 (e.g. \fB00:0A:E4:25:6B:B0\fR).
1116 .
1117 .IP \fBarp_sha=\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB/\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fR
1118 .IQ \fBarp_tha=\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB/\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fR
1119 When \fBdl_type\fR specifies either ARP or RARP, \fBarp_sha\fR and
1120 \fBarp_tha\fR match the source and target hardware address, respectively.  An
1121 address is specified as 6 pairs of hexadecimal digits delimited by colons
1122 (e.g. \fB00:0A:E4:25:6B:B0\fR), with a wildcard mask following the slash.
1123 .
1124 .IP \fBarp_op=\fIopcode\fR
1125 When \fBdl_type\fR specifies either ARP or RARP, \fBarp_op\fR matches the
1126 ARP opcode.  Only ARP opcodes between 1 and 255 should be specified for
1127 matching.
1128 .
1129 .IP \fBipv6_src=\fIipv6\fR[\fB/\fInetmask\fR]
1130 .IQ \fBipv6_dst=\fIipv6\fR[\fB/\fInetmask\fR]
1131 When \fBdl_type\fR is 0x86dd (possibly via shorthand, e.g., \fBipv6\fR
1132 or \fBtcp6\fR), matches IPv6 source (or destination) address \fIipv6\fR,
1133 which may be specified as defined in RFC 2373.  The preferred format is 
1134 \fIx\fB:\fIx\fB:\fIx\fB:\fIx\fB:\fIx\fB:\fIx\fB:\fIx\fB:\fIx\fR, where
1135 \fIx\fR are the hexadecimal values of the eight 16-bit pieces of the
1136 address.  A single instance of \fB::\fR may be used to indicate multiple
1137 groups of 16-bits of zeros.  The optional \fInetmask\fR allows
1138 restricting a match to an IPv6 address prefix.  A netmask is specified
1139 as an IPv6 address (e.g. \fB2001:db8:3c4d:1::/ffff:ffff:ffff:ffff::\fR)
1140 or a CIDR block (e.g. \fB2001:db8:3c4d:1::/64\fR).  Open vSwitch 1.8
1141 and later support arbitrary masks; earlier versions support only CIDR
1142 masks, that is, CIDR block and IPv6 addresses that are equivalent to
1143 CIDR blocks.
1144 .
1145 .IP \fBipv6_label=\fIlabel\fR
1146 When \fBdl_type\fR is 0x86dd (possibly via shorthand, e.g., \fBipv6\fR
1147 or \fBtcp6\fR), matches IPv6 flow label \fIlabel\fR.
1148 .
1149 .IP \fBnd_target=\fIipv6\fR[\fB/\fInetmask\fR]
1150 When \fBdl_type\fR, \fBnw_proto\fR, and \fBicmp_type\fR specify
1151 IPv6 Neighbor Discovery (ICMPv6 type 135 or 136), matches the target address
1152 \fIipv6\fR.  \fIipv6\fR is in the same format described earlier for the
1153 \fBipv6_src\fR and \fBipv6_dst\fR fields.
1154 .
1155 .IP \fBnd_sll=\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fR
1156 When \fBdl_type\fR, \fBnw_proto\fR, and \fBicmp_type\fR specify IPv6
1157 Neighbor Solicitation (ICMPv6 type 135), matches the source link\-layer
1158 address option.  An address is specified as 6 pairs of hexadecimal
1159 digits delimited by colons.
1160 .
1161 .IP \fBnd_tll=\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fR
1162 When \fBdl_type\fR, \fBnw_proto\fR, and \fBicmp_type\fR specify IPv6
1163 Neighbor Advertisement (ICMPv6 type 136), matches the target link\-layer
1164 address option.  An address is specified as 6 pairs of hexadecimal
1165 digits delimited by colons.
1166 .
1167 .IP \fBmpls_bos=\fIbos\fR
1168 When \fBdl_type\fR is 0x8847 or 0x8848 (possibly via shorthand e.g.,
1169 \fBmpls\fR or \fBmplsm\fR), matches the bottom-of-stack bit of the
1170 outer-most MPLS label stack entry. Valid values are 0 and 1.
1171 .IP
1172 If 1 then for a packet with a well-formed MPLS label stack the
1173 bottom-of-stack bit indicates that the outer label stack entry is also
1174 the inner-most label stack entry and thus that is that there is only one
1175 label stack entry present.  Conversely, if 0 then for a packet with a
1176 well-formed MPLS label stack the bottom-of-stack bit indicates that the
1177 outer label stack entry is not the inner-most label stack entry and
1178 thus there is more than one label stack entry present.
1179 .
1180 .IP \fBmpls_label=\fIlabel\fR
1181 When \fBdl_type\fR is 0x8847 or 0x8848 (possibly via shorthand e.g.,
1182 \fBmpls\fR or \fBmplsm\fR), matches the label of the outer
1183 MPLS label stack entry. The label is a 20-bit value that is decimal by default;
1184 use a \fB0x\fR prefix to specify them in hexadecimal.
1185 .
1186 .IP \fBmpls_tc=\fItc\fR
1187 When \fBdl_type\fR is 0x8847 or 0x8848 (possibly via shorthand e.g.,
1188 \fBmpls\fR or \fBmplsm\fR), matches the traffic-class of the outer
1189 MPLS label stack entry. Valid values are between 0 (lowest) and 7 (highest).
1190 .
1191 .IP \fBtun_id=\fItunnel-id\fR[\fB/\fImask\fR]
1192 .IQ \fBtunnel_id=\fItunnel-id\fR[\fB/\fImask\fR]
1193 Matches tunnel identifier \fItunnel-id\fR.  Only packets that arrive
1194 over a tunnel that carries a key (e.g. GRE with the RFC 2890 key
1195 extension and a nonzero key value) will have a nonzero tunnel ID.
1196 If \fImask\fR is omitted, \fItunnel-id\fR is the exact tunnel ID to match;
1197 if \fImask\fR is specified, then a 1-bit in \fImask\fR indicates that the
1198 corresponding bit in \fItunnel-id\fR must match exactly, and a 0-bit
1199 wildcards that bit.
1200 .
1201 .IP \fBtun_flags=\fIflags\fR
1202 Matches flags indicating various aspects of the tunnel encapsulation. Currently,
1203 there is only one flag defined:
1204 .IP
1205 \fBoam\fR: The tunnel protocol indicated that this is an OAM control packet.
1206 .IP
1207 Flags can be prefixed by \fB+\fR or \fB-\fR to indicate that the flag should
1208 be matched as either present or not present, respectively. In addition, flags
1209 can be specified without a prefix and separated by \fB|\fR to indicate an exact
1210 match.
1211 .IP
1212 Note that it is possible for newer version of Open vSwitch to introduce
1213 additional flags with varying meaning. It is therefore not recommended to use
1214 an exact match on this field since the behavior of these new flags is unknown
1215 and should be ignored.
1216 .IP
1217 For non-tunneled packets, the value is 0.
1218 .IP
1219 This field was introduced in Open vSwitch 2.5.
1220 .
1221 .IP \fBtun_src=\fIipv4\fR[\fB/\fInetmask\fR]
1222 .IQ \fBtun_dst=\fIipv4\fR[\fB/\fInetmask\fR]
1223 .IQ \fBtun_ipv6_src=\fIipv6\fR[\fB/\fInetmask\fR]
1224 .IQ \fBtun_ipv6_dst=\fIipv6\fR[\fB/\fInetmask\fR]
1225 Matches tunnel IP source (or destination) address \fIip\fR. Only packets
1226 that arrive over a tunnel will have nonzero tunnel addresses.
1227 The address may be specified as an IP address or host name
1228 (e.g. \fB192.168.1.1\fR or \fBwww.example.com\fR).  The optional
1229 \fInetmask\fR allows restricting a match to a masked IP address.
1230 The netmask may be specified as a dotted quad
1231 (e.g. \fB192.168.1.0/255.255.255.0\fR) or as a CIDR block
1232 (e.g. \fB192.168.1.0/24\fR).
1233 .
1234 .IP \fBtun_gbp_id=\fIvalue\fR[\fB/\fImask\fR]
1235 .IQ \fBtun_gbp_flags=\fIvalue\fR[\fB/\fImask\fR]
1236 Matches the group policy identifier and flags in the VXLAN header. Only
1237 packets that arrive over a VXLAN tunnel with the "gbp" extension
1238 enabled can have this field set. The fields may also be referred to by
1239 NXM_NX_TUN_GBP_ID[] (16 bits) and NXM_NX_TUN_GBP_FLAGS[] (8 bits) in
1240 the context of field manipulation actions. If these fields are set and
1241 the packet matched by the flow is encapsulated in a VXLAN-GBP tunnel,
1242 then the policy identifier and flags are transmitted to the destination
1243 VXLAN tunnel endpoint.
1244 .IP
1245 The \fBtun_gbp_flags\fR field has the following format:
1246 .IP
1247 .in +2
1248 \f(CR+-+-+-+-+-+-+-+-+\fR
1249 .br
1250 \f(CR|-|D|-|-|A|-|-|-|\fR
1251 .br
1252 \f(CR+-+-+-+-+-+-+-+-+\fR
1253
1254 .B D :=
1255 Don't Learn bit. When set, this bit indicates that the egress
1256 tunnel endpoint MUST NOT learn the source address of the encapsulated
1257 frame.
1258
1259 .B A :=
1260 Indicates that the group policy has already been applied to
1261 this packet. Policies MUST NOT be applied by devices when the A bit is
1262 set.
1263 .in -2
1264 .IP
1265 For more information, please see the corresponding IETF draft:
1266 https://tools.ietf.org/html/draft-smith-vxlan-group-policy
1267 .
1268 .IP "\fBtun_metadata\fIidx\fR[\fB=\fIvalue\fR[\fB/\fImask\fR]]"
1269 Matches \fIvalue\fR either exactly or with optional \fImask\fR in
1270 tunnel metadata field number \fIidx\fR (numbered from 0 to 63).
1271 The act of specifying a field implies a match on the existence
1272 of that field in the packet in addition to the masked value. As
1273 a shorthand, it is possible to specify only the field name to
1274 simply match on an option being present.
1275 .IP
1276 Tunnel metadata fields can be dynamically assigned onto the data
1277 contained in the option TLVs of packets (e.g. Geneve variable
1278 options stores zero or more options in TLV format and tunnel
1279 metadata can be assigned onto these option TLVs) using the
1280 commands described in the section \fBOpenFlow Switch Tunnel TLV Table
1281 Commands\fR. Once assigned, the length of the field is variable
1282 according to the size of the option. Before updating a mapping in
1283 the option table, flows with references to it should be removed,
1284 otherwise the result is non-deterministic.
1285 .IP
1286 These fields were introduced in Open vSwitch 2.5.
1287 .
1288 .IP "\fBreg\fIidx\fB=\fIvalue\fR[\fB/\fImask\fR]"
1289 Matches \fIvalue\fR either exactly or with optional \fImask\fR in
1290 register number \fIidx\fR.  The valid range of \fIidx\fR depends on
1291 the switch.  \fIvalue\fR and \fImask\fR are 32-bit integers, by
1292 default in decimal (use a \fB0x\fR prefix to specify hexadecimal).
1293 Arbitrary \fImask\fR values are allowed: a 1-bit in \fImask\fR
1294 indicates that the corresponding bit in \fIvalue\fR must match
1295 exactly, and a 0-bit wildcards that bit.
1296 .IP
1297 When a packet enters an OpenFlow switch, all of the registers are set
1298 to 0.  Only explicit actions change register values.
1299 .
1300 .IP "\fBxreg\fIidx\fB=\fIvalue\fR[\fB/\fImask\fR]"
1301 Matches \fIvalue\fR either exactly or with optional \fImask\fR in
1302 64-bit ``extended register'' number \fIidx\fR.  Each of the 64-bit
1303 extended registers overlays two of the 32-bit registers: \fBxreg0\fR
1304 overlays \fBreg0\fR and \fBreg1\fR, with \fBreg0\fR supplying the
1305 most-significant bits of \fBxreg0\fR and \fBreg1\fR the
1306 least-significant.  \fBxreg1\fR similarly overlays \fBreg2\fR and
1307 \fBreg3\fR, and so on.
1308 .IP
1309 These fields were added in Open vSwitch 2.3 to conform with the
1310 OpenFlow 1.5 specification.  OpenFlow 1.5 calls these fields
1311 just the ``packet registers,'' but Open vSwitch already had 32-bit
1312 registers by that name, which is why Open vSwitch refers to the
1313 standard registers as ``extended registers''.
1314 .
1315 .IP \fBpkt_mark=\fIvalue\fR[\fB/\fImask\fR]
1316 Matches packet metadata mark \fIvalue\fR either exactly or with optional
1317 \fImask\fR. The mark is associated data that may be passed into other
1318 system components in order to facilitate interaction between subsystems.
1319 On Linux this corresponds to the skb mark but the exact implementation is
1320 platform-dependent.
1321 .
1322 .IP \fBactset_output=\fIport\fR
1323 Matches the output port currently in the OpenFlow action set, where
1324 \fIport\fR may be an OpenFlow port number or keyword
1325 (e.g. \fBLOCAL\fR).  If there is no output port in the OpenFlow action
1326 set, or if the output port will be ignored (e.g. because there is an
1327 output group in the OpenFlow action set), then the value will be
1328 \fBUNSET\fR.
1329 .IP
1330 This field was introduced in Open vSwitch 2.4 to conform with the
1331 OpenFlow 1.5 specification.
1332 .
1333 .IP \fBconj_id=\fIvalue\fR
1334 Matches the given 32-bit \fIvalue\fR against the conjunction ID.  This
1335 is used only with the \fBconjunction\fR action (see below).
1336 .IP
1337 This field was introduced in Open vSwitch 2.4.
1338 .
1339 .IP \fBct_state=\fIflags\fB/\fImask\fR
1340 .IQ \fBct_state=\fR[\fB+\fIflag\fR...][\fB-\fIflag\fR...]
1341 Bitwise match on connection state flags. This is used with the \fBct\fR
1342 action (see below).
1343 .IP
1344 The \fBct_state\fR field provides information from a connection tracking
1345 module. It describes whether the packet has previously traversed the
1346 connection tracker (tracked, or trk) and, if it has been tracked, any
1347 additional information that the connection tracker was able to provide about
1348 the connection that the current packet belongs to.
1349 .IP
1350 Individual packets may be in one of two states: Untracked or tracked. When the
1351 \fBct\fR action is executed on a packet, it becomes tracked for the the
1352 remainder of OpenFlow pipeline processing. Once a packet has become tracked,
1353 the state of its corresponding connection may be determined. Note that the
1354 \fBct_state\fR is only significant for the current \fBct_zone\fR.
1355 .IP
1356 Connections may be in one of two states: uncommitted or committed. Connections
1357 are uncommitted by default. To determine ongoing information about a
1358 connection, like whether the connection is established or not, the connection
1359 must be committed. When the \fBct\fR action is executed on a packet with the
1360 \fBcommit\fR parameter, the connection will become committed and will remain in
1361 this state until the end of the connection. Committed connections store state
1362 beyond the duration of packet processing.
1363 .IP
1364 The \fIflags\fR and \fImask\fR are 32-bit numbers written in decimal or
1365 in hexadecimal prefixed by \fB0x\fR.  Each 1-bit in \fImask\fR requires
1366 that the corresponding bit in \fIflags\fR must match.  Each 0-bit in
1367 \fImask\fR causes the corresponding bit to be ignored.
1368 .IP
1369 Alternatively, the flags can be specified by their symbolic names
1370 (listed below), each preceded by either \fB+\fR for a flag that must
1371 be set, or \fB\-\fR for a flag that must be unset, without any other
1372 delimiters between the flags.  Flags not mentioned are wildcarded.  For
1373 example, \fBtcp,ct_state=+trk\-new\fR matches TCP packets that
1374 have been run through the connection tracker and do not establish a new
1375 connection.
1376 .IP
1377 The following flags describe the state of the tracking:
1378 .RS
1379 .IP "\fB0x01: new\fR"
1380 This is the beginning of a new connection. This flag may only be present for
1381 uncommitted connections.
1382 .IP "\fB0x02: est\fR"
1383 This is part of an already existing connection. This flag may only be present
1384 for committed connections.
1385 .IP "\fB0x04: rel\fR"
1386 This is a connection that is related to an existing connection, for
1387 instance ICMP "destination unreachable" messages or FTP data connections. This
1388 flag may only be present for committed connections.
1389 .IP "\fB0x08: rpl\fR"
1390 The flow is in the reply direction, meaning it did not initiate the
1391 connection. This flag may only be present for committed connections.
1392 .IP "\fB0x10: inv\fR"
1393 The state is invalid, meaning that the connection tracker couldn't identify the
1394 connection. This flag is a catch-all for any problems that the connection
1395 tracker may have, for example:
1396 .RS
1397 .PP
1398 - L3/L4 protocol handler is not loaded/unavailable. With the Linux kernel
1399 datapath, this may mean that the "nf_conntrack_ipv4" or "nf_conntrack_ipv6"
1400 modules are not loaded.
1401 .PP
1402 - L3/L4 protocol handler determines that the packet is malformed.
1403 .PP
1404 - Packets are unexpected length for protocol.
1405 .RE
1406 .IP "\fB0x20: trk\fR"
1407 This packet is tracked, meaning that it has previously traversed the connection
1408 tracker. If this flag is not set, then no other flags will be set. If this flag
1409 is set, then the packet is tracked and other flags may also be set.
1410 .IP "\fB0x40: snat\fR"
1411 This packet was transformed by source address/port translation by a
1412 preceding \fBct\fR action.
1413 .IP "\fB0x80: dnat\fR"
1414 This packet was transformed by destination address/port translation by
1415 a preceding \fBct\fR action.
1416 .PP
1417 This field was introduced in Open vSwitch 2.5.  The \fBsnat\fR and
1418 \fBdnat\fR bits were added in Open vSwitch 2.6.
1419 .RE
1420 .
1421 .PP
1422 The following fields are associated with the connection tracker and will only
1423 be populated for tracked packets. The \fBct\fR action will populate these
1424 fields, and allows modification of some of the below fields.
1425 .IP \fBct_zone=\fIzone
1426 Matches the given 16-bit connection \fIzone\fR exactly. This represents the
1427 most recent connection tracking context that \fBct\fR was executed in. Each
1428 zone is an independent connection tracking context, so if you wish to track
1429 the same packet in multiple contexts then you must use the \fBct\fR action
1430 multiple times. Introduced in Open vSwitch 2.5.
1431 .
1432 .IP \fBct_mark=\fIvalue\fR[\fB/\fImask\fR]
1433 Matches the given 32-bit connection mark \fIvalue\fR either exactly or with
1434 optional \fImask\fR. This represents metadata associated with the connection
1435 that the current packet is part of. Introduced in Open vSwitch 2.5.
1436 .
1437 .IP \fBct_label=\fIvalue\fR[\fB/\fImask\fR]
1438 Matches the given 128-bit connection labels \fIvalue\fR either exactly or with
1439 optional \fImask\fR. This represents metadata associated with the connection
1440 that the current packet is part of. Introduced in Open vSwitch 2.5.
1441 .
1442 .PP
1443 Defining IPv6 flows (those with \fBdl_type\fR equal to 0x86dd) requires
1444 support for NXM.  The following shorthand notations are available for
1445 IPv6-related flows:
1446 .
1447 .IP \fBipv6\fR
1448 Same as \fBdl_type=0x86dd\fR.
1449 .
1450 .IP \fBtcp6\fR
1451 Same as \fBdl_type=0x86dd,nw_proto=6\fR.
1452 .
1453 .IP \fBudp6\fR
1454 Same as \fBdl_type=0x86dd,nw_proto=17\fR.
1455 .
1456 .IP \fBsctp6\fR
1457 Same as \fBdl_type=0x86dd,nw_proto=132\fR.
1458 .
1459 .IP \fBicmp6\fR
1460 Same as \fBdl_type=0x86dd,nw_proto=58\fR.
1461 .
1462 .PP
1463 Finally, field assignments to \fBduration\fR, \fBn_packets\fR, or
1464 \fBn_bytes\fR are ignored to allow output from the \fBdump\-flows\fR
1465 command to be used as input for other commands that parse flows.
1466 .
1467 .PP
1468 The \fBadd\-flow\fR, \fBadd\-flows\fR, and \fBmod\-flows\fR commands
1469 require an additional field, which must be the final field specified:
1470 .
1471 .IP \fBactions=\fR[\fIaction\fR][\fB,\fIaction\fR...]\fR
1472 Specifies a comma-separated list of actions to take on a packet when the 
1473 flow entry matches.  If no \fIaction\fR is specified, then packets
1474 matching the flow are dropped.  The following forms of \fIaction\fR
1475 are supported:
1476 .
1477 .RS
1478 .IP \fIport\fR
1479 .IQ \fBoutput:\fIport\fR
1480 Outputs the packet to OpenFlow port number \fIport\fR.  If \fIport\fR
1481 is the packet's input port, the packet is not output.
1482 .
1483 .IP \fBoutput:\fIsrc\fB[\fIstart\fB..\fIend\fB]
1484 Outputs the packet to the OpenFlow port number read from \fIsrc\fR,
1485 which must be an NXM field as described above.  For example,
1486 \fBoutput:NXM_NX_REG0[16..31]\fR outputs to the OpenFlow port number
1487 written in the upper half of register 0.  If the port number is the
1488 packet's input port, the packet is not output.
1489 .IP
1490 This form of \fBoutput\fR was added in Open vSwitch 1.3.0.  This form
1491 of \fBoutput\fR uses an OpenFlow extension that is not supported by
1492 standard OpenFlow switches.
1493 .
1494 .IP \fBgroup:\fIgroup_id\fR
1495 Outputs the packet to the OpenFlow group \fIgroup_id\fR. Group tables
1496 are only supported in OpenFlow 1.1+. See Group Syntax for more details.
1497 .
1498 .IP \fBnormal\fR
1499 Subjects the packet to the device's normal L2/L3 processing.  (This
1500 action is not implemented by all OpenFlow switches.)
1501 .
1502 .IP \fBflood\fR
1503 Outputs the packet on all switch physical ports other than the port on
1504 which it was received and any ports on which flooding is disabled
1505 (typically, these would be ports disabled by the IEEE 802.1D spanning
1506 tree protocol).
1507 .
1508 .IP \fBall\fR
1509 Outputs the packet on all switch physical ports other than the port on
1510 which it was received.
1511 .
1512 .IP \fBlocal\fR
1513 Outputs the packet on the ``local port,'' which corresponds to the
1514 network device that has the same name as the bridge.
1515 .
1516 .IP \fBin_port\fR
1517 Outputs the packet on the port from which it was received.
1518 .
1519 .IP \fBcontroller(\fIkey\fB=\fIvalue\fR...\fB)
1520 Sends the packet and its metadata to the OpenFlow controller as a ``packet in''
1521 message.  The supported key-value pairs are:
1522 .RS
1523 .IP "\fBmax_len=\fInbytes\fR"
1524 Limit to \fInbytes\fR the number of bytes of the packet to send to
1525 the controller.  By default the entire packet is sent.
1526 .IP "\fBreason=\fIreason\fR"
1527 Specify \fIreason\fR as the reason for sending the message in the
1528 ``packet in'' message.  The supported reasons are \fBaction\fR (the
1529 default), \fBno_match\fR, and \fBinvalid_ttl\fR.
1530 .IP "\fBid=\fIcontroller-id\fR"
1531 Specify \fIcontroller-id\fR, a 16-bit integer, as the connection ID of
1532 the OpenFlow controller or controllers to which the ``packet in''
1533 message should be sent.  The default is zero.  Zero is also the
1534 default connection ID for each controller connection, and a given
1535 controller connection will only have a nonzero connection ID if its
1536 controller uses the \fBNXT_SET_CONTROLLER_ID\fR Nicira extension to
1537 OpenFlow.
1538 .IP "\fBuserdata=\fIhh\fR...\fR"
1539 Supplies the bytes represented as hex digits \fIhh\fR as additional
1540 data to the controller in the packet-in message.  Pairs of hex digits
1541 may be separated by periods for readability.
1542 .IP "\fBpause\fR"
1543 Causes the switch to freeze the packet's trip through Open vSwitch
1544 flow tables and serializes that state into the packet-in message as a
1545 ``continuation,'' an additional property in the \fBNXT_PACKET_IN2\fR
1546 message.  The controller can later send the continuation back to the
1547 switch in an \fBNXT_RESUME\fR message, which will restart the packet's
1548 traversal from the point where it was interrupted.  This permits an
1549 OpenFlow controller to interpose on a packet midway through processing
1550 in Open vSwitch.
1551 .
1552 .RE
1553 .IP
1554 If any \fIreason\fR other than \fBaction\fR or any nonzero
1555 \fIcontroller-id\fR is supplied, Open vSwitch extension
1556 \fBNXAST_CONTROLLER\fR, supported by Open vSwitch 1.6 and later, is
1557 used.  If \fBuserdata\fR is supplied, then \fBNXAST_CONTROLLER2\fR,
1558 supported by Open vSwitch 2.6 and later, is used.
1559 .
1560 .IP \fBcontroller\fR
1561 .IQ \fBcontroller\fR[\fB:\fInbytes\fR]
1562 Shorthand for \fBcontroller()\fR or
1563 \fBcontroller(max_len=\fInbytes\fB)\fR, respectively.
1564 .
1565 .IP \fBenqueue(\fIport\fB,\fIqueue\fB)\fR
1566 Enqueues the packet on the specified \fIqueue\fR within port
1567 \fIport\fR, which must be an OpenFlow port number or keyword
1568 (e.g. \fBLOCAL\fR).  The number of supported queues depends on the
1569 switch; some OpenFlow implementations do not support queuing at all.
1570 .
1571 .IP \fBdrop\fR
1572 Discards the packet, so no further processing or forwarding takes place.
1573 If a drop action is used, no other actions may be specified.
1574 .
1575 .IP \fBmod_vlan_vid\fR:\fIvlan_vid\fR
1576 Modifies the VLAN id on a packet.  The VLAN tag is added or modified 
1577 as necessary to match the value specified.  If the VLAN tag is added,
1578 a priority of zero is used (see the \fBmod_vlan_pcp\fR action to set
1579 this).
1580 .
1581 .IP \fBmod_vlan_pcp\fR:\fIvlan_pcp\fR
1582 Modifies the VLAN priority on a packet.  The VLAN tag is added or modified 
1583 as necessary to match the value specified.  Valid values are between 0
1584 (lowest) and 7 (highest).  If the VLAN tag is added, a vid of zero is used 
1585 (see the \fBmod_vlan_vid\fR action to set this).
1586 .
1587 .IP \fBstrip_vlan\fR
1588 Strips the VLAN tag from a packet if it is present.
1589 .
1590 .IP \fBpush_vlan\fR:\fIethertype\fR
1591 Push a new VLAN tag onto the packet.  Ethertype is used as the Ethertype
1592 for the tag. Only ethertype 0x8100 should be used. (0x88a8 which the spec
1593 allows isn't supported at the moment.)
1594 A priority of zero and the tag of zero are used for the new tag.
1595 .
1596 .IP \fBpush_mpls\fR:\fIethertype\fR
1597 Changes the packet's Ethertype to \fIethertype\fR, which must be either
1598 \fB0x8847\fR or \fB0x8848\fR, and pushes an MPLS LSE.
1599 .IP
1600 If the packet does not already contain any MPLS labels then an initial
1601 label stack entry is pushed.  The label stack entry's label is 2 if the
1602 packet contains IPv6 and 0 otherwise, its default traffic control value is
1603 the low 3 bits of the packet's DSCP value (0 if the packet is not IP), and
1604 its TTL is copied from the IP TTL (64 if the packet is not IP).
1605 .IP
1606 If the packet does already contain an MPLS label, pushes a new
1607 outermost label as a copy of the existing outermost label.
1608 .IP
1609 A limitation of the implementation is that processing of actions will stop
1610 if \fBpush_mpls\fR follows another \fBpush_mpls\fR unless there is a
1611 \fBpop_mpls\fR in between.
1612 .
1613 .IP \fBpop_mpls\fR:\fIethertype\fR
1614 Strips the outermost MPLS label stack entry.
1615 Currently the implementation restricts \fIethertype\fR to a non-MPLS Ethertype
1616 and thus \fBpop_mpls\fR should only be applied to packets with
1617 an MPLS label stack depth of one. A further limitation is that processing of
1618 actions will stop if \fBpop_mpls\fR follows another \fBpop_mpls\fR unless
1619 there is a \fBpush_mpls\fR in between.
1620 .
1621 .IP \fBmod_dl_src\fB:\fImac\fR
1622 Sets the source Ethernet address to \fImac\fR.
1623 .
1624 .IP \fBmod_dl_dst\fB:\fImac\fR
1625 Sets the destination Ethernet address to \fImac\fR.
1626 .
1627 .IP \fBmod_nw_src\fB:\fIip\fR
1628 Sets the IPv4 source address to \fIip\fR.
1629 .
1630 .IP \fBmod_nw_dst\fB:\fIip\fR
1631 Sets the IPv4 destination address to \fIip\fR.
1632 .
1633 .IP \fBmod_tp_src\fB:\fIport\fR
1634 Sets the TCP or UDP or SCTP source port to \fIport\fR.
1635 .
1636 .IP \fBmod_tp_dst\fB:\fIport\fR
1637 Sets the TCP or UDP or SCTP destination port to \fIport\fR.
1638 .
1639 .IP \fBmod_nw_tos\fB:\fItos\fR
1640 Sets the DSCP bits in the IPv4 ToS/DSCP or IPv6 traffic class field to
1641 \fItos\fR, which must be a multiple of 4 between 0 and 255.  This action
1642 does not modify the two least significant bits of the ToS field (the ECN bits).
1643 .
1644 .IP \fBmod_nw_ecn\fB:\fIecn\fR
1645 Sets the ECN bits in the IPv4 ToS or IPv6 traffic class field to \fIecn\fR,
1646 which must be a value between 0 and 3, inclusive.  This action does not modify
1647 the six most significant bits of the field (the DSCP bits).
1648 .IP
1649 Requires OpenFlow 1.1 or later.
1650 .
1651 .IP \fBmod_nw_ttl\fB:\fIttl\fR
1652 Sets the IPv4 TTL or IPv6 hop limit field to \fIttl\fR, which is specified as
1653 a decimal number between 0 and 255, inclusive.  Switch behavior when setting
1654 \fIttl\fR to zero is not well specified, though.
1655 .IP
1656 Requires OpenFlow 1.1 or later.
1657 .RE
1658 .IP
1659 The following actions are Nicira vendor extensions that, as of this writing, are
1660 only known to be implemented by Open vSwitch:
1661 .
1662 .RS
1663 .
1664 .IP \fBresubmit\fB:\fIport\fR
1665 .IQ \fBresubmit\fB(\fR[\fIport\fR]\fB,\fR[\fItable\fR]\fB)
1666 Re-searches this OpenFlow flow table (or the table whose number is
1667 specified by \fItable\fR) with the \fBin_port\fR field replaced by
1668 \fIport\fR (if \fIport\fR is specified) and executes the actions
1669 found, if any, in addition to any other actions in this flow entry.
1670 .IP
1671 Recursive \fBresubmit\fR actions are obeyed up to
1672 implementation-defined limits:
1673 .RS
1674 .IP \(bu
1675 Open vSwitch 1.0.1 and earlier did not support recursion.
1676 .IP \(bu
1677 Open vSwitch 1.0.2 and 1.0.3 limited recursion to 8 levels.
1678 .IP \(bu
1679 Open vSwitch 1.1 and 1.2 limited recursion to 16 levels.
1680 .IP \(bu
1681 Open vSwitch 1.2 through 1.8 limited recursion to 32 levels.
1682 .IP \(bu
1683 Open vSwitch 1.9 through 2.0 limited recursion to 64 levels.
1684 .IP \(bu
1685 Open vSwitch 2.1 through 2.5 limited recursion to 64 levels and impose
1686 a total limit of 4,096 resubmits per flow translation (earlier versions
1687 did not impose any total limit).
1688 .IP \(bu
1689 Open vSwitch 2.6 and later imposes the same limits as 2.5, with one
1690 exception: \fBresubmit\fR from table \fIx\fR to any table \fIy\fR >
1691 \fIx\fR does not count against the recursion limit.
1692 .RE
1693 .IP
1694 Open vSwitch before 1.2.90 did not support \fItable\fR.
1695 .
1696 .IP \fBset_tunnel\fB:\fIid\fR
1697 .IQ \fBset_tunnel64\fB:\fIid\fR
1698 If outputting to a port that encapsulates the packet in a tunnel and
1699 supports an identifier (such as GRE), sets the identifier to \fIid\fR.
1700 If the \fBset_tunnel\fR form is used and \fIid\fR fits in 32 bits,
1701 then this uses an action extension that is supported by Open vSwitch
1702 1.0 and later.  Otherwise, if \fIid\fR is a 64-bit value, it requires
1703 Open vSwitch 1.1 or later.
1704 .
1705 .IP \fBset_queue\fB:\fIqueue\fR
1706 Sets the queue that should be used to \fIqueue\fR when packets are
1707 output.  The number of supported queues depends on the switch; some
1708 OpenFlow implementations do not support queuing at all.
1709 .
1710 .IP \fBpop_queue\fR
1711 Restores the queue to the value it was before any \fBset_queue\fR
1712 actions were applied.
1713 .
1714 .IP \fBct\fR
1715 .IQ \fBct\fB(\fR[\fIargument\fR][\fB,\fIargument\fR...]\fB)
1716 Send the packet through the connection tracker.  Refer to the \fBct_state\fR
1717 documentation above for possible packet and connection states. The following
1718 arguments are supported:
1719
1720 .RS
1721 .IP \fBcommit\fR
1722 .RS
1723 Commit the connection to the connection tracking module. Information about the
1724 connection will be stored beyond the lifetime of the packet in the pipeline.
1725 Some \fBct_state\fR flags are only available for committed connections.
1726 .RE
1727 .IP \fBtable=\fInumber\fR
1728 Fork pipeline processing in two. The original instance of the packet will
1729 continue processing the current actions list as an untracked packet. An
1730 additional instance of the packet will be sent to the connection tracker, which
1731 will be re-injected into the OpenFlow pipeline to resume processing in table
1732 \fInumber\fR, with the \fBct_state\fR and other ct match fields set. If the
1733 \fBtable\fR is not specified, then the packet which is submitted to the
1734 connection tracker is not re-injected into the OpenFlow pipeline. It is
1735 strongly recommended to specify a table later than the current table to prevent
1736 loops.
1737 .IP \fBzone=\fIvalue\fR
1738 .IQ \fBzone=\fIsrc\fB[\fIstart\fB..\fIend\fB]\fR
1739 A 16-bit context id that can be used to isolate connections into separate
1740 domains, allowing overlapping network addresses in different zones. If a zone
1741 is not provided, then the default is to use zone zero. The \fBzone\fR may be
1742 specified either as an immediate 16-bit \fIvalue\fR, or may be provided from an
1743 NXM field \fIsrc\fR. The \fIstart\fR and \fIend\fR pair are inclusive, and must
1744 specify a 16-bit range within the field. This value is copied to the
1745 \fBct_zone\fR match field for packets which are re-injected into the pipeline
1746 using the \fBtable\fR option.
1747 .IP \fBexec\fB(\fR[\fIaction\fR][\fB,\fIaction\fR...]\fB)\fR
1748 Perform actions within the context of connection tracking. This is a restricted
1749 set of actions which are in the same format as their specifications as part
1750 of a flow. Only actions which modify the \fBct_mark\fR or \fBct_label\fR
1751 fields are accepted within the \fBexec\fR action, and these fields may only be
1752 modified with this option. For example:
1753 .
1754 .RS
1755 .IP \fBset_field:\fIvalue\fR[\fB/\fImask\fR]->ct_mark\fR
1756 Store a 32-bit metadata value with the connection. If the connection is
1757 committed, then subsequent lookups for packets in this connection will
1758 populate the \fBct_mark\fR flow field when the packet is sent to the
1759 connection tracker with the \fBtable\fR specified.
1760 .IP \fBset_field:\fIvalue\fR[\fB/\fImask\fR]->ct_label\fR
1761 Store a 128-bit metadata value with the connection.  If the connection is
1762 committed, then subsequent lookups for packets in this connection will
1763 populate the \fBct_label\fR flow field when the packet is sent to the
1764 connection tracker with the \fBtable\fR specified.
1765 .RE
1766 .IP
1767 The \fBcommit\fR parameter must be specified to use \fBexec(...)\fR.
1768 .
1769 .IP \fBalg=\fIalg\fR
1770 Specify application layer gateway \fIalg\fR to track specific connection
1771 types. Supported types include:
1772 .RS
1773 .IP \fBftp\fR
1774 Look for negotiation of FTP data connections. If a subsequent FTP data
1775 connection arrives which is related, the \fBct\fR action will set the
1776 \fBrel\fR flag in the \fBct_state\fR field for packets sent through \fBct\fR.
1777 .RE
1778 .
1779 .IP
1780 The \fBcommit\fR parameter must be specified to use \fBalg=\fIalg\fR.
1781 .
1782 .IP
1783 When committing related connections, the \fBct_mark\fR for that connection is
1784 inherited from the current \fBct_mark\fR stored with the original connection
1785 (ie, the connection created by \fBct(alg=...)\fR).
1786 .
1787 .IP \fBnat\fR[\fB(\fR(\fBsrc\fR|\fBdst\fR)\fB=\fIaddr1\fR[\fB-\fIaddr2\fR][\fB:\fIport1\fR[\fB-\fIport2\fR]][\fB,\fIflags\fR]\fB)\fR]
1788 .
1789 Specify address and port translation for the connection being tracked.
1790 For new connections either \fBsrc\fR or \fBdst\fR argument must be
1791 provided to set up either source address/port translation (SNAT) or
1792 destination address/port translation (DNAT), respectively.  Setting up
1793 address translation for a new connection takes effect only if the
1794 \fBcommit\fR flag is also provided for the enclosing \fBct\fR action.
1795 A bare \fBnat\fR action will only translate the packet being processed
1796 in the way the connection has been set up with an earlier \fBct\fR
1797 action.  Also a \fBnat\fR action with \fBsrc\fR or \fBdst\fR, when
1798 applied to a packet belonging to an established (rather than new)
1799 connection, will behave the same as a bare \fBnat\fR.
1800 .IP
1801 \fBsrc\fR and \fBdst\fR options take the following arguments:
1802 .RS
1803 .IP \fIaddr1\fR[\fB-\fIaddr2\fR]
1804 The address range from which the translated address should be
1805 selected.  If only one address is given, then that address will always
1806 be selected, otherwise the address selection can be informed by the
1807 optional \fBpersistent\fR flag as described below.  Either IPv4 or
1808 IPv6 addresses can be provided, but both addresses must be of the same
1809 type, and the datapath behavior is undefined in case of providing IPv4
1810 address range for an IPv6 packet, or IPv6 address range for an IPv4
1811 packet.  IPv6 addresses must be bracketed with '[' and ']' if a port
1812 range is also given.
1813 .RE
1814 .
1815 .RS
1816 .IP \fIport1\fR[\fB-\fIport2\fR]
1817 The port range from which the translated port should be selected.  If
1818 only one port number is provided, then that should be selected.  In
1819 case of a mapping conflict the datapath may choose any other
1820 non-conflicting port number instead, even when no port range is
1821 specified.  The port number selection can be informed by the optional
1822 \fBrandom\fR and \fBhash\fR flags as described below.
1823 .RE
1824 .IP
1825 The optional flags are:
1826 .RS
1827 .IP \fBrandom\fR
1828 The selection of the port from the given range should be done using a
1829 fresh random number.  This flag is mutually exclusive with \fBhash\fR.
1830 .RE
1831 .
1832 .RS
1833 .IP \fBhash\fR
1834 The selection of the port from the given range should be done using a
1835 datapath specific hash of the packet's IP addresses and the other,
1836 non-mapped port number.  This flag is mutually exclusive with
1837 \fBrandom\fR.
1838 .RE
1839 .
1840 .RS
1841 .IP \fBpersistent\fR
1842 The selection of the IP address from the given range should be done so
1843 that the same mapping can be provided after the system restarts.
1844 .RE
1845 .IP
1846 If an \fBalg\fR is specified for the committing \fBct\fR action that
1847 also includes \fBnat\fR with a \fBsrc\fR or \fBdst\fR attribute,
1848 then the datapath tries to set up the helper to be NAT aware.  This
1849 functionality is datapath specific and may not be supported by all
1850 datapaths.
1851 .IP
1852 \fBnat\fR was introduced in Open vSwitch 2.6.  The first datapath that
1853 implements \fBct nat\fR support is the one that ships with Linux 4.6.
1854 .RE
1855 .IP
1856 The \fBct\fR action may be used as a primitive to construct stateful firewalls
1857 by selectively committing some traffic, then matching the \fBct_state\fR to
1858 allow established connections while denying new connections. The following
1859 flows provide an example of how to implement a simple firewall that allows new
1860 connections from port 1 to port 2, and only allows established connections to
1861 send traffic from port 2 to port 1:
1862     \fBtable=0,priority=1,action=drop
1863     table=0,priority=10,arp,action=normal
1864     table=0,priority=100,ip,ct_state=-trk,action=ct(table=1)
1865     table=1,in_port=1,ip,ct_state=+trk+new,action=ct(commit),2
1866     table=1,in_port=1,ip,ct_state=+trk+est,action=2
1867     table=1,in_port=2,ip,ct_state=+trk+new,action=drop
1868     table=1,in_port=2,ip,ct_state=+trk+est,action=1\fR
1869 .IP
1870 If \fBct\fR is executed on IP (or IPv6) fragments, then the message is
1871 implicitly reassembled before sending to the connection tracker and
1872 refragmented upon \fBoutput\fR, to the original maximum received fragment size.
1873 Reassembly occurs within the context of the \fBzone\fR, meaning that IP
1874 fragments in different zones are not assembled together. Pipeline processing
1875 for the initial fragments is halted; When the final fragment is received, the
1876 message is assembled and pipeline processing will continue for that flow.
1877 Because packet ordering is not guaranteed by IP protocols, it is not possible
1878 to determine which IP fragment will cause message reassembly (and therefore
1879 continue pipeline processing). As such, it is strongly recommended that
1880 multiple flows should not execute \fBct\fR to reassemble fragments from the
1881 same IP message.
1882 .IP
1883 Currently, connection tracking is only available on Linux kernels with the
1884 nf_conntrack module loaded. The \fBct\fR action was introduced in Open vSwitch
1885 2.5.
1886 .
1887 .IP \fBdec_ttl\fR
1888 .IQ \fBdec_ttl(\fIid1\fR[\fB,\fIid2\fR]...\fB)\fR
1889 Decrement TTL of IPv4 packet or hop limit of IPv6 packet.  If the
1890 TTL or hop limit is initially zero or decrementing would make it so, no
1891 decrement occurs, as packets reaching TTL zero must be rejected.  Instead,
1892 a ``packet-in'' message with reason code \fBOFPR_INVALID_TTL\fR is
1893 sent to each connected controller that has enabled receiving them,
1894 if any.  Processing the current set of actions then stops.  However,
1895 if the current set of actions was reached through ``resubmit'' then
1896 remaining actions in outer levels resume processing.
1897 .IP
1898 This action also optionally supports the ability to specify a list of
1899 valid controller ids.  Each of the controllers in the list will receive
1900 the ``packet_in'' message only if they have registered to receive the
1901 invalid ttl packets.  If controller ids are not specified, the
1902 ``packet_in'' message will be sent only to the controllers having
1903 controller id zero which have registered for the invalid ttl packets.
1904 .
1905 .IP \fBset_mpls_label\fR:\fIlabel\fR
1906 Set the label of the outer MPLS label stack entry of a packet.
1907 \fIlabel\fR should be a 20-bit value that is decimal by default;
1908 use a \fB0x\fR prefix to specify them in hexadecimal.
1909 .
1910 .IP \fBset_mpls_tc\fR:\fItc\fR
1911 Set the traffic-class of the outer MPLS label stack entry of a packet.
1912 \fItc\fR should be a in the range 0 to 7 inclusive.
1913 .
1914 .IP \fBset_mpls_ttl\fR:\fIttl\fR
1915 Set the TTL of the outer MPLS label stack entry of a packet.
1916 \fIttl\fR should be in the range 0 to 255 inclusive.
1917 .
1918 .IP \fBdec_mpls_ttl\fR
1919 Decrement TTL of the outer MPLS label stack entry of a packet.  If the TTL
1920 is initially zero or decrementing would make it so, no decrement occurs.
1921 Instead, a ``packet-in'' message with reason code \fBOFPR_INVALID_TTL\fR
1922 is sent to the main controller (id zero), if it has enabled receiving them.
1923 Processing the current set of actions then stops.  However, if the current
1924 set of actions was reached through ``resubmit'' then remaining actions in
1925 outer levels resume processing.
1926 .
1927 .IP \fBnote:\fR[\fIhh\fR]...
1928 Does nothing at all.  Any number of bytes represented as hex digits
1929 \fIhh\fR may be included.  Pairs of hex digits may be separated by
1930 periods for readability.
1931 The \fBnote\fR action's format doesn't include an exact length for its
1932 payload, so the provided bytes will be padded on the right by enough
1933 bytes with value 0 to make the total number 6 more than a multiple of
1934 8.
1935 .
1936 .IP "\fBmove:\fIsrc\fB[\fIstart\fB..\fIend\fB]\->\fIdst\fB[\fIstart\fB..\fIend\fB]\fR"
1937 Copies the named bits from field \fIsrc\fR to field \fIdst\fR.
1938 \fIsrc\fR and \fIdst\fR must be NXM field names as defined in
1939 \fBnicira\-ext.h\fR, e.g. \fBNXM_OF_UDP_SRC\fR or \fBNXM_NX_REG0\fR.
1940 Each \fIstart\fR and \fIend\fR pair, which are inclusive, must specify
1941 the same number of bits and must fit within its respective field.
1942 Shorthands for \fB[\fIstart\fB..\fIend\fB]\fR exist: use
1943 \fB[\fIbit\fB]\fR to specify a single bit or \fB[]\fR to specify an
1944 entire field.
1945 .IP
1946 Examples: \fBmove:NXM_NX_REG0[0..5]\->NXM_NX_REG1[26..31]\fR copies the
1947 six bits numbered 0 through 5, inclusive, in register 0 into bits 26
1948 through 31, inclusive;
1949 \fBmove:NXM_NX_REG0[0..15]\->NXM_OF_VLAN_TCI[]\fR copies the least
1950 significant 16 bits of register 0 into the VLAN TCI field.
1951 .IP
1952 In OpenFlow 1.0 through 1.4, \fBmove\fR ordinarily uses an Open
1953 vSwitch extension to OpenFlow.  In OpenFlow 1.5, \fBmove\fR uses the
1954 OpenFlow 1.5 standard \fBcopy_field\fR action.  The ONF has
1955 also made \fBcopy_field\fR available as an extension to OpenFlow 1.3.
1956 Open vSwitch 2.4 and later understands this extension and uses it if a
1957 controller uses it, but for backward compatibility with older versions
1958 of Open vSwitch, \fBovs\-ofctl\fR does not use it.
1959 .
1960 .IP "\fBset_field:\fIvalue\fR[/\fImask\fR]\fB\->\fIdst"
1961 .IQ "\fBload:\fIvalue\fB\->\fIdst\fB[\fIstart\fB..\fIend\fB]"
1962 Loads a literal value into a field or part of a field.  With
1963 \fBset_field\fR, \fBvalue\fR and the optional \fBmask\fR are given in
1964 the customary syntax for field \fIdst\fR, which is expressed as a
1965 field name.  For example, \fBset_field:00:11:22:33:44:55->eth_src\fR
1966 sets the Ethernet source address to 00:11:22:33:44:55.  With
1967 \fBload\fR, \fIvalue\fR must be an integer value (in decimal or
1968 prefixed by \fB0x\fR for hexadecimal) and \fIdst\fR is the NXM or OXM
1969 name for the field.  For example,
1970 \fBload:0x001122334455->OXM_OF_ETH_DST[]\fR has the same effect as the
1971 prior \fBset_field\fR example.
1972 .IP
1973 The two forms exist for historical reasons.  Open vSwitch 1.1
1974 introduced \fBNXAST_REG_LOAD\fR as a Nicira extension to OpenFlow 1.0
1975 and used \fBload\fR to express it.  Later, OpenFlow 1.2 introduced a
1976 standard \fBOFPAT_SET_FIELD\fR action that was restricted to loading
1977 entire fields, so Open vSwitch added the form \fBset_field\fR with
1978 this restriction.  OpenFlow 1.5 extended \fBOFPAT_SET_FIELD\fR to the
1979 point that it became a superset of \fBNXAST_REG_LOAD\fR.  Open vSwitch
1980 translates either syntax as necessary for the OpenFlow version in use:
1981 in OpenFlow 1.0 and 1.1, \fBNXAST_REG_LOAD\fR; in OpenFlow 1.2, 1.3,
1982 and 1.4, \fBNXAST_REG_LOAD\fR for \fBload\fR or for loading a
1983 subfield, \fBOFPAT_SET_FIELD\fR otherwise; and OpenFlow 1.5 and later,
1984 \fBOFPAT_SET_FIELD\fR.
1985 .
1986 .IP "\fBpush:\fIsrc\fB[\fIstart\fB..\fIend\fB]"
1987 Pushes \fIstart\fR to \fIend\fR bits inclusive, in fields
1988 on top of the stack.
1989 .IP
1990 Example: \fBpush:NXM_NX_REG2[0..5]\fR push the value stored in register
1991 2 bits 0 through 5, inclusive, on to the internal stack.
1992 .
1993 .IP "\fBpop:\fIdst\fB[\fIstart\fB..\fIend\fB]"
1994 Pops from the top of the stack, retrieves the \fIstart\fR to \fIend\fR bits
1995 inclusive, from the value popped and store them into the corresponding
1996 bits in \fIdst\fR.
1997 .
1998 .IP
1999 Example: \fBpop:NXM_NX_REG2[0..5]\fR pops the value from top of the stack.
2000 Set register 2 bits 0 through 5, inclusive, based on bits 0 through 5 from the
2001 value just popped.
2002 .
2003 .
2004 .IP "\fBmultipath(\fIfields\fB, \fIbasis\fB, \fIalgorithm\fB, \fIn_links\fB, \fIarg\fB, \fIdst\fB[\fIstart\fB..\fIend\fB])\fR"
2005 Hashes \fIfields\fR using \fIbasis\fR as a universal hash parameter,
2006 then the applies multipath link selection \fIalgorithm\fR (with
2007 parameter \fIarg\fR) to choose one of \fIn_links\fR output links
2008 numbered 0 through \fIn_links\fR minus 1, and stores the link into
2009 \fIdst\fB[\fIstart\fB..\fIend\fB]\fR, which must be an NXM field as
2010 described above.
2011 .IP
2012 \fIfields\fR must be one of the following:
2013 .RS
2014 .IP \fBeth_src\fR
2015 Hashes Ethernet source address only.
2016 .IP \fBsymmetric_l4\fR
2017 Hashes Ethernet source, destination, and type, VLAN ID, IPv4/IPv6
2018 source, destination, and protocol, and TCP or SCTP (but not UDP)
2019 ports.  The hash is computed so that pairs of corresponding flows in
2020 each direction hash to the same value, in environments where L2 paths
2021 are the same in each direction.  UDP ports are not included in the
2022 hash to support protocols such as VXLAN that use asymmetric ports in
2023 each direction.
2024 .IP \fBsymmetric_l3l4\fR
2025 Hashes IPv4/IPv6 source, destination, and protocol, and TCP or SCTP
2026 (but not UDP) ports.  Like \fBsymmetric_l4\fR, this is a symmetric
2027 hash, but by excluding L2 headers it is more effective in environments
2028 with asymmetric L2 paths (e.g. paths involving VRRP IP addresses on a
2029 router).  Not an effective hash function for protocols other than IPv4
2030 and IPv6, which hash to a constant zero.
2031 .IP \fBsymmetric_l3l4+udp\fR
2032 Like \fBsymmetric_l3l4+udp\fR, but UDP ports are included in the hash.
2033 This is a more effective hash when asymmetric UDP protocols such as
2034 VXLAN are not a consideration.
2035 .RE
2036 .IP
2037 \fIalgorithm\fR must be one of \fBmodulo_n\fR,
2038 \fBhash_threshold\fR, \fBhrw\fR, and \fBiter_hash\fR.  Only
2039 the \fBiter_hash\fR algorithm uses \fIarg\fR.
2040 .IP
2041 Refer to \fBnicira\-ext.h\fR for more details.
2042 .
2043 .IP "\fBbundle(\fIfields\fB, \fIbasis\fB, \fIalgorithm\fB, \fIslave_type\fB, slaves:[\fIs1\fB, \fIs2\fB, ...])\fR"
2044 Hashes \fIfields\fR using \fIbasis\fR as a universal hash parameter, then
2045 applies the bundle link selection \fIalgorithm\fR to choose one of the listed
2046 slaves represented as \fIslave_type\fR.  Currently the only supported
2047 \fIslave_type\fR is \fBofport\fR.  Thus, each \fIs1\fR through \fIsN\fR should
2048 be an OpenFlow port number. Outputs to the selected slave.
2049 .IP
2050 Currently, \fIfields\fR must be either \fBeth_src\fR, \fBsymmetric_l4\fR, \fBsymmetric_l3l4\fR, or \fBsymmetric_l3l4+udp\fR, 
2051 and \fIalgorithm\fR must be one of \fBhrw\fR and \fBactive_backup\fR.
2052 .IP
2053 Example: \fBbundle(eth_src,0,hrw,ofport,slaves:4,8)\fR uses an Ethernet source
2054 hash with basis 0, to select between OpenFlow ports 4 and 8 using the Highest
2055 Random Weight algorithm.
2056 .IP
2057 Refer to \fBnicira\-ext.h\fR for more details.
2058 .
2059 .IP "\fBbundle_load(\fIfields\fB, \fIbasis\fB, \fIalgorithm\fB, \fIslave_type\fB, \fIdst\fB[\fIstart\fB..\fIend\fB], slaves:[\fIs1\fB, \fIs2\fB, ...])\fR"
2060 Has the same behavior as the \fBbundle\fR action, with one exception.  Instead
2061 of outputting to the selected slave, it writes its selection to
2062 \fIdst\fB[\fIstart\fB..\fIend\fB]\fR, which must be an NXM field as described
2063 above.
2064 .IP
2065 Example: \fBbundle_load(eth_src, 0, hrw, ofport, NXM_NX_REG0[],
2066 slaves:4, 8)\fR uses an Ethernet source hash with basis 0, to select
2067 between OpenFlow ports 4 and 8 using the Highest Random Weight
2068 algorithm, and writes the selection to \fBNXM_NX_REG0[]\fR.
2069 .IP
2070 Refer to \fBnicira\-ext.h\fR for more details.
2071 .
2072 .IP "\fBlearn(\fIargument\fR[\fB,\fIargument\fR]...\fB)\fR"
2073 This action adds or modifies a flow in an OpenFlow table, similar to
2074 \fBovs\-ofctl \-\-strict mod\-flows\fR.  The arguments specify the
2075 flow's match fields, actions, and other properties, as follows.  At
2076 least one match criterion and one action argument should ordinarily be
2077 specified.
2078 .RS
2079 .IP \fBidle_timeout=\fIseconds\fR
2080 .IQ \fBhard_timeout=\fIseconds\fR
2081 .IQ \fBpriority=\fIvalue\fR
2082 .IQ \fBcookie=\fIvalue\fR
2083 .IQ \fBsend_flow_rem\fR
2084 These arguments have the same meaning as in the usual \fBovs\-ofctl\fR
2085 flow syntax.
2086 .
2087 .IP \fBfin_idle_timeout=\fIseconds\fR
2088 .IQ \fBfin_hard_timeout=\fIseconds\fR
2089 Adds a \fBfin_timeout\fR action with the specified arguments to the
2090 new flow.  This feature was added in Open vSwitch 1.5.90.
2091 .
2092 .IP \fBtable=\fInumber\fR
2093 The table in which the new flow should be inserted.  Specify a decimal
2094 number between 0 and 254.  The default, if \fBtable\fR is unspecified,
2095 is table 1.
2096 .
2097 .IP \fBdelete_learned\fR
2098 This flag enables deletion of the learned flows when the flow with the
2099 \fBlearn\fR action is removed.  Specifically, when the last
2100 \fBlearn\fR action with this flag and particular \fBtable\fR and
2101 \fBcookie\fR values is removed, the switch deletes all of the flows in
2102 the specified table with the specified cookie.
2103 .
2104 .IP
2105 This flag was added in Open vSwitch 2.4.
2106 .
2107 .IP \fIfield\fB=\fIvalue\fR
2108 .IQ \fIfield\fB[\fIstart\fB..\fIend\fB]=\fIsrc\fB[\fIstart\fB..\fIend\fB]\fR
2109 .IQ \fIfield\fB[\fIstart\fB..\fIend\fB]\fR
2110 Adds a match criterion to the new flow.
2111 .IP
2112 The first form specifies that \fIfield\fR must match the literal
2113 \fIvalue\fR, e.g. \fBdl_type=0x0800\fR.  All of the fields and values
2114 for \fBovs\-ofctl\fR flow syntax are available with their usual
2115 meanings.
2116 .IP
2117 The second form specifies that \fIfield\fB[\fIstart\fB..\fIend\fB]\fR
2118 in the new flow must match \fIsrc\fB[\fIstart\fB..\fIend\fB]\fR taken
2119 from the flow currently being processed.
2120 .IP
2121 The third form is a shorthand for the second form.  It specifies that
2122 \fIfield\fB[\fIstart\fB..\fIend\fB]\fR in the new flow must match
2123 \fIfield\fB[\fIstart\fB..\fIend\fB]\fR taken from the flow currently
2124 being processed.
2125 .
2126 .IP \fBload:\fIvalue\fB\->\fIdst\fB[\fIstart\fB..\fIend\fB]
2127 .IQ \fBload:\fIsrc\fB[\fIstart\fB..\fIend\fB]\->\fIdst\fB[\fIstart\fB..\fIend\fB]
2128 .
2129 Adds a \fBload\fR action to the new flow.
2130 .IP
2131 The first form loads the literal \fIvalue\fR into bits \fIstart\fR
2132 through \fIend\fR, inclusive, in field \fIdst\fR.  Its syntax is the
2133 same as the \fBload\fR action described earlier in this section.
2134 .IP
2135 The second form loads \fIsrc\fB[\fIstart\fB..\fIend\fB]\fR, a value
2136 from the flow currently being processed, into bits \fIstart\fR
2137 through \fIend\fR, inclusive, in field \fIdst\fR.
2138 .
2139 .IP \fBoutput:\fIfield\fB[\fIstart\fB..\fIend\fB]\fR
2140 Add an \fBoutput\fR action to the new flow's actions, that outputs to
2141 the OpenFlow port taken from \fIfield\fB[\fIstart\fB..\fIend\fB]\fR,
2142 which must be an NXM field as described above.
2143 .RE
2144 .IP
2145 For best performance, segregate learned flows into a table (using
2146 \fBtable=\fInumber\fR) that is not used for any other flows except
2147 possibly for a lowest-priority ``catch-all'' flow, that is, a flow
2148 with no match criteria.  (This is why the default \fBtable\fR is 1, to
2149 keep the learned flows separate from the primary flow table 0.)
2150 .RE
2151 .
2152 .RS
2153 .
2154 .IP \fBclear_actions\fR
2155 Clears all the actions in the action set immediately.
2156 .
2157 .IP \fBwrite_actions(\fR[\fIaction\fR][\fB,\fIaction\fR...]\fB)
2158 Add the specific actions to the action set.  The syntax of
2159 \fIactions\fR is the same as in the \fBactions=\fR field.  The action
2160 set is carried between flow tables and then executed at the end of the
2161 pipeline.
2162 .
2163 .IP
2164 The actions in the action set are applied in the following order, as
2165 required by the OpenFlow specification, regardless of the order in
2166 which they were added to the action set.  Except as specified
2167 otherwise below, the action set only holds at most a single action of
2168 each type.  When more than one action of a single type is written to
2169 the action set, the one written later replaces the earlier action:
2170 .
2171 .RS
2172 .IP 1.
2173 \fBstrip_vlan\fR
2174 .IQ
2175 \fBpop_mpls\fR
2176 .
2177 .IP 2.
2178 \fBpush_mpls\fR
2179 .
2180 .IP 3.
2181 \fBpush_vlan\fR
2182 .
2183 .IP 4.
2184 \fBdec_ttl\fR
2185 .IQ
2186 \fBdec_mpls_ttl\fR
2187 .
2188 .IP 5.
2189 \fBload\fR
2190 .IQ
2191 \fBmove\fR
2192 .IQ
2193 \fBmod_dl_dst\fR
2194 .IQ
2195 \fBmod_dl_src\fR
2196 .IQ
2197 \fBmod_nw_dst\fR
2198 .IQ
2199 \fBmod_nw_src\fR
2200 .IQ
2201 \fBmod_nw_tos\fR
2202 .IQ
2203 \fBmod_nw_ecn\fR
2204 .IQ
2205 \fBmod_nw_ttl\fR
2206 .IQ
2207 \fBmod_tp_dst\fR
2208 .IQ
2209 \fBmod_tp_src\fR
2210 .IQ
2211 \fBmod_vlan_pcp\fR
2212 .IQ
2213 \fBmod_vlan_vid\fR
2214 .IQ
2215 \fBset_field\fR
2216 .IQ
2217 \fBset_tunnel\fR
2218 .IQ
2219 \fBset_tunnel64\fR
2220 .IQ
2221 The action set can contain any number of these actions, with
2222 cumulative effect. They will be applied in the order as added.
2223 That is, when multiple actions modify the same part of a field,
2224 the later modification takes effect, and when they modify
2225 different parts of a field (or different fields), then both
2226 modifications are applied.
2227 .
2228 .IP 6.
2229 \fBset_queue\fR
2230 .
2231 .IP 7.
2232 \fBgroup\fR
2233 .IQ
2234 \fBoutput\fR
2235 .IQ
2236 \fBresubmit\fR
2237 .IQ
2238 If more than one of these actions is present, then the one listed
2239 earliest above is executed and the others are ignored, regardless of
2240 the order in which they were added to the action set.  (If none of these
2241 actions is present, the action set has no real effect, because the
2242 modified packet is not sent anywhere and thus the modifications are
2243 not visible.)
2244 .RE
2245 .IP
2246 Only the actions listed above may be written to the action set.
2247 .
2248 .IP \fBwrite_metadata\fB:\fIvalue\fR[/\fImask\fR]
2249 Updates the metadata field for the flow. If \fImask\fR is omitted, the
2250 metadata field is set exactly to \fIvalue\fR; if \fImask\fR is specified, then
2251 a 1-bit in \fImask\fR indicates that the corresponding bit in the metadata
2252 field will be replaced with the corresponding bit from \fIvalue\fR. Both
2253 \fIvalue\fR and \fImask\fR are 64-bit values that are decimal by default; use
2254 a \fB0x\fR prefix to specify them in hexadecimal.
2255 .
2256 .IP \fBmeter\fR:\fImeter_id\fR
2257 Apply the \fImeter_id\fR before any other actions. If a meter band rate is
2258 exceeded, the packet may be dropped, or modified, depending on the meter
2259 band type. See the description of the \fBMeter Table Commands\fR, above,
2260 for more details.
2261 .
2262 .IP \fBgoto_table\fR:\fItable\fR
2263 Indicates the next table in the process pipeline.
2264 .
2265 .IP "\fBfin_timeout(\fIargument\fR[\fB,\fIargument\fR]\fB)"
2266 This action changes the idle timeout or hard timeout, or both, of this
2267 OpenFlow rule when the rule matches a TCP packet with the FIN or RST
2268 flag.  When such a packet is observed, the action reduces the rule's
2269 timeouts to those specified on the action.  If the rule's existing
2270 timeout is already shorter than the one that the action specifies,
2271 then that timeout is unaffected.
2272 .IP
2273 \fIargument\fR takes the following forms:
2274 .RS
2275 .IP "\fBidle_timeout=\fIseconds\fR"
2276 Causes the flow to expire after the given number of seconds of
2277 inactivity.
2278 .
2279 .IP "\fBhard_timeout=\fIseconds\fR"
2280 Causes the flow to expire after the given number of seconds,
2281 regardless of activity.  (\fIseconds\fR specifies time since the
2282 flow's creation, not since the receipt of the FIN or RST.)
2283 .RE
2284 .IP
2285 This action was added in Open vSwitch 1.5.90.
2286 .
2287 .IP "\fBsample(\fIargument\fR[\fB,\fIargument\fR]...\fB)\fR"
2288 Samples packets and sends one sample for every sampled packet.
2289 .IP
2290 \fIargument\fR takes the following forms:
2291 .RS
2292 .IP "\fBprobability=\fIpackets\fR"
2293 The number of sampled packets out of 65535.  Must be greater or equal to 1.
2294 .IP "\fBcollector_set_id=\fIid\fR"
2295 The unsigned 32-bit integer identifier of the set of sample collectors
2296 to send sampled packets to.  Defaults to 0.
2297 .IP "\fBobs_domain_id=\fIid\fR"
2298 When sending samples to IPFIX collectors, the unsigned 32-bit integer
2299 Observation Domain ID sent in every IPFIX flow record.  Defaults to 0.
2300 .IP "\fBobs_point_id=\fIid\fR"
2301 When sending samples to IPFIX collectors, the unsigned 32-bit integer
2302 Observation Point ID sent in every IPFIX flow record.  Defaults to 0.
2303 .RE
2304 .IP
2305 Refer to \fBovs\-vswitchd.conf.db\fR(8) for more details on
2306 configuring sample collector sets.
2307 .IP
2308 This action was added in Open vSwitch 1.10.90.
2309 .
2310 .IP "\fBexit\fR"
2311 This action causes Open vSwitch to immediately halt execution of
2312 further actions.  Those actions which have already been executed are
2313 unaffected.  Any further actions, including those which may be in
2314 other tables, or different levels of the \fBresubmit\fR call stack,
2315 are ignored.  Actions in the action set is still executed (specify
2316 \fBclear_actions\fR before \fBexit\fR to discard them).
2317 .
2318 .IP "\fBconjunction(\fIid\fB, \fIk\fB/\fIn\fR\fB)\fR"
2319 An individual OpenFlow flow can match only a single value for each
2320 field.  However, situations often arise where one wants to match one
2321 of a set of values within a field or fields.  For matching a single
2322 field against a set, it is straightforward and efficient to add
2323 multiple flows to the flow table, one for each value in the set.  For
2324 example, one might use the following flows to send packets with IP
2325 source address \fIa\fR, \fIb\fR, \fIc\fR, or \fId\fR to the OpenFlow
2326 controller:
2327 .RS +1in
2328 .br
2329 \fBip,ip_src=\fIa\fB actions=controller\fR
2330 .br
2331 \fBip,ip_src=\fIb\fB actions=controller\fR
2332 .br
2333 \fBip,ip_src=\fIc\fB actions=controller\fR
2334 .br
2335 \fBip,ip_src=\fId\fB actions=controller\fR
2336 .br
2337 .RE
2338 .IP
2339 Similarly, these flows send packets with IP destination address
2340 \fIe\fR, \fIf\fR, \fIg\fR, or \fIh\fR to the OpenFlow controller:
2341 .RS +1in
2342 .br
2343 \fBip,ip_dst=\fIe\fB actions=controller\fR
2344 .br
2345 \fBip,ip_dst=\fIf\fB actions=controller\fR
2346 .br
2347 \fBip,ip_dst=\fIg\fB actions=controller\fR
2348 .br
2349 \fBip,ip_dst=\fIh\fB actions=controller\fR
2350 .br
2351 .RE
2352 .IP
2353 Installing all of the above flows in a single flow table yields a
2354 disjunctive effect: a packet is sent to the controller if \fBip_src\fR
2355 \[mo] {\fIa\fR,\fIb\fR,\fIc\fR,\fId\fR} or \fBip_dst\fR \[mo]
2356 {\fIe\fR,\fIf\fR,\fIg\fR,\fIh\fR} (or both).  (Pedantically, if both
2357 of the above sets of flows are present in the flow table, they should
2358 have different priorities, because OpenFlow says that the results are
2359 undefined when two flows with same priority can both match a single
2360 packet.)
2361 .IP
2362 Suppose, on the other hand, one wishes to match conjunctively, that
2363 is, to send a packet to the controller only if both \fBip_src\fR \[mo]
2364 {\fIa\fR,\fIb\fR,\fIc\fR,\fId\fR} and \fBip_dst\fR \[mo]
2365 {\fIe\fR,\fIf\fR,\fIg\fR,\fIh\fR}.  This requires 4 \[mu] 4 = 16
2366 flows, one for each possible pairing of \fBip_src\fR and \fBip_dst\fR.
2367 That is acceptable for our small example, but it does not gracefully
2368 extend to larger sets or greater numbers of dimensions.
2369 .IP
2370 The \fBconjunction\fR action is a solution for conjunctive matches
2371 that is built into Open vSwitch.  A \fBconjunction\fR action ties
2372 groups of individual OpenFlow flows into higher-level ``conjunctive
2373 flows''.  Each group corresponds to one dimension, and each flow
2374 within the group matches one possible value for the dimension.  A
2375 packet that matches one flow from each group matches the conjunctive
2376 flow.
2377 .IP
2378 To implement a conjunctive flow with \fBconjunction\fR, assign the
2379 conjunctive flow a 32-bit \fIid\fR, which must be unique within an
2380 OpenFlow table.  Assign each of the \fIn\fR \[>=] 2 dimensions a
2381 unique number from 1 to \fIn\fR; the ordering is unimportant.  Add one
2382 flow to the OpenFlow flow table for each possible value of each
2383 dimension with \fBconjunction(\fIid, \fIk\fB/\fIn\fB)\fR as the flow's
2384 actions, where \fIk\fR is the number assigned to the flow's dimension.
2385 Together, these flows specify the conjunctive flow's match condition.
2386 When the conjunctive match condition is met, Open vSwitch looks up one
2387 more flow that specifies the conjunctive flow's actions and receives
2388 its statistics.  This flow is found by setting \fBconj_id\fR to the
2389 specified \fIid\fR and then again searching the flow table.
2390 .IP
2391 The following flows provide an example.  Whenever the IP source is one
2392 of the values in the flows that match on the IP source (dimension 1 of
2393 2), \fIand\fR the IP destination is one of the values in the flows
2394 that match on IP destination (dimension 2 of 2), Open vSwitch searches
2395 for a flow that matches \fBconj_id\fR against the conjunction ID
2396 (1234), finding the first flow listed below.
2397 .RS +1in
2398 .br
2399 .B "conj_id=1234 actions=controller"
2400 .br
2401 .B "ip,ip_src=10.0.0.1 actions=conjunction(1234, 1/2)"
2402 .br
2403 .B "ip,ip_src=10.0.0.4 actions=conjunction(1234, 1/2)"
2404 .br
2405 .B "ip,ip_src=10.0.0.6 actions=conjunction(1234, 1/2)"
2406 .br
2407 .B "ip,ip_src=10.0.0.7 actions=conjunction(1234, 1/2)"
2408 .br
2409 .B "ip,ip_dst=10.0.0.2 actions=conjunction(1234, 2/2)"
2410 .br
2411 .B "ip,ip_dst=10.0.0.5 actions=conjunction(1234, 2/2)"
2412 .br
2413 .B "ip,ip_dst=10.0.0.7 actions=conjunction(1234, 2/2)"
2414 .br
2415 .B "ip,ip_dst=10.0.0.8 actions=conjunction(1234, 2/2)"
2416 .RE
2417 .IP
2418 Many subtleties exist:
2419 .RS
2420 .IP \(bu
2421 In the example above, every flow in a single dimension has the same
2422 form, that is, dimension 1 matches on \fBip_src\fR, dimension 2 on
2423 \fBip_dst\fR, but this is not a requirement.  Different flows within a
2424 dimension may match on different bits within a field (e.g. IP network
2425 prefixes of different lengths, or TCP/UDP port ranges as bitwise
2426 matches), or even on entirely different fields (e.g. to match packets
2427 for TCP source port 80 or TCP destination port 80).
2428 .IP \(bu
2429 The flows within a dimension can vary their matches across more than
2430 one field, e.g. to match only specific pairs of IP source and
2431 destination addresses or L4 port numbers.
2432 .IP \(bu
2433 A flow may have multiple \fBconjunction\fR actions, with different
2434 \fIid\fR values.  This is useful for multiple conjunctive flows with
2435 overlapping sets.  If one conjunctive flow matches packets with both
2436 \fBip_src\fR \[mo] {\fIa\fR,\fIb\fR} and \fBip_dst\fR \[mo]
2437 {\fId\fR,\fIe\fR} and a second conjunctive flow matches \fBip_src\fR
2438 \[mo] {\fIb\fR,\fIc\fR} and \fBip_dst\fR \[mo] {\fIf\fR,\fIg\fR}, for
2439 example, then the flow that matches \fBip_src=\fIb\fR would have two
2440 \fBconjunction\fR actions, one for each conjunctive flow.  The order
2441 of \fBconjunction\fR actions within a list of actions is not
2442 significant.
2443 .IP \(bu
2444 A flow with \fBconjunction\fR actions may also include \fBnote\fR
2445 actions for annotations, but not any other kind of actions.  (They
2446 would not be useful because they would never be executed.)
2447 .IP \(bu
2448 All of the flows that constitute a conjunctive flow with a given
2449 \fIid\fR must have the same priority.  (Flows with the same \fIid\fR
2450 but different priorities are currently treated as different
2451 conjunctive flows, that is, currently \fIid\fR values need only be
2452 unique within an OpenFlow table at a given priority.  This behavior
2453 isn't guaranteed to stay the same in later releases, so please use
2454 \fIid\fR values unique within an OpenFlow table.)
2455 .IP \(bu
2456 Conjunctive flows must not overlap with each other, at a given
2457 priority, that is, any given packet must be able to match at most one
2458 conjunctive flow at a given priority.  Overlapping conjunctive flows
2459 yield unpredictable results.
2460 .IP \(bu
2461 Following a conjunctive flow match, the search for the flow with
2462 \fBconj_id=\fIid\fR is done in the same general-purpose way as other flow
2463 table searches, so one can use flows with \fBconj_id=\fIid\fR to act
2464 differently depending on circumstances.  (One exception is that the
2465 search for the \fBconj_id=\fIid\fR flow itself ignores conjunctive flows,
2466 to avoid recursion.) If the search with \fBconj_id=\fIid\fR fails, Open
2467 vSwitch acts as if the conjunctive flow had not matched at all, and
2468 continues searching the flow table for other matching flows.
2469 .IP \(bu
2470 OpenFlow prerequisite checking occurs for the flow with
2471 \fBconj_id=\fIid\fR in the same way as any other flow, e.g. in an
2472 OpenFlow 1.1+ context, putting a \fBmod_nw_src\fR action into the
2473 example above would require adding an \fBip\fR match, like this:
2474 .RS +1in
2475 .br
2476 .B "conj_id=1234,ip actions=mod_nw_src:1.2.3.4,controller"
2477 .br
2478 .RE
2479 .IP \(bu
2480 OpenFlow prerequisite checking also occurs for the individual flows
2481 that comprise a conjunctive match in the same way as any other flow.
2482 .IP \(bu
2483 The flows that constitute a conjunctive flow do not have useful
2484 statistics.  They are never updated with byte or packet counts, and so
2485 on.  (For such a flow, therefore, the idle and hard timeouts work much
2486 the same way.)
2487 .IP \(bu
2488 Conjunctive flows can be a useful building block for negation, that
2489 is, inequality matches like \fBtcp_src\fR \[!=] 80.  To implement an
2490 inequality match, convert it to a pair of range matches, e.g. 0 \[<=]
2491 \fBtcp_src\fR < 80 and 80 < \fBtcp_src\fR \[<=] 65535, then convert each
2492 of the range matches into a collection of bitwise matches as explained
2493 above in the description of \fBtcp_src\fR.
2494 .IP \(bu
2495 Sometimes there is a choice of which flows include a particular match.
2496 For example, suppose that we added an extra constraint to our example,
2497 to match on \fBip_src\fR \[mo] {\fIa\fR,\fIb\fR,\fIc\fR,\fId\fR} and
2498 \fBip_dst\fR \[mo] {\fIe\fR,\fIf\fR,\fIg\fR,\fIh\fR} and \fBtcp_dst\fR
2499 = \fIi\fR.  One way to implement this is to add the new constraint to
2500 the \fBconj_id\fR flow, like this:
2501 .RS +1in
2502 .br
2503 \fBconj_id=1234,tcp,tcp_dst=\fIi\fB actions=mod_nw_src:1.2.3.4,controller\fR
2504 .br
2505 .RE
2506 .IP
2507 \fIbut this is not recommended\fR because of the cost of the extra
2508 flow table lookup.  Instead, add the constraint to the individual
2509 flows, either in one of the dimensions or (slightly better) all of
2510 them.
2511 .IP \(bu
2512 A conjunctive match must have \fIn\fR \[>=] 2 dimensions (otherwise a
2513 conjunctive match is not necessary).  Open vSwitch enforces this.
2514 .IP \(bu
2515 Each dimension within a conjunctive match should ordinarily have more
2516 than one flow.  Open vSwitch does not enforce this.
2517 .RE
2518 .IP
2519 The \fBconjunction\fR action and \fBconj_id\fR field were introduced
2520 in Open vSwitch 2.4.
2521 .RE
2522 .
2523 .PP
2524 An opaque identifier called a cookie can be used as a handle to identify
2525 a set of flows:
2526 .
2527 .IP \fBcookie=\fIvalue\fR
2528 .
2529 A cookie can be associated with a flow using the \fBadd\-flow\fR,
2530 \fBadd\-flows\fR, and \fBmod\-flows\fR commands.  \fIvalue\fR can be any
2531 64-bit number and need not be unique among flows.  If this field is
2532 omitted, a default cookie value of 0 is used.
2533 .
2534 .IP \fBcookie=\fIvalue\fR\fB/\fImask\fR
2535 .
2536 When using NXM, the cookie can be used as a handle for querying,
2537 modifying, and deleting flows.  \fIvalue\fR and \fImask\fR may be
2538 supplied for the \fBdel\-flows\fR, \fBmod\-flows\fR, \fBdump\-flows\fR, and
2539 \fBdump\-aggregate\fR commands to limit matching cookies.  A 1-bit in
2540 \fImask\fR indicates that the corresponding bit in \fIcookie\fR must
2541 match exactly, and a 0-bit wildcards that bit.  A mask of \-1 may be used
2542 to exactly match a cookie.
2543 .IP
2544 The \fBmod\-flows\fR command can update the cookies of flows that
2545 match a cookie by specifying the \fIcookie\fR field twice (once with a
2546 mask for matching and once without to indicate the new value):
2547 .RS
2548 .IP "\fBovs\-ofctl mod\-flows br0 cookie=1,actions=normal\fR"
2549 Change all flows' cookies to 1 and change their actions to \fBnormal\fR.
2550 .IP "\fBovs\-ofctl mod\-flows br0 cookie=1/\-1,cookie=2,actions=normal\fR"
2551 Update cookies with a value of 1 to 2 and change their actions to
2552 \fBnormal\fR.
2553 .RE
2554 .IP
2555 The ability to match on cookies was added in Open vSwitch 1.5.0.
2556 .
2557 .PP
2558 The following additional field sets the priority for flows added by
2559 the \fBadd\-flow\fR and \fBadd\-flows\fR commands.  For
2560 \fBmod\-flows\fR and \fBdel\-flows\fR when \fB\-\-strict\fR is
2561 specified, priority must match along with the rest of the flow
2562 specification.  For \fBmod-flows\fR without \fB\-\-strict\fR,
2563 priority is only significant if the command creates a new flow, that
2564 is, non-strict \fBmod\-flows\fR does not match on priority and will
2565 not change the priority of existing flows.  Other commands do not
2566 allow priority to be specified.
2567 .
2568 .IP \fBpriority=\fIvalue\fR
2569 The priority at which a wildcarded entry will match in comparison to
2570 others.  \fIvalue\fR is a number between 0 and 65535, inclusive.  A higher 
2571 \fIvalue\fR will match before a lower one.  An exact-match entry will always 
2572 have priority over an entry containing wildcards, so it has an implicit 
2573 priority value of 65535.  When adding a flow, if the field is not specified, 
2574 the flow's priority will default to 32768.
2575 .IP
2576 OpenFlow leaves behavior undefined when two or more flows with the
2577 same priority can match a single packet.  Some users expect
2578 ``sensible'' behavior, such as more specific flows taking precedence
2579 over less specific flows, but OpenFlow does not specify this and Open
2580 vSwitch does not implement it.  Users should therefore take care to
2581 use priorities to ensure the behavior that they expect.
2582 .
2583 .PP
2584 The \fBadd\-flow\fR, \fBadd\-flows\fR, and \fBmod\-flows\fR commands
2585 support the following additional options.  These options affect only
2586 new flows.  Thus, for \fBadd\-flow\fR and \fBadd\-flows\fR, these
2587 options are always significant, but for \fBmod\-flows\fR they are
2588 significant only if the command creates a new flow, that is, their
2589 values do not update or affect existing flows.
2590 .
2591 .IP "\fBidle_timeout=\fIseconds\fR"
2592 Causes the flow to expire after the given number of seconds of
2593 inactivity.  A value of 0 (the default) prevents a flow from expiring
2594 due to inactivity.
2595 .
2596 .IP \fBhard_timeout=\fIseconds\fR
2597 Causes the flow to expire after the given number of seconds,
2598 regardless of activity.  A value of 0 (the default) gives the flow no
2599 hard expiration deadline.
2600 .
2601 .IP "\fBimportance=\fIvalue\fR"
2602 Sets the importance of a flow.  The flow entry eviction mechanism can
2603 use importance as a factor in deciding which flow to evict.  A value
2604 of 0 (the default) makes the flow non-evictable on the basis of
2605 importance.  Specify a value between 0 and 65535.
2606 .IP
2607 Only OpenFlow 1.4 and later support \fBimportance\fR.
2608 .
2609 .IP "\fBsend_flow_rem\fR"
2610 Marks the flow with a flag that causes the switch to generate a ``flow
2611 removed'' message and send it to interested controllers when the flow
2612 later expires or is removed.
2613 .
2614 .IP "\fBcheck_overlap\fR"
2615 Forces the switch to check that the flow match does not overlap that
2616 of any different flow with the same priority in the same table.  (This
2617 check is expensive so it is best to avoid it.)
2618 .
2619 .PP
2620 The \fBdump\-flows\fR, \fBdump\-aggregate\fR, \fBdel\-flow\fR 
2621 and \fBdel\-flows\fR commands support these additional optional fields:
2622 .
2623 .TP
2624 \fBout_port=\fIport\fR
2625 If set, a matching flow must include an output action to \fIport\fR,
2626 which must be an OpenFlow port number or name (e.g. \fBlocal\fR).
2627 .
2628 .TP
2629 \fBout_group=\fIport\fR
2630 If set, a matching flow must include an \fBgroup\fR action naming
2631 \fIgroup\fR, which must be an OpenFlow group number.  This field
2632 is supported in Open vSwitch 2.5 and later and requires OpenFlow 1.1
2633 or later.
2634 .
2635 .SS "Table Entry Output"
2636 .
2637 The \fBdump\-tables\fR and \fBdump\-aggregate\fR commands print information 
2638 about the entries in a datapath's tables.  Each line of output is a 
2639 flow entry as described in \fBFlow Syntax\fR, above, plus some
2640 additional fields:
2641 .
2642 .IP \fBduration=\fIsecs\fR
2643 The time, in seconds, that the entry has been in the table.
2644 \fIsecs\fR includes as much precision as the switch provides, possibly
2645 to nanosecond resolution.
2646 .
2647 .IP \fBn_packets\fR
2648 The number of packets that have matched the entry.
2649 .
2650 .IP \fBn_bytes\fR
2651 The total number of bytes from packets that have matched the entry.
2652 .
2653 .PP
2654 The following additional fields are included only if the switch is
2655 Open vSwitch 1.6 or later and the NXM flow format is used to dump the
2656 flow (see the description of the \fB\-\-flow-format\fR option below).
2657 The values of these additional fields are approximations only and in
2658 particular \fBidle_age\fR will sometimes become nonzero even for busy
2659 flows.
2660 .
2661 .IP \fBhard_age=\fIsecs\fR
2662 The integer number of seconds since the flow was added or modified.
2663 \fBhard_age\fR is displayed only if it differs from the integer part
2664 of \fBduration\fR.  (This is separate from \fBduration\fR because
2665 \fBmod\-flows\fR restarts the \fBhard_timeout\fR timer without zeroing
2666 \fBduration\fR.)
2667 .
2668 .IP \fBidle_age=\fIsecs\fR
2669 The integer number of seconds that have passed without any packets
2670 passing through the flow.
2671 .
2672 .SS "Group Syntax"
2673 .PP
2674 Some \fBovs\-ofctl\fR commands accept an argument that describes a group or
2675 groups.  Such flow descriptions comprise a series
2676 \fIfield\fB=\fIvalue\fR assignments, separated by commas or white
2677 space.  (Embedding spaces into a group description normally requires
2678 quoting to prevent the shell from breaking the description into
2679 multiple arguments.). Unless noted otherwise only the last instance
2680 of each field is honoured.
2681 .PP
2682 .IP \fBgroup_id=\fIid\fR
2683 The integer group id of group.
2684 When this field is specified in \fBdel\-groups\fR or \fBdump\-groups\fR,
2685 the keyword "all" may be used to designate all groups.
2686 .
2687 This field is required.
2688
2689
2690 .IP \fBtype=\fItype\fR
2691 The type of the group.  The \fBadd-group\fR, \fBadd-groups\fR and
2692 \fBmod-groups\fR commands require this field.  It is prohibited for
2693 other commands. The following keywords designated the allowed types:
2694 .RS
2695 .IP \fBall\fR
2696 Execute all buckets in the group.
2697 .IP \fBselect\fR
2698 Execute one bucket in the group.
2699 The switch should select the bucket in such a way that should implement
2700 equal load sharing is achieved.  The switch may optionally select the
2701 bucket based on bucket weights.
2702 .IP \fBindirect\fR
2703 Executes the one bucket in the group.
2704 .IP \fBff\fR
2705 .IQ \fBfast_failover\fR
2706 Executes the first live bucket in the group which is associated with
2707 a live port or group.
2708 .RE
2709
2710 .IP \fBcommand_bucket_id=\fIid\fR
2711 The bucket to operate on.  The \fBinsert-buckets\fR and \fBremove-buckets\fR
2712 commands require this field.  It is prohibited for other commands.
2713 \fIid\fR may be an integer or one of the following keywords:
2714 .RS
2715 .IP \fBall\fR
2716 Operate on all buckets in the group.
2717 Only valid when used with the \fBremove-buckets\fR command in which
2718 case the effect is to remove all buckets from the group.
2719 .IP \fBfirst\fR
2720 Operate on the first bucket present in the group.
2721 In the case of the \fBinsert-buckets\fR command the effect is to
2722 insert new bucets just before the first bucket already present in the group;
2723 or to replace the buckets of the group if there are no buckets already present
2724 in the group.
2725 In the case of the \fBremove-buckets\fR command the effect is to
2726 remove the first bucket of the group; or do nothing if there are no
2727 buckets present in the group.
2728 .IP \fBlast\fR
2729 Operate on the last bucket present in the group.
2730 In the case of the \fBinsert-buckets\fR command the effect is to
2731 insert new bucets just after the last bucket already present in the group;
2732 or to replace the buckets of the group if there are no buckets already present
2733 in the group.
2734 In the case of the \fBremove-buckets\fR command the effect is to
2735 remove the last bucket of the group; or do nothing if there are no
2736 buckets present in the group.
2737 .RE
2738 .IP
2739 If \fIid\fR is an integer then it should correspond to the \fBbucket_id\fR
2740 of a bucket present in the group.
2741 In case of the \fBinsert-buckets\fR command the effect is to
2742 insert buckets just before the bucket in the group whose \fBbucket_id\fR is
2743 \fIid\fR.
2744 In case of the \fBiremove-buckets\fR command the effect is to
2745 remove the in the group whose \fBbucket_id\fR is \fIid\fR.
2746 It is an error if there is no bucket persent group in whose \fBbucket_id\fR is
2747 \fIid\fR.
2748
2749 .IP \fBselection_method\fR=\fImethod\fR
2750 The selection method used to select a bucket for a select group.
2751 This is a string of 1 to 15 bytes in length known to lower layers.
2752 This field is optional for \fBadd\-group\fR, \fBadd\-groups\fR and
2753 \fBmod\-group\fR commands on groups of type \fBselect\fR. Prohibited
2754 otherwise. The default value is the empty string.
2755 .IP
2756 Other than the empty string, \fBhash\fR is currently the only defined
2757 selection method.
2758 .IP
2759 This option will use a Netronome OpenFlow extension which is only supported
2760 when using Open vSwitch 2.4 and later with OpenFlow 1.5 and later.
2761
2762 .IP \fBselection_method_param\fR=\fIparam\fR
2763 64-bit integer parameter to the selection method selected by the
2764 \fBselection_method\fR field.  The parameter's use is defined by the
2765 lower-layer that implements the \fBselection_method\fR.  It is optional if
2766 the \fBselection_method\fR field is specified as a non-empty string.
2767 Prohibited otherwise. The default value is zero.
2768 .IP
2769 This option will use a Netronome OpenFlow extension which is only supported
2770 when using Open vSwitch 2.4 and later with OpenFlow 1.5 and later.
2771
2772 .IP \fBfields\fR=\fIfield\fR
2773 .IQ \fBfields(\fIfield\fR[\fB=\fImask\fR]\fR...\fB)\fR
2774 The field parameters to selection method selected by the
2775 \fBselection_method\fR field.  The syntax is described in \fBFlow Syntax\fR
2776 with the additional restrictions that if a value is provided it is
2777 treated as a wildcard mask and wildcard masks following a slash are
2778 prohibited. The pre-requisites of fields must be provided by any flows that
2779 output to the group. The use of the fields is defined by the lower-layer
2780 that implements the \fBselection_method\fR.  They are optional if the
2781 \fBselection_method\fR field is specified as a non-empty string.
2782 Prohibited otherwise. The default is no fields.
2783 .IP
2784 This option will use a Netronome OpenFlow extension which is only supported
2785 when using Open vSwitch 2.4 and later with OpenFlow 1.5 and later.
2786
2787 .IP \fBbucket\fR=\fIbucket_parameters\fR
2788 The \fBadd-group\fR, \fBadd-groups\fR and \fBmod-group\fR commands
2789 require at least one bucket field. Bucket fields must appear after
2790 all other fields.
2791 .
2792 Multiple bucket fields to specify multiple buckets.
2793 The order in which buckets are specified corresponds to their order in
2794 the group. If the type of the group is "indirect" then only one group may
2795 be specified.
2796 .
2797 \fIbucket_parameters\fR consists of a list of \fIfield\fB=\fIvalue\fR
2798 assignments, separated by commas or white space followed by a
2799 comma-separated list of actions.
2800 The fields for \fIbucket_parameters\fR are:
2801 .
2802 .RS
2803 .IP \fBbucket_id=\fIid\fR
2804 The 32-bit integer group id of the bucket.  Values greater than
2805 0xffffff00 are reserved.
2806 .
2807 This field was added in Open vSwitch 2.4 to conform with the OpenFlow
2808 1.5 specification. It is not supported when earlier versions
2809 of OpenFlow are used.  Open vSwitch will automatically allocate bucket
2810 ids when they are not specified.
2811 .IP \fBactions=\fR[\fIaction\fR][\fB,\fIaction\fR...]\fR
2812 The syntax of actions are identical to the \fBactions=\fR field described in
2813 \fBFlow Syntax\fR above. Specyfing \fBactions=\fR is optional, any unknown
2814 bucket parameter will be interpreted as an action.
2815 .IP \fBweight=\fIvalue\fR
2816 The relative weight of the bucket as an integer. This may be used by the switch
2817 during bucket select for groups whose \fBtype\fR is \fBselect\fR.
2818 .IP \fBwatch_port=\fIport\fR
2819 Port used to determine liveness of group.
2820 This or the \fBwatch_group\fR field is required
2821 for groups whose \fBtype\fR is \fBff\fR or \fBfast_failover\fR.
2822 .IP \fBwatch_group=\fIgroup_id\fR
2823 Group identifier of group used to determine liveness of group.
2824 This or the \fBwatch_port\fR field is required
2825 for groups whose \fBtype\fR is \fBff\fR or \fBfast_failover\fR.
2826 .RE
2827 .
2828 .SS "Meter Syntax"
2829 .PP
2830 The meter table commands accept an argument that describes a meter.
2831 Such meter descriptions comprise a series \fIfield\fB=\fIvalue\fR
2832 assignments, separated by commas or white space.
2833 (Embedding spaces into a group description normally requires
2834 quoting to prevent the shell from breaking the description into
2835 multiple arguments.). Unless noted otherwise only the last instance
2836 of each field is honoured.
2837 .PP
2838 .IP \fBmeter=\fIid\fR
2839 The integer meter id of the meter.
2840 When this field is specified in \fBdel-meter\fR, \fBdump-meter\fR, or
2841 \fBmeter-stats\fR, the keyword "all" may be used to designate all meters.
2842 .
2843 This field is required, exept for \fBmeter-stats\fR, which dumps all stats
2844 when this field is not specified.
2845
2846 .IP \fBkbps\fR
2847 .IQ \fBpktps\fR
2848 The unit for the meter band rate parameters, either kilobits per second, or
2849 packets per second, respectively.  One of these must be specified.  The burst
2850 size unit corresponds to the rate unit by dropping the "per second", i.e.,
2851 burst is in units of kilobits or packets, respectively.
2852
2853 .IP \fBburst\fR
2854 Specify burst size for all bands, or none of them, if this flag is not given.
2855
2856 .IP \fBstats\fR
2857 Collect meter and band statistics.
2858
2859 .IP \fBbands\fR=\fIband_parameters\fR
2860 The \fBadd-meter\fR and \fBmod-meter\fR commands require at least one
2861 band specification. Bands must appear after all other fields.
2862 .RS
2863 .IP \fBtype=\fItype\fR
2864 The type of the meter band.  This keyword starts a new band specification.
2865 Each band specifies a rate above which the band is to take some action. The
2866 action depends on the band type.  If multiple bands' rate is exceeded, then
2867 the band with the highest rate among the exceeded bands is selected.
2868 The following keywords designate the allowed
2869 meter band types:
2870 .RS
2871 .IP \fBdrop\fR
2872 Drop packets exceeding the band's rate limit.
2873 .RE
2874 .
2875 .IP "The other \fIband_parameters\fR are:"
2876 .IP \fBrate=\fIvalue\fR
2877 The relative rate limit for this band, in kilobits per second or packets per
2878 second, depending on the meter flags defined above.
2879 .IP \fBburst_size=\fIsize\fR
2880 The maximum burst allowed for the band.  If \fBpktps\fR is specified,
2881 then \fIsize\fR is a packet count, otherwise it is in kilobits.  If
2882 unspecified, the switch is free to select some reasonable value
2883 depending on its configuration.
2884 .RE
2885 .
2886 .SH OPTIONS
2887 .TP
2888 \fB\-\-strict\fR
2889 Uses strict matching when running flow modification commands.
2890 .
2891 .IP "\fB\-\-bundle\fR"
2892 Execute flow mods as an OpenFlow 1.4 atomic bundle transaction.
2893 .RS
2894 .IP \(bu
2895 Within a bundle, all flow mods are processed in the order they appear
2896 and as a single atomic transaction, meaning that if one of them fails,
2897 the whole transaction fails and none of the changes are made to the
2898 \fIswitch\fR's flow table, and that each given datapath packet
2899 traversing the OpenFlow tables sees the flow tables either as before
2900 the transaction, or after all the flow mods in the bundle have been
2901 successfully applied.
2902 .IP \(bu
2903 The beginning and the end of the flow table modification commands in a
2904 bundle are delimited with OpenFlow 1.4 bundle control messages, which
2905 makes it possible to stream the included commands without explicit
2906 OpenFlow barriers, which are otherwise used after each flow table
2907 modification command.  This may make large modifications execute
2908 faster as a bundle.
2909 .IP \(bu
2910 Bundles require OpenFlow 1.4 or higher.  An explicit \fB-O
2911 OpenFlow14\fR option is not needed, but you may need to enable
2912 OpenFlow 1.4 support for OVS by setting the OVSDB \fIprotocols\fR
2913 column in the \fIbridge\fR table.
2914 .RE
2915 .
2916 .so lib/ofp-version.man
2917 .
2918 .IP "\fB\-F \fIformat\fR[\fB,\fIformat\fR...]"
2919 .IQ "\fB\-\-flow\-format=\fIformat\fR[\fB,\fIformat\fR...]"
2920 \fBovs\-ofctl\fR supports the following individual flow formats, any
2921 number of which may be listed as \fIformat\fR:
2922 .RS
2923 .IP "\fBOpenFlow10\-table_id\fR"
2924 This is the standard OpenFlow 1.0 flow format.  All OpenFlow switches
2925 and all versions of Open vSwitch support this flow format.
2926 .
2927 .IP "\fBOpenFlow10+table_id\fR"
2928 This is the standard OpenFlow 1.0 flow format plus a Nicira extension
2929 that allows \fBovs\-ofctl\fR to specify the flow table in which a
2930 particular flow should be placed.  Open vSwitch 1.2 and later supports
2931 this flow format.
2932 .
2933 .IP "\fBNXM\-table_id\fR (Nicira Extended Match)"
2934 This Nicira extension to OpenFlow is flexible and extensible.  It
2935 supports all of the Nicira flow extensions, such as \fBtun_id\fR and
2936 registers.  Open vSwitch 1.1 and later supports this flow format.
2937 .
2938 .IP "\fBNXM+table_id\fR (Nicira Extended Match)"
2939 This combines Nicira Extended match with the ability to place a flow
2940 in a specific table.  Open vSwitch 1.2 and later supports this flow
2941 format.
2942 .
2943 .IP "\fBOXM-OpenFlow12\fR"
2944 .IQ "\fBOXM-OpenFlow13\fR"
2945 .IQ "\fBOXM-OpenFlow14\fR"
2946 These are the standard OXM (OpenFlow Extensible Match) flow format in
2947 OpenFlow 1.2, 1.3, and 1.4, respectively.
2948 .RE
2949 .
2950 .IP
2951 \fBovs\-ofctl\fR also supports the following abbreviations for
2952 collections of flow formats:
2953 .RS
2954 .IP "\fBany\fR"
2955 Any supported flow format.
2956 .IP "\fBOpenFlow10\fR"
2957 \fBOpenFlow10\-table_id\fR or \fBOpenFlow10+table_id\fR.
2958 .IP "\fBNXM\fR"
2959 \fBNXM\-table_id\fR or \fBNXM+table_id\fR.
2960 .IP "\fBOXM\fR"
2961 \fBOXM-OpenFlow12\fR, \fBOXM-OpenFlow13\fR, or \fBOXM-OpenFlow14\fR.
2962 .RE
2963 .
2964 .IP
2965 For commands that modify the flow table, \fBovs\-ofctl\fR by default
2966 negotiates the most widely supported flow format that supports the
2967 flows being added.  For commands that query the flow table,
2968 \fBovs\-ofctl\fR by default uses the most advanced format supported by
2969 the switch.
2970 .IP
2971 This option, where \fIformat\fR is a comma-separated list of one or
2972 more of the formats listed above, limits \fBovs\-ofctl\fR's choice of
2973 flow format.  If a command cannot work as requested using one of the
2974 specified flow formats, \fBovs\-ofctl\fR will report a fatal error.
2975 .
2976 .IP "\fB\-P \fIformat\fR"
2977 .IQ "\fB\-\-packet\-in\-format=\fIformat\fR"
2978 \fBovs\-ofctl\fR supports the following ``packet-in'' formats, in order of
2979 increasing capability:
2980 .RS
2981 .IP "\fBstandard\fR"
2982 This uses the \fBOFPT_PACKET_IN\fR message, the standard ``packet-in''
2983 message for any given OpenFlow version.  Every OpenFlow switch that
2984 supports a given OpenFlow version supports this format.
2985 .
2986 .IP "\fBnxt_packet_in\fR"
2987 This uses the \fBNXT_PACKET_IN\fR message, which adds many of the
2988 capabilities of the OpenFlow 1.1 and later ``packet-in'' messages
2989 before those OpenFlow versions were available in Open vSwitch.  Open
2990 vSwitch 1.1 and later support this format.  Only Open vSwitch 2.6 and
2991 later, however, support it for OpenFlow 1.1 and later (but there is
2992 little reason to use it with those versions of OpenFlow).
2993 .
2994 .IP "\fBnxt_packet_in2\fR"
2995 This uses the \fBNXT_PACKET_IN2\fR message, which is extensible and
2996 should avoid the need to define new formats later.  In particular,
2997 this format supports passing arbitrary user-provided data to a
2998 controller using the \fBuserdata\fB option on the \fBcontroller\fR
2999 action.  Open vSwitch 2.6 and later support this format.
3000 .
3001 .RE
3002 .IP
3003 Without this option, \fBovs\-ofctl\fR prefers \fBnxt_packet_in2\fR if
3004 the switch supports it.  Otherwise, if OpenFlow 1.0 is in use,
3005 \fBovs\-ofctl\fR prefers \fBnxt_packet_in\fR if the switch supports
3006 it.  Otherwise, \fBovs\-ofctl\fR falls back to the \fBstandard\fR
3007 packet-in format.  When this option is specified, \fBovs\-ofctl\fR
3008 insists on the selected format.  If the switch does not support the
3009 requested format, \fBovs\-ofctl\fR will report a fatal error.
3010 .IP
3011 Before version 2.6, Open vSwitch called \fBstandard\fR format
3012 \fBopenflow10\fR and \fBnxt_packet_in\fR format \fBnxm\fR, and
3013 \fBovs\-ofctl\fR still accepts these names as synonyms.  (The name
3014 \fBopenflow10\fR was a misnomer because this format actually varies
3015 from one OpenFlow version to another; it is not consistently OpenFlow
3016 1.0 format.  Similarly, when \fBnxt_packet_in2\fR was introduced, the
3017 name \fBnxm\fR became confusing because it also uses OXM/NXM.)
3018 .
3019 .IP
3020 This option affects only the \fBmonitor\fR command.
3021 .
3022 .IP "\fB\-\-timestamp\fR"
3023 Print a timestamp before each received packet.  This option only
3024 affects the \fBmonitor\fR, \fBsnoop\fR, and \fBofp\-parse\-pcap\fR
3025 commands.
3026 .
3027 .IP "\fB\-m\fR"
3028 .IQ "\fB\-\-more\fR"
3029 Increases the verbosity of OpenFlow messages printed and logged by
3030 \fBovs\-ofctl\fR commands.  Specify this option more than once to
3031 increase verbosity further.
3032 .
3033 .IP \fB\-\-sort\fR[\fB=\fIfield\fR]
3034 .IQ \fB\-\-rsort\fR[\fB=\fIfield\fR]
3035 Display output sorted by flow \fIfield\fR in ascending
3036 (\fB\-\-sort\fR) or descending (\fB\-\-rsort\fR) order, where
3037 \fIfield\fR is any of the fields that are allowed for matching or
3038 \fBpriority\fR to sort by priority.  When \fIfield\fR is omitted, the
3039 output is sorted by priority.  Specify these options multiple times to
3040 sort by multiple fields.
3041 .IP
3042 Any given flow will not necessarily specify a value for a given
3043 field.  This requires special treatement:
3044 .RS
3045 .IP \(bu
3046 A flow that does not specify any part of a field that is used for sorting is
3047 sorted after all the flows that do specify the field.  For example,
3048 \fB\-\-sort=tcp_src\fR will sort all the flows that specify a TCP
3049 source port in ascending order, followed by the flows that do not
3050 specify a TCP source port at all.
3051 .IP \(bu
3052 A flow that only specifies some bits in a field is sorted as if the
3053 wildcarded bits were zero.  For example, \fB\-\-sort=nw_src\fR would
3054 sort a flow that specifies \fBnw_src=192.168.0.0/24\fR the same as
3055 \fBnw_src=192.168.0.0\fR.
3056 .RE
3057 .IP
3058 These options currently affect only \fBdump\-flows\fR output.
3059 .
3060 .ds DD \
3061 \fBovs\-ofctl\fR detaches only when executing the \fBmonitor\fR or \
3062 \fBsnoop\fR commands.
3063 .so lib/daemon.man
3064 .so lib/unixctl.man
3065 .SS "Public Key Infrastructure Options"
3066 .so lib/ssl.man
3067 .so lib/vlog.man
3068 .so lib/colors.man
3069 .so lib/common.man
3070 .
3071 .SH "RUNTIME MANAGEMENT COMMANDS"
3072 \fBovs\-appctl\fR(8) can send commands to a running \fBovs\-ofctl\fR
3073 process.  The supported commands are listed below.
3074 .
3075 .IP "\fBexit\fR"
3076 Causes \fBovs\-ofctl\fR to gracefully terminate.  This command applies
3077 only when executing the \fBmonitor\fR or \fBsnoop\fR commands.
3078 .
3079 .IP "\fBofctl/set\-output\-file \fIfile\fR"
3080 Causes all subsequent output to go to \fIfile\fR instead of stderr.
3081 This command applies only when executing the \fBmonitor\fR or
3082 \fBsnoop\fR commands.
3083 .
3084 .IP "\fBofctl/send \fIofmsg\fR..."
3085 Sends each \fIofmsg\fR, specified as a sequence of hex digits that
3086 express an OpenFlow message, on the OpenFlow connection.  This command
3087 is useful only when executing the \fBmonitor\fR command.
3088 .
3089 .IP "\fBofctl/barrier\fR"
3090 Sends an OpenFlow barrier request on the OpenFlow connection and waits
3091 for a reply.  This command is useful only for the \fBmonitor\fR
3092 command.
3093 .
3094 .SH EXAMPLES
3095 .
3096 The following examples assume that \fBovs\-vswitchd\fR has a bridge
3097 named \fBbr0\fR configured.
3098 .
3099 .TP
3100 \fBovs\-ofctl dump\-tables br0\fR
3101 Prints out the switch's table stats.  (This is more interesting after
3102 some traffic has passed through.)
3103 .
3104 .TP
3105 \fBovs\-ofctl dump\-flows br0\fR
3106 Prints the flow entries in the switch.
3107 .
3108 .SH "SEE ALSO"
3109 .
3110 .BR ovs\-appctl (8),
3111 .BR ovs\-vswitchd (8)
3112 .BR ovs\-vswitchd.conf.db (8)