ovs-ofctl: New commands "replace-flows" and "diff-flows".
[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 .TP
96 \fBdump\-flows \fIswitch \fR[\fIflows\fR]
97 Prints to the console all flow entries in \fIswitch\fR's
98 tables that match \fIflows\fR.  If \fIflows\fR is omitted, all flows
99 in the switch are retrieved.  See \fBFlow Syntax\fR, below, for the
100 syntax of \fIflows\fR.  The output format is described in 
101 \fBTable Entry Output\fR.
102 .
103 .TP
104 \fBdump\-aggregate \fIswitch \fR[\fIflows\fR]
105 Prints to the console aggregate statistics for flows in 
106 \fIswitch\fR's tables that match \fIflows\fR.  If \fIflows\fR is omitted, 
107 the statistics are aggregated across all flows in the switch's flow
108 tables.  See \fBFlow Syntax\fR, below, for the syntax of \fIflows\fR.
109 The output format is descrbed in \fBTable Entry Output\fR.
110 .
111 .IP "\fBqueue\-stats \fIswitch \fR[\fIport \fR[\fIqueue\fR]]"
112 Prints to the console statistics for the specified \fIqueue\fR on
113 \fIport\fR within \fIswitch\fR.  Either of \fIport\fR or \fIqueue\fR
114 or both may be omitted (or equivalently specified as \fBALL\fR).  If
115 both are omitted, statistics are printed for all queues on all ports.
116 If only \fIqueue\fR is omitted, then statistics are printed for all
117 queues on \fIport\fR; if only \fIport\fR is omitted, then statistics
118 are printed for \fIqueue\fR on every port where it exists.
119 .
120 .TP
121 \fBadd\-flow \fIswitch flow\fR
122 Add the flow entry as described by \fIflow\fR to the \fIswitch\fR's 
123 tables.  The flow entry is in the format described in \fBFlow Syntax\fR, 
124 below.
125 .
126 .TP
127 \fBadd\-flows \fIswitch file\fR
128 Add the flow entries listed in \fIfile\fR, or supplied on \fBstdin\fR
129 if \fIfile\fR is \fB\-\fR, to \fIswitch\fR's
130 tables.  Each line in \fIfile\fR is a flow entry in the format
131 described in \fBFlow Syntax\fR, below.
132 .
133 .TP
134 \fBmod\-flows \fIswitch flow\fR
135 Modify the actions in entries from the \fIswitch\fR's tables 
136 that match \fIflow\fR.  When invoked with the \fB\-\-strict\fR option,
137 wildcards are not treated as active for matching purposes.  See 
138 \fBFlow Syntax\fR, below, for the syntax of \fIflows\fR.
139 .
140 .TP
141 \fBdel\-flows \fIswitch \fR[\fIflow\fR]
142 Deletes entries from the \fIswitch\fR's tables that match
143 \fIflow\fR.  When invoked with the \fB\-\-strict\fR option, wildcards are 
144 not treated as active for matching purposes.  If \fIflow\fR is 
145 omitted and the \fB\-\-strict\fR option is not used, all flows in the 
146 switch's tables are removed.  See \fBFlow Syntax\fR, below, for the 
147 syntax of \fIflows\fR.
148 .
149 .IP "\fBreplace\-flows \fIswitch file\fR"
150 Reads flow entries from \fIfile\fR (or \fBstdin\fR if \fIfile\fR is
151 \fB\-\fR) and queries the flow table from \fIswitch\fR.  Then it fixes
152 up any differences, adding flows from \fIflow\fR that are missing on
153 \fIswitch\fR, deleting flows from \fIswitch\fR that are not in
154 \fIfile\fR, and updating flows in \fIswitch\fR whose actions, cookie,
155 or timeouts differ in \fIfile\fR.
156 .
157 .IP "\fBdiff\-flows \fIsource1 source2\fR"
158 Reads flow entries from \fIsource1\fR and \fIsource2\fR and prints the
159 differences.  A flow that is in \fIsource1\fR but not in \fIsource2\fR
160 is printed preceded by a \fB\-\fR, and a flow that is in \fIsource2\fR
161 but not in \fIsource1\fR is printed preceded by a \fB+\fR.  If a flow
162 exists in both \fIsource1\fR and \fIsource2\fR with different actions,
163 cookie, or timeouts, then both versions are printed preceded by
164 \fB\-\fR and \fB+\fR, respectively.
165 .IP
166 \fIsource1\fR and \fIsource2\fR may each name a file or a switch.  If
167 a name begins with \fB/\fR or \fB.\fR, then it is considered to be a
168 file name.  A name that contains \fB:\fR is considered to be a switch.
169 Otherwise, it is a file if a file by that name exists, a switch if
170 not.
171 .IP
172 For this command, an exit status of 0 means that no differences were
173 found, 1 means that an error occurred, and 2 means that some
174 differences were found.
175 .
176 .IP "\fBsnoop \fIswitch\fR"
177 Connects to \fIswitch\fR and prints to the console all OpenFlow
178 messages received.  Unlike other \fBovs\-ofctl\fR commands, if
179 \fIswitch\fR is the name of a bridge, then the \fBsnoop\fR command
180 connects to a Unix domain socket named
181 \fB@RUNDIR@/\fIbridge\fB.snoop\fR.  \fBovs\-vswitchd\fR listens on
182 such a socket for each bridge and sends to it all of the OpenFlow
183 messages sent to or received from its configured OpenFlow controller.
184 Thus, this command can be used to view OpenFlow protocol activity
185 between a switch and its controller.
186 .IP
187 When a switch has more than one controller configured, only the
188 traffic to and from a single controller is output.  If none of the
189 controllers is configured as a master or a slave (using a Nicira
190 extension to OpenFlow), then a controller is chosen arbitrarily among
191 them.  If there is a master controller, it is chosen; otherwise, if
192 there are any controllers that are not masters or slaves, one is
193 chosen arbitrarily; otherwise, a slave controller is chosen
194 arbitrarily.  This choice is made once at connection time and does not
195 change as controllers reconfigure their roles.
196 .IP
197 If a switch has no controller configured, or if
198 the configured controller is disconnected, no traffic is sent, so
199 monitoring will not show any traffic.
200 .
201 .IQ "\fBmonitor \fIswitch\fR [\fImiss-len\fR]"
202 Connects to \fIswitch\fR and prints to the console all OpenFlow
203 messages received.  Usually, \fIswitch\fR should specify a connection
204 named on \fBovs\-openflowd\fR(8)'s \fB\-l\fR or \fB\-\-listen\fR command line
205 option.
206 .IP
207 If \fImiss-len\fR is provided, \fBovs\-ofctl\fR sends an OpenFlow ``set
208 configuration'' message at connection setup time that requests
209 \fImiss-len\fR bytes of each packet that misses the flow table.  Open vSwitch
210 does not send these and other asynchronous messages to an
211 \fBovs\-ofctl monitor\fR client connection unless a nonzero value is
212 specified on this argument.  (Thus, if \fImiss\-len\fR is not
213 specified, very little traffic will ordinarily be printed.)
214 .IP
215 This command may be useful for debugging switch or controller
216 implementations.
217 .
218 .SS "OpenFlow Switch and Controller Commands"
219 .
220 The following commands, like those in the previous section, may be
221 applied to OpenFlow switches, using any of the connection methods
222 described in that section.  Unlike those commands, these may also be
223 applied to OpenFlow controllers.
224 .
225 .TP
226 \fBprobe \fItarget\fR
227 Sends a single OpenFlow echo-request message to \fItarget\fR and waits
228 for the response.  With the \fB\-t\fR or \fB\-\-timeout\fR option, this
229 command can test whether an OpenFlow switch or controller is up and
230 running.
231 .
232 .TP
233 \fBping \fItarget \fR[\fIn\fR]
234 Sends a series of 10 echo request packets to \fItarget\fR and times
235 each reply.  The echo request packets consist of an OpenFlow header
236 plus \fIn\fR bytes (default: 64) of randomly generated payload.  This
237 measures the latency of individual requests.
238 .
239 .TP
240 \fBbenchmark \fItarget n count\fR
241 Sends \fIcount\fR echo request packets that each consist of an
242 OpenFlow header plus \fIn\fR bytes of payload and waits for each
243 response.  Reports the total time required.  This is a measure of the
244 maximum bandwidth to \fItarget\fR for round-trips of \fIn\fR-byte
245 messages.
246 .
247 .SS "Flow Syntax"
248 .PP
249 Some \fBovs\-ofctl\fR commands accept an argument that describes a flow or
250 flows.  Such flow descriptions comprise a series
251 \fIfield\fB=\fIvalue\fR assignments, separated by commas or white
252 space.  (Embedding spaces into a flow description normally requires
253 quoting to prevent the shell from breaking the description into
254 multiple arguments.)
255 .PP
256 Flow descriptions should be in \fBnormal form\fR.  This means that a
257 flow may only specify a value for an L3 field if it also specifies a
258 particular L2 protocol, and that a flow may only specify an L4 field
259 if it also specifies particular L2 and L3 protocol types.  For
260 example, if the L2 protocol type \fBdl_type\fR is wildcarded, then L3
261 fields \fBnw_src\fR, \fBnw_dst\fR, and \fBnw_proto\fR must also be
262 wildcarded.  Similarly, if \fBdl_type\fR or \fBnw_proto\fR (the L3
263 protocol type) is wildcarded, so must be \fBtp_dst\fR and
264 \fBtp_src\fR, which are L4 fields.  \fBovs\-ofctl\fR will warn about
265 flows not in normal form.
266 .PP
267 The following field assignments describe how a flow matches a packet.
268 If any of these assignments is omitted from the flow syntax, the field
269 is treated as a wildcard; thus, if all of them are omitted, the
270 resulting flow matches all packets.  The string \fB*\fR or \fBANY\fR
271 may be specified to explicitly mark any of these fields as a wildcard.  
272 (\fB*\fR should be quoted to protect it from shell expansion.)
273 .
274 .IP \fBin_port=\fIport_no\fR
275 Matches physical port \fIport_no\fR.  Switch ports are numbered as
276 displayed by \fBovs\-ofctl show\fR.
277 .
278 .IP \fBdl_vlan=\fIvlan\fR
279 Matches IEEE 802.1q Virtual LAN tag \fIvlan\fR.  Specify \fB0xffff\fR
280 as \fIvlan\fR to match packets that are not tagged with a Virtual LAN;
281 otherwise, specify a number between 0 and 4095, inclusive, as the
282 12-bit VLAN ID to match.
283 .
284 .IP \fBdl_vlan_pcp=\fIpriority\fR
285 Matches IEEE 802.1q Priority Code Point (PCP) \fIpriority\fR, which is
286 specified as a value between 0 and 7, inclusive.  A higher value
287 indicates a higher frame priority level.
288 .
289 .IP \fBdl_src=\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fR
290 .IQ \fBdl_dst=\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fR
291 Matches an Ethernet source (or destination) address specified as 6
292 pairs of hexadecimal digits delimited by colons
293 (e.g. \fB00:0A:E4:25:6B:B0\fR).
294 .
295 .IP \fBdl_type=\fIethertype\fR
296 Matches Ethernet protocol type \fIethertype\fR, which is specified as an
297 integer between 0 and 65535, inclusive, either in decimal or as a 
298 hexadecimal number prefixed by \fB0x\fR (e.g. \fB0x0806\fR to match ARP 
299 packets).
300 .
301 .IP \fBnw_src=\fIip\fR[\fB/\fInetmask\fR]
302 .IQ \fBnw_dst=\fIip\fR[\fB/\fInetmask\fR]
303 When \fBdl_type\fR is 0x0800 (possibly via shorthand, e.g. \fBip\fR
304 or \fBtcp\fR), matches IPv4 source (or destination) address \fIip\fR,
305 which may be specified as an IP address or host name
306 (e.g. \fB192.168.1.1\fR or \fBwww.example.com\fR).  The optional
307 \fInetmask\fR allows restricting a match to an IPv4 address prefix.
308 The netmask may be specified as a dotted quad
309 (e.g. \fB192.168.1.0/255.255.255.0\fR) or as a CIDR block
310 (e.g. \fB192.168.1.0/24\fR).
311 .IP
312 When \fBdl_type=0x0806\fR or \fBarp\fR is specified, matches the
313 \fBar_spa\fR or \fBar_tpa\fR field, respectively, in ARP packets for
314 IPv4 and Ethernet.
315 .IP
316 When \fBdl_type\fR is wildcarded or set to a value other than 0x0800
317 or 0x0806, the values of \fBnw_src\fR and \fBnw_dst\fR are ignored
318 (see \fBFlow Syntax\fR above).
319 .
320 .IP \fBnw_proto=\fIproto\fR
321 When \fBip\fR or \fBdl_type=0x0800\fR is specified, matches IP
322 protocol type \fIproto\fR, which is specified as a decimal number
323 between 0 and 255, inclusive (e.g. 1 to match ICMP packets or 6 to match
324 TCP packets).
325 .IP
326 When \fBipv6\fR or \fBdl_type=0x86dd\fR is specified, matches IPv6
327 header type \fIproto\fR, which is specified as a decimal number between
328 0 and 255, inclusive (e.g. 58 to match ICMPv6 packets or 6 to match
329 TCP).  The header type is the terminal header as described in the
330 \fBDESIGN\fR document.
331 .IP
332 When \fBarp\fR or \fBdl_type=0x0806\fR is specified, matches the lower
333 8 bits of the ARP opcode.  ARP opcodes greater than 255 are treated as
334 0.
335 .IP
336 When \fBdl_type\fR is wildcarded or set to a value other than 0x0800,
337 0x0806, or 0x86dd, the value of \fBnw_proto\fR is ignored (see \fBFlow
338 Syntax\fR above).
339 .
340 .IP \fBnw_tos=\fItos\fR
341 Matches IP ToS/DSCP or IPv6 traffic class field \fItos\fR, which is
342 specified as a decimal number between 0 and 255, inclusive.  Note that
343 the two lower reserved bits are ignored for matching purposes.
344 .IP
345 When \fBdl_type\fR is wildcarded or set to a value other than 0x0800,
346 0x0806, or 0x86dd, the value of \fBnw_tos\fR is ignored (see \fBFlow
347 Syntax\fR above).
348 .
349 .IP \fBtp_src=\fIport\fR
350 .IQ \fBtp_dst=\fIport\fR
351 When \fBdl_type\fR and \fBnw_proto\fR specify TCP or UDP, \fBtp_src\fR
352 and \fBtp_dst\fR match the UDP or TCP source or destination port
353 \fIport\fR, respectively. which is specified as a decimal number
354 between 0 and 65535, inclusive (e.g. 80 to match packets originating
355 from a HTTP server).
356 .IP
357 When \fBdl_type\fR and \fBnw_proto\fR take other values, the values of
358 these settings are ignored (see \fBFlow Syntax\fR above).
359 .
360 .IP \fBicmp_type=\fItype\fR
361 .IQ \fBicmp_code=\fIcode\fR
362 When \fBdl_type\fR and \fBnw_proto\fR specify ICMP or ICMPv6, \fItype\fR
363 matches the ICMP type and \fIcode\fR matches the ICMP code.  Each is
364 specified as a decimal number between 0 and 255, inclusive.
365 .IP
366 When \fBdl_type\fR and \fBnw_proto\fR take other values, the values of
367 these settings are ignored (see \fBFlow Syntax\fR above).
368 .
369 .PP
370 The following shorthand notations are also available:
371 .
372 .IP \fBip\fR
373 Same as \fBdl_type=0x0800\fR.
374 .
375 .IP \fBicmp\fR
376 Same as \fBdl_type=0x0800,nw_proto=1\fR.
377 .
378 .IP \fBtcp\fR
379 Same as \fBdl_type=0x0800,nw_proto=6\fR.
380 .
381 .IP \fBudp\fR
382 Same as \fBdl_type=0x0800,nw_proto=17\fR.
383 .
384 .IP \fBarp\fR
385 Same as \fBdl_type=0x0806\fR.
386 .
387 .PP
388 The following field assignments require support for the NXM (Nicira
389 Extended Match) extension to OpenFlow.  When one of these is specified,
390 \fBovs\-ofctl\fR will automatically attempt to negotiate use of this
391 extension.  If the switch does not support NXM, then \fBovs\-ofctl\fR
392 will report a fatal error.
393 .
394 .IP \fBarp_sha=\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fR
395 .IQ \fBarp_tha=\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fR
396 When \fBdl_type\fR specifies ARP, \fBarp_sha\fR and \fBarp_tha\fR match
397 the source and target hardware address, respectively.  An address is
398 specified as 6 pairs of hexadecimal digits delimited by colons.
399 .
400 .IP \fBipv6_src=\fIipv6\fR[\fB/\fInetmask\fR]
401 .IQ \fBipv6_dst=\fIipv6\fR[\fB/\fInetmask\fR]
402 When \fBdl_type\fR is 0x86dd (possibly via shorthand, e.g., \fBipv6\fR
403 or \fBtcp6\fR), matches IPv6 source (or destination) address \fIipv6\fR,
404 which may be specified as defined in RFC 2373.  The preferred format is 
405 \fIx\fB:\fIx\fB:\fIx\fB:\fIx\fB:\fIx\fB:\fIx\fB:\fIx\fB:\fIx\fR, where
406 \fIx\fR are the hexadecimal values of the eight 16-bit pieces of the
407 address.  A single instance of \fB::\fR may be used to indicate multiple
408 groups of 16-bits of zeros.  The optional \fInetmask\fR allows
409 restricting a match to an IPv6 address prefix.  A netmask is specified
410 as a CIDR block (e.g. \fB2001:db8:3c4d:1::/64\fR).
411 .
412 .IP \fBnd_target=\fIipv6\fR
413 When \fBdl_type\fR, \fBnw_proto\fR, and \fBicmp_type\fR specify
414 IPv6 Neighbor Discovery (ICMPv6 type 135 or 136), matches the target address
415 \fIipv6\fR.  \fIipv6\fR is in the same format described earlier for the
416 \fBipv6_src\fR and \fBipv6_dst\fR fields.
417 .
418 .IP \fBnd_sll=\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fR
419 When \fBdl_type\fR, \fBnw_proto\fR, and \fBicmp_type\fR specify IPv6
420 Neighbor Solicitation (ICMPv6 type 135), matches the source link\-layer
421 address option.  An address is specified as 6 pairs of hexadecimal
422 digits delimited by colons.
423 .
424 .IP \fBnd_tll=\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fR
425 When \fBdl_type\fR, \fBnw_proto\fR, and \fBicmp_type\fR specify IPv6
426 Neighbor Advertisement (ICMPv6 type 136), matches the target link\-layer
427 address option.  An address is specified as 6 pairs of hexadecimal
428 digits delimited by colons.
429 .
430 .IP \fBtun_id=\fItunnel-id\fR[\fB/\fImask\fR]
431 Matches tunnel identifier \fItunnel-id\fR.  Only packets that arrive
432 over a tunnel that carries a key (e.g. GRE with the RFC 2890 key
433 extension) will have a nonzero tunnel ID.  If \fImask\fR is omitted,
434 \fItunnel-id\fR is the exact tunnel ID to match; if \fImask\fR is
435 specified, then a 1-bit in \fImask\fR indicates that the corresponding
436 bit in \fItunnel-id\fR must match exactly, and a 0-bit wildcards that
437 bit.
438 .IP
439 In an attempt to be compatible with more switches, \fBovs\-ofctl\fR will
440 prefer to use the ``tunnel ID from cookie'' Nicira extension to NXM.
441 The use of this extension comes with three caveats: the top 32 bits of
442 the \fBcookie\fR (see below) are used for \fItunnel-id\fR and thus
443 unavailable for other use, specifying \fBtun_id\fR on \fBdump\-flows\fR
444 or \fBdump\-aggregate\fR has no effect, and \fImask\fR is not supported.
445 If any of these caveats apply, \fBovs-ofctl\fR will use NXM.
446 .
447 .IP "\fBreg\fIidx\fB=\fIvalue\fR[\fB/\fImask\fR]"
448 Matches \fIvalue\fR either exactly or with optional \fImask\fR in
449 register number \fIidx\fR.  The valid range of \fIidx\fR depends on
450 the switch.  \fIvalue\fR and \fImask\fR are 32-bit integers, by
451 default in decimal (use a \fB0x\fR prefix to specify hexadecimal).
452 Arbitrary \fImask\fR values are allowed: a 1-bit in \fImask\fR
453 indicates that the corresponding bit in \fIvalue\fR must match
454 exactly, and a 0-bit wildcards that bit.
455 .IP
456 When a packet enters an OpenFlow switch, all of the registers are set
457 to 0.  Only explicit Nicira extension actions change register values.
458 .
459 .PP
460 Defining IPv6 flows (those with \fBdl_type\fR equal to 0x86dd) requires
461 support for NXM.  The following shorthand notations are available for
462 IPv6-related flows:
463 .
464 .IP \fBipv6\fR
465 Same as \fBdl_type=0x86dd\fR.
466 .
467 .IP \fBtcp6\fR
468 Same as \fBdl_type=0x86dd,nw_proto=6\fR.
469 .
470 .IP \fBudp6\fR
471 Same as \fBdl_type=0x86dd,nw_proto=17\fR.
472 .
473 .IP \fBicmp6\fR
474 Same as \fBdl_type=0x86dd,nw_proto=58\fR.
475 .
476 .PP
477 The \fBadd\-flow\fR and \fBadd\-flows\fR commands require an additional
478 field, which must be the final field specified:
479 .
480 .IP \fBactions=\fR[\fItarget\fR][\fB,\fItarget\fR...]\fR
481 Specifies a comma-separated list of actions to take on a packet when the 
482 flow entry matches.  If no \fItarget\fR is specified, then packets
483 matching the flow are dropped.  The \fItarget\fR may be a decimal port 
484 number designating the physical port on which to output the packet, or one 
485 of the following keywords:
486 .
487 .RS
488 .IP \fBoutput\fR:\fIport\fR
489 Outputs the packet on the port specified by \fIport\fR.
490 .
491 .IP \fBenqueue\fR:\fIport\fB:\fIqueue\fR
492 Enqueues the packet on the specified \fIqueue\fR within port
493 \fIport\fR.  The number of supported queues depends on the switch;
494 some OpenFlow implementations do not support queuing at all.
495 .
496 .IP \fBnormal\fR
497 Subjects the packet to the device's normal L2/L3 processing.  (This
498 action is not implemented by all OpenFlow switches.)
499 .
500 .IP \fBflood\fR
501 Outputs the packet on all switch physical ports other than the port on
502 which it was received and any ports on which flooding is disabled
503 (typically, these would be ports disabled by the IEEE 802.1D spanning
504 tree protocol).
505 .
506 .IP \fBall\fR
507 Outputs the packet on all switch physical ports other than the port on
508 which it was received.
509 .
510 .IP \fBcontroller\fR:\fImax_len\fR
511 Sends the packet to the OpenFlow controller as a ``packet in''
512 message.  If \fImax_len\fR is a number, then it specifies the maximum
513 number of bytes that should be sent.  If \fImax_len\fR is \fBALL\fR or
514 omitted, then the entire packet is sent.
515 .
516 .IP \fBlocal\fR
517 Outputs the packet on the ``local port,'' which corresponds to the
518 \fBof\fIn\fR network device (see \fBCONTACTING THE CONTROLLER\fR in
519 \fBovs\-openflowd\fR(8) for information on the \fBof\fIn\fR network device).
520 .
521 .IP \fBdrop\fR
522 Discards the packet, so no further processing or forwarding takes place.
523 If a drop action is used, no other actions may be specified.
524 .
525 .IP \fBmod_vlan_vid\fR:\fIvlan_vid\fR
526 Modifies the VLAN id on a packet.  The VLAN tag is added or modified 
527 as necessary to match the value specified.  If the VLAN tag is added,
528 a priority of zero is used (see the \fBmod_vlan_pcp\fR action to set
529 this).
530 .
531 .IP \fBmod_vlan_pcp\fR:\fIvlan_pcp\fR
532 Modifies the VLAN priority on a packet.  The VLAN tag is added or modified 
533 as necessary to match the value specified.  Valid values are between 0
534 (lowest) and 7 (highest).  If the VLAN tag is added, a vid of zero is used 
535 (see the \fBmod_vlan_vid\fR action to set this).
536 .
537 .IP \fBstrip_vlan\fR
538 Strips the VLAN tag from a packet if it is present.
539 .
540 .IP \fBmod_dl_src\fB:\fImac\fR
541 Sets the source Ethernet address to \fImac\fR.
542 .
543 .IP \fBmod_dl_dst\fB:\fImac\fR
544 Sets the destination Ethernet address to \fImac\fR.
545 .
546 .IP \fBmod_nw_src\fB:\fIip\fR
547 Sets the IPv4 source address to \fIip\fR.
548 .
549 .IP \fBmod_nw_dst\fB:\fIip\fR
550 Sets the IPv4 destination address to \fIip\fR.
551 .
552 .IP \fBmod_tp_src\fB:\fIport\fR
553 Sets the TCP or UDP source port to \fIport\fR.
554 .
555 .IP \fBmod_tp_dst\fB:\fIport\fR
556 Sets the TCP or UDP destination port to \fIport\fR.
557 .
558 .IP \fBmod_nw_tos\fB:\fItos\fR
559 Sets the IP ToS/DSCP field to \fItos\fR.  Valid values are between 0 and
560 255, inclusive.  Note that the two lower reserved bits are never
561 modified.
562 .
563 .RE
564 .IP
565 The following actions are Nicira vendor extensions that, as of this writing, are
566 only known to be implemented by Open vSwitch:
567 .
568 .RS
569 .
570 .IP \fBresubmit\fB:\fIport\fR
571 Re-searches the OpenFlow flow table with the \fBin_port\fR field
572 replaced by \fIport\fR and executes the actions found, if any, in
573 addition to any other actions in this flow entry.  Recursive
574 \fBresubmit\fR actions are ignored.
575 .
576 .IP \fBset_tunnel\fB:\fIid\fR
577 .IQ \fBset_tunnel64\fB:\fIid\fR
578 If outputting to a port that encapsulates the packet in a tunnel and
579 supports an identifier (such as GRE), sets the identifier to \fBid\fR.
580 If the \fBset_tunnel\fR form is used and \fIid\fR fits in 32 bits,
581 then this uses an action extension that is supported by Open vSwitch
582 1.0 and later.  Otherwise, if \fIid\fR is a 64-bit value, it requires
583 Open vSwitch 1.1 or later.
584 .
585 .IP \fBdrop_spoofed_arp\fR
586 Stops processing further actions, if the packet being processed is an
587 Ethernet+IPv4 ARP packet for which the source Ethernet address inside
588 the ARP packet differs from the source Ethernet address in the
589 Ethernet header.
590 .IP
591 This action is deprecated in favor of defining flows using the
592 \fBarp_sha\fR match field described earlier and will likely be removed
593 in a future version of Open vSwitch.
594 .
595 .IP \fBset_queue\fB:\fIqueue\fR
596 Sets the queue that should be used to \fIqueue\fR when packets are
597 output.  The number of supported queues depends on the switch; some
598 OpenFlow implementations do not support queuing at all.
599 .
600 .IP \fBpop_queue\fR
601 Restores the queue to the value it was before any \fBset_queue\fR
602 actions were applied.
603 .
604 .IP \fBnote:\fR[\fIhh\fR]...
605 Does nothing at all.  Any number of bytes represented as hex digits
606 \fIhh\fR may be included.  Pairs of hex digits may be separated by
607 periods for readability.
608 .
609 .IP "\fBmove:\fIsrc\fB[\fIstart\fB..\fIend\fB]->\fIdst\fB[\fIstart\fB..\fIend\fB]\fR"
610 Copies the named bits from field \fIsrc\fR to field \fIdst\fR.
611 \fIsrc\fR and \fIdst\fR must be NXM field names as defined in
612 \fBnicira\-ext.h\fR, e.g. \fBNXM_OF_UDP_SRC\fR or \fBNXM_NX_REG0\fR.
613 Each \fIstart\fR and \fIend\fR pair, which are inclusive, must specify
614 the same number of bits and must fit within its respective field.
615 Shorthands for \fB[\fIstart\fB..\fIend\fB]\fR exist: use
616 \fB[\fIbit\fB]\fR to specify a single bit or \fB[]\fR to specify an
617 entire field.
618 .IP
619 Examples: \fBmove:NXM_NX_REG0[0..5]\->NXM_NX_REG1[26..31]\fR copies the
620 six bits numbered 0 through 5, inclusive, in register 0 into bits 26
621 through 31, inclusive;
622 \fBmove:NXM_NX_REG0[0..15]->NXM_OF_VLAN_TCI[]\fR copies the least
623 significant 16 bits of register 0 into the VLAN TCI field.
624 .
625 .IP "\fBload:\fIvalue\fB\->\fIdst\fB[\fIstart\fB..\fIend\fB]"
626 Writes \fIvalue\fR to bits \fIstart\fR through \fIend\fR, inclusive,
627 in field \fBdst\fR.
628 .IP
629 Example: \fBload:55\->NXM_NX_REG2[0..5]\fR loads value 55 (bit pattern
630 \fB110111\fR) into bits 0 through 5, inclusive, in register 2.
631 .
632 .IP "\fBmultipath(\fIfields\fB, \fIbasis\fB, \fIalgorithm\fB, \fIn_links\fB, \fIarg\fB, \fIdst\fB[\fIstart\fB..\fIend\fB])\fR"
633 Hashes \fIfields\fR using \fIbasis\fR as a universal hash parameter,
634 then the applies multipath link selection \fIalgorithm\fR (with
635 parameter \fIarg\fR) to choose one of \fIn_links\fR output links
636 numbered 0 through \fIn_links\fR minus 1, and stores the link into
637 \fIdst\fB[\fIstart\fB..\fIend\fB]\fR, which must be an NXM register as
638 described above.
639 .IP
640 Currently, \fIfields\fR must be either \fBeth_src\fR or
641 \fBsymmetric_l4\fR and \fIalgorithm\fR must be one of \fBmodulo_n\fR,
642 \fBhash_threshold\fR, \fBhrw\fR, and \fBiter_hash\fR.  Only
643 the \fBiter_hash\fR algorithm uses \fIarg\fR.
644 .IP
645 Refer to \fBnicira\-ext.h\fR for more details.
646 .RE
647 .
648 .IP
649 (The OpenFlow protocol supports other actions that \fBovs\-ofctl\fR does
650 not yet expose to the user.)
651 .
652 .PP
653 The \fBadd\-flow\fR, \fBadd\-flows\fR, and \fBmod\-flows\fR commands
654 support an additional optional field:
655 .
656 .IP \fBcookie=\fIvalue\fR
657 .
658 A cookie is an opaque identifier that can be associated with the flow.
659 \fIvalue\fR can be any 64-bit number and need not be unique among
660 flows.
661 .
662 .PP
663 The following additional field sets the priority for flows added by
664 the \fBadd\-flow\fR and \fBadd\-flows\fR commands.  For
665 \fBmod\-flows\fR and \fBdel\-flows\fR when \fB\-\-strict\fR is
666 specified, priority must match along with the rest of the flow
667 specification.  Other commands ignore the priority value.
668 .
669 .IP \fBpriority=\fIvalue\fR
670 The priority at which a wildcarded entry will match in comparison to
671 others.  \fIvalue\fR is a number between 0 and 65535, inclusive.  A higher 
672 \fIvalue\fR will match before a lower one.  An exact-match entry will always 
673 have priority over an entry containing wildcards, so it has an implicit 
674 priority value of 65535.  When adding a flow, if the field is not specified, 
675 the flow's priority will default to 32768.
676 .
677 .PP
678 The \fBadd\-flow\fR and \fBadd\-flows\fR commands support additional
679 optional fields:
680 .
681 .TP
682 \fBidle_timeout=\fIseconds\fR
683 Causes the flow to expire after the given number of seconds of
684 inactivity.  A value of 0 (the default) prevents a flow from expiring due to
685 inactivity.
686 .
687 .IP \fBhard_timeout=\fIseconds\fR
688 Causes the flow to expire after the given number of seconds,
689 regardless of activity.  A value of 0 (the default) gives the flow no
690 hard expiration deadline.
691 .
692 .PP
693 The \fBdump\-flows\fR, \fBdump\-aggregate\fR, \fBdel\-flow\fR 
694 and \fBdel\-flows\fR commands support one additional optional field:
695 .
696 .TP
697 \fBout_port=\fIport\fR
698 If set, a matching flow must include an output action to \fIport\fR.
699 .
700 .PP
701 The \fBdump\-flows\fR and \fBdump\-aggregate\fR commands support an
702 additional optional field:
703 .
704 .IP \fBtable=\fInumber\fR
705 If specified, limits the flows about which statistics are gathered to
706 those in the table with the given \fInumber\fR.  Tables are numbered
707 as shown by the \fBdump\-tables\fR command.
708 .
709 If this field is not specified, or if \fInumber\fR is given as
710 \fB255\fR, statistics are gathered about flows from all tables.
711 .
712 .SS "Table Entry Output"
713 .
714 The \fBdump\-tables\fR and \fBdump\-aggregate\fR commands print information 
715 about the entries in a datapath's tables.  Each line of output is a 
716 unique flow entry, which begins with some common information:
717 .
718 .IP \fBduration\fR
719 The number of seconds the entry has been in the table.
720 .
721 .IP \fBtable_id\fR
722 The table that contains the flow.  When a packet arrives, the switch 
723 begins searching for an entry at the lowest numbered table.  Tables are 
724 numbered as shown by the \fBdump\-tables\fR command.
725 .
726 .IP \fBpriority\fR
727 The priority of the entry in relation to other entries within the same
728 table.  A higher value will match before a lower one.
729 .
730 .IP \fBn_packets\fR
731 The number of packets that have matched the entry.
732 .
733 .IP \fBn_bytes\fR
734 The total number of bytes from packets that have matched the entry.
735 .
736 .PP
737 The rest of the line consists of a description of the flow entry as 
738 described in \fBFlow Syntax\fR, above.
739 .
740 .
741 .SH OPTIONS
742 .TP
743 \fB\-\-strict\fR
744 Uses strict matching when running flow modification commands.
745 .
746 .IP "\fB\-F \fIformat\fR"
747 .IQ "\fB\-\-flow\-format=\fIformat\fR"
748 \fBovs\-ofctl\fR supports the following flow formats, in order of
749 increasing capability:
750 .RS
751 .IP "\fBopenflow10\fR"
752 This is the standard OpenFlow 1.0 flow format.  It should be supported
753 by all OpenFlow switches.
754 .
755 .IP "\fBtun_id_from_cookie\fR"
756 This Nicira extension to OpenFlow adds minimal and limited support for
757 \fBtun_id\fR, but it does not support any other Nicira flow
758 extensions.  (This flow format is deprecated.)
759 .
760 .IP "\fBnxm\fR (Nicira Extended Match)"
761 This Nicira extension to OpenFlow is flexible and extensible.  It
762 supports all of the Nicira flow extensions, such as \fBtun_id\fR and
763 registers.
764 .RE
765 .IP
766 Usually, \fBovs\-ofctl\fR picks the correct format automatically.  For
767 commands that modify the flow table, \fBovs\-ofctl\fR by default uses
768 the most widely supported flow format that supports the flows being
769 added.  For commands that query the flow table, \fBovs\-ofctl\fR by
770 default queries and uses the most advanced format supported by the
771 switch.
772 .IP
773 This option, where \fIformat\fR is one of the formats listed in the
774 above table, overrides \fBovs\-ofctl\fR's default choice of flow
775 format.  If a command cannot work as requested using the requested
776 flow format, \fBovs\-ofctl\fR will report a fatal error.
777 .
778 .IP "\fB\-m\fR"
779 .IQ "\fB\-\-more\fR"
780 Increases the verbosity of OpenFlow messages printed and logged by
781 \fBovs\-ofctl\fR commands.  Specify this option more than once to
782 increase verbosity further.
783 .SS "Public Key Infrastructure Options"
784 .so lib/ssl.man
785 .so lib/vlog.man
786 .so lib/common.man
787 .
788 .SH EXAMPLES
789 .
790 The following examples assume that an OpenFlow switch on the local
791 host has been configured to listen for management connections on a
792 Unix domain socket named \fB@RUNDIR@/openflow.sock\fR, e.g. by
793 specifying \fB\-\-listen=punix:@RUNDIR@/openflow.sock\fR on the
794 \fBovs\-openflowd\fR(8) command line.
795 .
796 .TP
797 \fBovs\-ofctl dump\-tables unix:@RUNDIR@/openflow.sock\fR
798 Prints out the switch's table stats.  (This is more interesting after
799 some traffic has passed through.)
800 .
801 .TP
802 \fBovs\-ofctl dump\-flows unix:@RUNDIR@/openflow.sock\fR
803 Prints the flow entries in the switch.
804 .
805 .SH "SEE ALSO"
806 .
807 .BR ovs\-appctl (8),
808 .BR ovs\-controller (8),
809 .BR ovs\-vswitchd (8)