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