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