]> git.proxmox.com Git - mirror_ovs.git/blame - utilities/ovs-ofctl.8.in
ofproto-dpif: Implement PACKET_IN in userspace.
[mirror_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.
4989c59f 246.IP "\fBmonitor \fIswitch\fR [\fImiss-len\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
064af421
BP
259This command may be useful for debugging switch or controller
260implementations.
a9b4a41a 261.
064af421 262.SS "OpenFlow Switch and Controller Commands"
a9b4a41a 263.
064af421
BP
264The following commands, like those in the previous section, may be
265applied to OpenFlow switches, using any of the connection methods
266described in that section. Unlike those commands, these may also be
267applied to OpenFlow controllers.
a9b4a41a 268.
064af421
BP
269.TP
270\fBprobe \fItarget\fR
271Sends a single OpenFlow echo-request message to \fItarget\fR and waits
4e312e69 272for the response. With the \fB\-t\fR or \fB\-\-timeout\fR option, this
064af421
BP
273command can test whether an OpenFlow switch or controller is up and
274running.
a9b4a41a 275.
064af421
BP
276.TP
277\fBping \fItarget \fR[\fIn\fR]
278Sends a series of 10 echo request packets to \fItarget\fR and times
279each reply. The echo request packets consist of an OpenFlow header
280plus \fIn\fR bytes (default: 64) of randomly generated payload. This
281measures the latency of individual requests.
a9b4a41a 282.
064af421
BP
283.TP
284\fBbenchmark \fItarget n count\fR
285Sends \fIcount\fR echo request packets that each consist of an
286OpenFlow header plus \fIn\fR bytes of payload and waits for each
287response. Reports the total time required. This is a measure of the
288maximum bandwidth to \fItarget\fR for round-trips of \fIn\fR-byte
289messages.
a9b4a41a 290.
064af421 291.SS "Flow Syntax"
a9b4a41a 292.PP
064af421
BP
293Some \fBovs\-ofctl\fR commands accept an argument that describes a flow or
294flows. Such flow descriptions comprise a series
295\fIfield\fB=\fIvalue\fR assignments, separated by commas or white
296space. (Embedding spaces into a flow description normally requires
297quoting to prevent the shell from breaking the description into
298multiple arguments.)
a9b4a41a 299.PP
0b3f2725
BP
300Flow descriptions should be in \fBnormal form\fR. This means that a
301flow may only specify a value for an L3 field if it also specifies a
302particular L2 protocol, and that a flow may only specify an L4 field
303if it also specifies particular L2 and L3 protocol types. For
304example, if the L2 protocol type \fBdl_type\fR is wildcarded, then L3
305fields \fBnw_src\fR, \fBnw_dst\fR, and \fBnw_proto\fR must also be
306wildcarded. Similarly, if \fBdl_type\fR or \fBnw_proto\fR (the L3
307protocol type) is wildcarded, so must be \fBtp_dst\fR and
308\fBtp_src\fR, which are L4 fields. \fBovs\-ofctl\fR will warn about
309flows not in normal form.
310.PP
064af421
BP
311The following field assignments describe how a flow matches a packet.
312If any of these assignments is omitted from the flow syntax, the field
313is treated as a wildcard; thus, if all of them are omitted, the
314resulting flow matches all packets. The string \fB*\fR or \fBANY\fR
315may be specified to explicitly mark any of these fields as a wildcard.
316(\fB*\fR should be quoted to protect it from shell expansion.)
a9b4a41a 317.
064af421 318.IP \fBin_port=\fIport_no\fR
03a8a29e 319Matches OpenFlow port \fIport_no\fR. Ports are numbered as
064af421 320displayed by \fBovs\-ofctl show\fR.
03a8a29e
BP
321.IP
322(The \fBresubmit\fR action can search OpenFlow flow tables with
323arbitrary \fBin_port\fR values, so flows that match port numbers that
324do not exist from an OpenFlow perspective can still potentially be
325matched.)
a9b4a41a 326.
064af421 327.IP \fBdl_vlan=\fIvlan\fR
f30f26be
JP
328Matches IEEE 802.1q Virtual LAN tag \fIvlan\fR. Specify \fB0xffff\fR
329as \fIvlan\fR to match packets that are not tagged with a Virtual LAN;
064af421
BP
330otherwise, specify a number between 0 and 4095, inclusive, as the
33112-bit VLAN ID to match.
a9b4a41a 332.
959a2ecd
JP
333.IP \fBdl_vlan_pcp=\fIpriority\fR
334Matches IEEE 802.1q Priority Code Point (PCP) \fIpriority\fR, which is
335specified as a value between 0 and 7, inclusive. A higher value
336indicates a higher frame priority level.
a9b4a41a 337.
ed951f15
BP
338.IP \fBdl_src=\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fR
339.IQ \fBdl_dst=\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fR
340Matches an Ethernet source (or destination) address specified as 6
341pairs of hexadecimal digits delimited by colons
342(e.g. \fB00:0A:E4:25:6B:B0\fR).
343.
cb8ca532
BP
344.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
345Matches an Ethernet destination address specified as 6 pairs of
346hexadecimal digits delimited by colons (e.g. \fB00:0A:E4:25:6B:B0\fR),
347with a wildcard mask following the slash. Only
348the following masks are allowed:
349.RS
350.IP \fB01:00:00:00:00:00\fR
351Match only the multicast bit. Thus,
352\fBdl_dst=01:00:00:00:00:00/01:00:00:00:00:00\fR matches all multicast
353(including broadcast) Ethernet packets, and
354\fBdl_dst=00:00:00:00:00:00/01:00:00:00:00:00\fR matches all unicast
355Ethernet packets.
356.IP \fBfe:ff:ff:ff:ff:ff\fR
357Match all bits except the multicast bit. This is probably not useful.
358.IP \fBff:ff:ff:ff:ff:ff\fR
359Exact match (equivalent to omitting the mask).
360.IP \fB00:00:00:00:00:00\fR
361Wildcard all bits (equivalent to \fBdl_dst=*\fR.)
362.RE
363.
064af421
BP
364.IP \fBdl_type=\fIethertype\fR
365Matches Ethernet protocol type \fIethertype\fR, which is specified as an
366integer between 0 and 65535, inclusive, either in decimal or as a
367hexadecimal number prefixed by \fB0x\fR (e.g. \fB0x0806\fR to match ARP
368packets).
a9b4a41a 369.
064af421 370.IP \fBnw_src=\fIip\fR[\fB/\fInetmask\fR]
ed951f15
BP
371.IQ \fBnw_dst=\fIip\fR[\fB/\fInetmask\fR]
372When \fBdl_type\fR is 0x0800 (possibly via shorthand, e.g. \fBip\fR
373or \fBtcp\fR), matches IPv4 source (or destination) address \fIip\fR,
374which may be specified as an IP address or host name
375(e.g. \fB192.168.1.1\fR or \fBwww.example.com\fR). The optional
376\fInetmask\fR allows restricting a match to an IPv4 address prefix.
377The netmask may be specified as a dotted quad
378(e.g. \fB192.168.1.0/255.255.255.0\fR) or as a CIDR block
064af421 379(e.g. \fB192.168.1.0/24\fR).
ed951f15
BP
380.IP
381When \fBdl_type=0x0806\fR or \fBarp\fR is specified, matches the
382\fBar_spa\fR or \fBar_tpa\fR field, respectively, in ARP packets for
383IPv4 and Ethernet.
384.IP
385When \fBdl_type\fR is wildcarded or set to a value other than 0x0800
0b3f2725
BP
386or 0x0806, the values of \fBnw_src\fR and \fBnw_dst\fR are ignored
387(see \fBFlow Syntax\fR above).
a9b4a41a 388.
064af421 389.IP \fBnw_proto=\fIproto\fR
ed951f15
BP
390When \fBip\fR or \fBdl_type=0x0800\fR is specified, matches IP
391protocol type \fIproto\fR, which is specified as a decimal number
d31f1109
JP
392between 0 and 255, inclusive (e.g. 1 to match ICMP packets or 6 to match
393TCP packets).
394.IP
395When \fBipv6\fR or \fBdl_type=0x86dd\fR is specified, matches IPv6
396header type \fIproto\fR, which is specified as a decimal number between
3970 and 255, inclusive (e.g. 58 to match ICMPv6 packets or 6 to match
398TCP). The header type is the terminal header as described in the
399\fBDESIGN\fR document.
ed951f15
BP
400.IP
401When \fBarp\fR or \fBdl_type=0x0806\fR is specified, matches the lower
4028 bits of the ARP opcode. ARP opcodes greater than 255 are treated as
4030.
404.IP
d31f1109
JP
405When \fBdl_type\fR is wildcarded or set to a value other than 0x0800,
4060x0806, or 0x86dd, the value of \fBnw_proto\fR is ignored (see \fBFlow
0b3f2725 407Syntax\fR above).
a9b4a41a 408.
834377ea 409.IP \fBnw_tos=\fItos\fR
d31f1109
JP
410Matches IP ToS/DSCP or IPv6 traffic class field \fItos\fR, which is
411specified as a decimal number between 0 and 255, inclusive. Note that
412the two lower reserved bits are ignored for matching purposes.
ed951f15 413.IP
5c0ceb0a
JP
414When \fBdl_type\fR is wildcarded or set to a value other than 0x0800 or
4150x86dd, the value of \fBnw_tos\fR is ignored (see \fBFlow Syntax\fR
416above).
a9b4a41a 417.
530180fd
JP
418.IP \fBnw_ecn=\fIecn\fR
419Matches \fIecn\fR bits in IP ToS or IPv6 traffic class fields, which is
420specified as a decimal number between 0 and 3, inclusive.
421.IP
422When \fBdl_type\fR is wildcarded or set to a value other than 0x0800 or
4230x86dd, the value of \fBnw_ecn\fR is ignored (see \fBFlow Syntax\fR
424above).
425.
a61680c6
JP
426.IP \fBnw_ttl=\fIttl\fR
427Matches IP TTL or IPv6 hop limit value \fIttl\fR, which is
428specified as a decimal number between 0 and 255, inclusive.
429.IP
430When \fBdl_type\fR is wildcarded or set to a value other than 0x0800 or
4310x86dd, the value of \fBnw_ttl\fR is ignored (see \fBFlow Syntax\fR
432above).
433.IP
434.
064af421 435.IP \fBtp_src=\fIport\fR
ed951f15
BP
436.IQ \fBtp_dst=\fIport\fR
437When \fBdl_type\fR and \fBnw_proto\fR specify TCP or UDP, \fBtp_src\fR
438and \fBtp_dst\fR match the UDP or TCP source or destination port
439\fIport\fR, respectively. which is specified as a decimal number
440between 0 and 65535, inclusive (e.g. 80 to match packets originating
064af421 441from a HTTP server).
ed951f15
BP
442.IP
443When \fBdl_type\fR and \fBnw_proto\fR take other values, the values of
0b3f2725 444these settings are ignored (see \fBFlow Syntax\fR above).
a9b4a41a 445.
064af421 446.IP \fBicmp_type=\fItype\fR
ed951f15 447.IQ \fBicmp_code=\fIcode\fR
d31f1109
JP
448When \fBdl_type\fR and \fBnw_proto\fR specify ICMP or ICMPv6, \fItype\fR
449matches the ICMP type and \fIcode\fR matches the ICMP code. Each is
450specified as a decimal number between 0 and 255, inclusive.
ed951f15
BP
451.IP
452When \fBdl_type\fR and \fBnw_proto\fR take other values, the values of
0b3f2725 453these settings are ignored (see \fBFlow Syntax\fR above).
71e17a7a 454.
6c1491fb
BP
455.IP \fBtable=\fInumber\fR
456If specified, limits the flow manipulation and flow dump commands to
68c59d15 457only apply to the table with the given \fInumber\fR between 0 and 254.
6c1491fb 458.
68c59d15
BP
459Behavior varies if \fBtable\fR is not specified (equivalent to
460specifying 255 as \fInumber\fR). For flow table
6c1491fb
BP
461modification commands without \fB\-\-strict\fR, the switch will choose
462the table for these commands to operate on. For flow table
463modification commands with \fB\-\-strict\fR, the command will operate
464on any single matching flow in any table; it will do nothing if there
465are matches in more than one table. The \fBdump-flows\fR and
466\fBdump-aggregate\fR commands will gather statistics about flows from
467all tables.
468.IP
469When this field is specified in \fBadd-flow\fR, \fBadd-flows\fR,
470\fBmod-flows\fR and \fBdel-flows\fR commands, it activates a Nicira
471extension to OpenFlow, which as of this writing is only known to be
472implemented by Open vSwitch.
473.
71e17a7a 474.PP
d31f1109
JP
475The following shorthand notations are also available:
476.
477.IP \fBip\fR
478Same as \fBdl_type=0x0800\fR.
479.
480.IP \fBicmp\fR
481Same as \fBdl_type=0x0800,nw_proto=1\fR.
482.
483.IP \fBtcp\fR
484Same as \fBdl_type=0x0800,nw_proto=6\fR.
485.
486.IP \fBudp\fR
487Same as \fBdl_type=0x0800,nw_proto=17\fR.
488.
489.IP \fBarp\fR
490Same as \fBdl_type=0x0806\fR.
491.
492.PP
71e17a7a
JP
493The following field assignments require support for the NXM (Nicira
494Extended Match) extension to OpenFlow. When one of these is specified,
495\fBovs\-ofctl\fR will automatically attempt to negotiate use of this
496extension. If the switch does not support NXM, then \fBovs\-ofctl\fR
497will report a fatal error.
498.
33d8c6b4
BP
499.IP \fBvlan_tci=\fItci\fR[\fB/\fImask\fR]
500Matches modified VLAN TCI \fItci\fR. If \fImask\fR is omitted,
501\fItci\fR is the exact VLAN TCI to match; if \fImask\fR is specified,
a8600e1a 502then a 1-bit in \fImask\fR indicates that the corresponding bit in
33d8c6b4
BP
503\fItci\fR must match exactly, and a 0-bit wildcards that bit. Both
504\fItci\fR and \fImask\fR are 16-bit values that are decimal by
505default; use a \fB0x\fR prefix to specify them in hexadecimal.
506.
507.IP
508The value that \fBvlan_tci\fR matches against is 0 for a packet that
509has no 802.1Q header. Otherwise, it is the TCI value from the 802.1Q
510header with the CFI bit (with value \fB0x1000\fR) forced to 1.
511.IP
512Examples:
513.RS
514.IP \fBvlan_tci=0\fR
515Match only packets without an 802.1Q header.
516.IP \fBvlan_tci=0xf123\fR
517Match packets tagged with priority 7 in VLAN 0x123.
518.IP \fBvlan_tci=0x1123/0x1fff\fR
519Match packets tagged with VLAN 0x123 (and any priority).
520.IP \fBvlan_tci=0x5000/0xf000\fR
521Match packets tagged with priority 2 (in any VLAN).
522.IP \fBvlan_tci=0/0xfff\fR
523Match packets with no 802.1Q header or tagged with VLAN 0 (and any
524priority).
525.IP \fBvlan_tci=0x5000/0xe000\fR
526Match packets with no 802.1Q header or tagged with priority 2 (in any
527VLAN).
528.IP \fBvlan_tci=0/0xefff\fR
529Match packets with no 802.1Q header or tagged with VLAN 0 and priority
5300.
531.RE
532.IP
533Some of these matching possibilities can also be achieved with
534\fBdl_vlan\fR and \fBdl_vlan_pcp\fR.
535.
7257b535
BP
536.IP \fBip_frag=\fIfrag_type\fR
537When \fBdl_type\fR specifies IP or IPv6, \fIfrag_type\fR
538specifies what kind of IP fragments or non-fragments to match. The
539following values of \fIfrag_type\fR are supported:
540.RS
541.IP "\fBno\fR"
542Matches only non-fragmented packets.
543.IP "\fByes\fR"
544Matches all fragments.
545.IP "\fBfirst\fR"
546Matches only fragments with offset 0.
547.IP "\fBlater\fR"
548Matches only fragments with nonzero offset.
549.IP "\fBnot_later\fR"
550Matches non-fragmented packets and fragments with zero offset.
551.RE
552.IP
553The \fBip_frag\fR match type is likely to be most useful in
554\fBnx\-match\fR mode. See the description of the \fBset\-frags\fR
555command, above, for more details.
556.
bad68a99
JP
557.IP \fBarp_sha=\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fR
558.IQ \fBarp_tha=\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fR
559When \fBdl_type\fR specifies ARP, \fBarp_sha\fR and \fBarp_tha\fR match
560the source and target hardware address, respectively. An address is
561specified as 6 pairs of hexadecimal digits delimited by colons.
562.
d31f1109
JP
563.IP \fBipv6_src=\fIipv6\fR[\fB/\fInetmask\fR]
564.IQ \fBipv6_dst=\fIipv6\fR[\fB/\fInetmask\fR]
565When \fBdl_type\fR is 0x86dd (possibly via shorthand, e.g., \fBipv6\fR
566or \fBtcp6\fR), matches IPv6 source (or destination) address \fIipv6\fR,
567which may be specified as defined in RFC 2373. The preferred format is
568\fIx\fB:\fIx\fB:\fIx\fB:\fIx\fB:\fIx\fB:\fIx\fB:\fIx\fB:\fIx\fR, where
569\fIx\fR are the hexadecimal values of the eight 16-bit pieces of the
570address. A single instance of \fB::\fR may be used to indicate multiple
571groups of 16-bits of zeros. The optional \fInetmask\fR allows
572restricting a match to an IPv6 address prefix. A netmask is specified
573as a CIDR block (e.g. \fB2001:db8:3c4d:1::/64\fR).
574.
fa8223b7
JP
575.IP \fBipv6_label=\fIlabel\fR
576When \fBdl_type\fR is 0x86dd (possibly via shorthand, e.g., \fBipv6\fR
577or \fBtcp6\fR), matches IPv6 flow label \fIlabel\fR.
578.
685a51a5
JP
579.IP \fBnd_target=\fIipv6\fR
580When \fBdl_type\fR, \fBnw_proto\fR, and \fBicmp_type\fR specify
581IPv6 Neighbor Discovery (ICMPv6 type 135 or 136), matches the target address
582\fIipv6\fR. \fIipv6\fR is in the same format described earlier for the
583\fBipv6_src\fR and \fBipv6_dst\fR fields.
584.
585.IP \fBnd_sll=\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fR
586When \fBdl_type\fR, \fBnw_proto\fR, and \fBicmp_type\fR specify IPv6
587Neighbor Solicitation (ICMPv6 type 135), matches the source link\-layer
588address option. An address is specified as 6 pairs of hexadecimal
589digits delimited by colons.
590.
591.IP \fBnd_tll=\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fB:\fIxx\fR
592When \fBdl_type\fR, \fBnw_proto\fR, and \fBicmp_type\fR specify IPv6
593Neighbor Advertisement (ICMPv6 type 136), matches the target link\-layer
594address option. An address is specified as 6 pairs of hexadecimal
595digits delimited by colons.
596.
8368c090
BP
597.IP \fBtun_id=\fItunnel-id\fR[\fB/\fImask\fR]
598Matches tunnel identifier \fItunnel-id\fR. Only packets that arrive
4c5df7f7 599over a tunnel that carries a key (e.g. GRE with the RFC 2890 key
8368c090 600extension) will have a nonzero tunnel ID. If \fImask\fR is omitted,
71e17a7a 601\fItunnel-id\fR is the exact tunnel ID to match; if \fImask\fR is
8368c090
BP
602specified, then a 1-bit in \fImask\fR indicates that the corresponding
603bit in \fItunnel-id\fR must match exactly, and a 0-bit wildcards that
604bit.
4c5df7f7 605.IP
71e17a7a
JP
606In an attempt to be compatible with more switches, \fBovs\-ofctl\fR will
607prefer to use the ``tunnel ID from cookie'' Nicira extension to NXM.
608The use of this extension comes with three caveats: the top 32 bits of
609the \fBcookie\fR (see below) are used for \fItunnel-id\fR and thus
610unavailable for other use, specifying \fBtun_id\fR on \fBdump\-flows\fR
611or \fBdump\-aggregate\fR has no effect, and \fImask\fR is not supported.
612If any of these caveats apply, \fBovs-ofctl\fR will use NXM.
613.
00b1c62f
BP
614.IP "\fBreg\fIidx\fB=\fIvalue\fR[\fB/\fImask\fR]"
615Matches \fIvalue\fR either exactly or with optional \fImask\fR in
616register number \fIidx\fR. The valid range of \fIidx\fR depends on
617the switch. \fIvalue\fR and \fImask\fR are 32-bit integers, by
618default in decimal (use a \fB0x\fR prefix to specify hexadecimal).
619Arbitrary \fImask\fR values are allowed: a 1-bit in \fImask\fR
620indicates that the corresponding bit in \fIvalue\fR must match
621exactly, and a 0-bit wildcards that bit.
622.IP
623When a packet enters an OpenFlow switch, all of the registers are set
624to 0. Only explicit Nicira extension actions change register values.
a9b4a41a 625.
064af421 626.PP
d31f1109
JP
627Defining IPv6 flows (those with \fBdl_type\fR equal to 0x86dd) requires
628support for NXM. The following shorthand notations are available for
629IPv6-related flows:
a9b4a41a 630.
d31f1109
JP
631.IP \fBipv6\fR
632Same as \fBdl_type=0x86dd\fR.
a9b4a41a 633.
d31f1109
JP
634.IP \fBtcp6\fR
635Same as \fBdl_type=0x86dd,nw_proto=6\fR.
a9b4a41a 636.
d31f1109
JP
637.IP \fBudp6\fR
638Same as \fBdl_type=0x86dd,nw_proto=17\fR.
a9b4a41a 639.
d31f1109
JP
640.IP \fBicmp6\fR
641Same as \fBdl_type=0x86dd,nw_proto=58\fR.
a9b4a41a 642.
064af421 643.PP
2c6d8411
BP
644Finally, field assignments to \fBduration\fR, \fBn_packets\fR, or
645\fBn_bytes\fR are ignored to allow output from the \fBdump\-flows\fR
646command to be used as input for other commands that parse flows.
647.
648.PP
c821124b
BP
649The \fBadd\-flow\fR, \fBadd\-flows\fR, and \fBmod\-flows\fR commands
650require an additional field, which must be the final field specified:
a9b4a41a 651.
064af421
BP
652.IP \fBactions=\fR[\fItarget\fR][\fB,\fItarget\fR...]\fR
653Specifies a comma-separated list of actions to take on a packet when the
654flow entry matches. If no \fItarget\fR is specified, then packets
655matching the flow are dropped. The \fItarget\fR may be a decimal port
656number designating the physical port on which to output the packet, or one
657of the following keywords:
a9b4a41a 658.
064af421
BP
659.RS
660.IP \fBoutput\fR:\fIport\fR
f694937d
EJ
661.IQ \fBoutput\fR:\fIsrc\fB[\fIstart\fB..\fIend\fB]
662Outputs the packet. If \fIport\fR is an OpenFlow port number, outputs directly
663to it. Otherwise, outputs to the OpenFlow port number read from \fIsrc\fR
664which must be an NXM field as described above. Outputting to an NXM field is
665an OpenFlow extension which is not supported by standard OpenFlow switches.
666.IP
667Example: \fBoutput:NXM_NX_REG0[16..31]\fR outputs to the OpenFlow port number
668written in the upper half of register 0.
a9b4a41a 669.
5682f723
BP
670.IP \fBenqueue\fR:\fIport\fB:\fIqueue\fR
671Enqueues the packet on the specified \fIqueue\fR within port
672\fIport\fR. The number of supported queues depends on the switch;
673some OpenFlow implementations do not support queuing at all.
674.
064af421
BP
675.IP \fBnormal\fR
676Subjects the packet to the device's normal L2/L3 processing. (This
677action is not implemented by all OpenFlow switches.)
a9b4a41a 678.
064af421
BP
679.IP \fBflood\fR
680Outputs the packet on all switch physical ports other than the port on
681which it was received and any ports on which flooding is disabled
682(typically, these would be ports disabled by the IEEE 802.1D spanning
683tree protocol).
a9b4a41a 684.
064af421
BP
685.IP \fBall\fR
686Outputs the packet on all switch physical ports other than the port on
687which it was received.
a9b4a41a 688.
064af421
BP
689.IP \fBcontroller\fR:\fImax_len\fR
690Sends the packet to the OpenFlow controller as a ``packet in''
691message. If \fImax_len\fR is a number, then it specifies the maximum
692number of bytes that should be sent. If \fImax_len\fR is \fBALL\fR or
693omitted, then the entire packet is sent.
a9b4a41a 694.
064af421
BP
695.IP \fBlocal\fR
696Outputs the packet on the ``local port,'' which corresponds to the
045b2e5c 697network device that has the same name as the bridge.
a9b4a41a 698.
64c1e8af
JP
699.IP \fBin_port\fR
700Outputs the packet on the port from which it was received.
701.
064af421
BP
702.IP \fBdrop\fR
703Discards the packet, so no further processing or forwarding takes place.
704If a drop action is used, no other actions may be specified.
a9b4a41a 705.
064af421
BP
706.IP \fBmod_vlan_vid\fR:\fIvlan_vid\fR
707Modifies the VLAN id on a packet. The VLAN tag is added or modified
708as necessary to match the value specified. If the VLAN tag is added,
709a priority of zero is used (see the \fBmod_vlan_pcp\fR action to set
710this).
a9b4a41a 711.
064af421
BP
712.IP \fBmod_vlan_pcp\fR:\fIvlan_pcp\fR
713Modifies the VLAN priority on a packet. The VLAN tag is added or modified
714as necessary to match the value specified. Valid values are between 0
715(lowest) and 7 (highest). If the VLAN tag is added, a vid of zero is used
716(see the \fBmod_vlan_vid\fR action to set this).
a9b4a41a 717.
064af421
BP
718.IP \fBstrip_vlan\fR
719Strips the VLAN tag from a packet if it is present.
a9b4a41a 720.
064af421
BP
721.IP \fBmod_dl_src\fB:\fImac\fR
722Sets the source Ethernet address to \fImac\fR.
a9b4a41a 723.
064af421
BP
724.IP \fBmod_dl_dst\fB:\fImac\fR
725Sets the destination Ethernet address to \fImac\fR.
a9b4a41a 726.
e423eca6
JP
727.IP \fBmod_nw_src\fB:\fIip\fR
728Sets the IPv4 source address to \fIip\fR.
a9b4a41a 729.
e423eca6
JP
730.IP \fBmod_nw_dst\fB:\fIip\fR
731Sets the IPv4 destination address to \fIip\fR.
a9b4a41a 732.
e423eca6
JP
733.IP \fBmod_tp_src\fB:\fIport\fR
734Sets the TCP or UDP source port to \fIport\fR.
a9b4a41a 735.
e423eca6
JP
736.IP \fBmod_tp_dst\fB:\fIport\fR
737Sets the TCP or UDP destination port to \fIport\fR.
a9b4a41a 738.
959a2ecd
JP
739.IP \fBmod_nw_tos\fB:\fItos\fR
740Sets the IP ToS/DSCP field to \fItos\fR. Valid values are between 0 and
741255, inclusive. Note that the two lower reserved bits are never
742modified.
a9b4a41a 743.
659586ef
JG
744.RE
745.IP
746The following actions are Nicira vendor extensions that, as of this writing, are
747only known to be implemented by Open vSwitch:
748.
749.RS
750.
3a2fe1f3 751.IP \fBresubmit\fB:\fIport\fR
29901626
BP
752.IQ \fBresubmit\fB(\fR[\fIport\fR]\fB,\fR[\fItable\fR]\fB)
753Re-searches this OpenFlow flow table (or the table whose number is
754specified by \fItable\fR) with the \fBin_port\fR field replaced by
755\fIport\fR (if \fIport\fR is specified) and executes the actions
756found, if any, in addition to any other actions in this flow entry.
757.IP
758Recursive \fBresubmit\fR actions are obeyed up to an
759implementation-defined maximum depth. Open vSwitch 1.0.1 and earlier
760did not support recursion; Open vSwitch before 1.2.90 did not support
761\fItable\fR.
659586ef
JG
762.
763.IP \fBset_tunnel\fB:\fIid\fR
b9298d3f
BP
764.IQ \fBset_tunnel64\fB:\fIid\fR
765If outputting to a port that encapsulates the packet in a tunnel and
5a6861aa 766supports an identifier (such as GRE), sets the identifier to \fIid\fR.
b9298d3f
BP
767If the \fBset_tunnel\fR form is used and \fIid\fR fits in 32 bits,
768then this uses an action extension that is supported by Open vSwitch
7691.0 and later. Otherwise, if \fIid\fR is a 64-bit value, it requires
770Open vSwitch 1.1 or later.
3a2fe1f3 771.
eedc0097
JP
772.IP \fBset_queue\fB:\fIqueue\fR
773Sets the queue that should be used to \fIqueue\fR when packets are
774output. The number of supported queues depends on the switch; some
775OpenFlow implementations do not support queuing at all.
776.
777.IP \fBpop_queue\fR
778Restores the queue to the value it was before any \fBset_queue\fR
779actions were applied.
780.
96fc46e8
BP
781.IP \fBnote:\fR[\fIhh\fR]...
782Does nothing at all. Any number of bytes represented as hex digits
783\fIhh\fR may be included. Pairs of hex digits may be separated by
784periods for readability.
f393f81e 785.
5a6861aa 786.IP "\fBmove:\fIsrc\fB[\fIstart\fB..\fIend\fB]\->\fIdst\fB[\fIstart\fB..\fIend\fB]\fR"
f393f81e
BP
787Copies the named bits from field \fIsrc\fR to field \fIdst\fR.
788\fIsrc\fR and \fIdst\fR must be NXM field names as defined in
789\fBnicira\-ext.h\fR, e.g. \fBNXM_OF_UDP_SRC\fR or \fBNXM_NX_REG0\fR.
790Each \fIstart\fR and \fIend\fR pair, which are inclusive, must specify
791the same number of bits and must fit within its respective field.
792Shorthands for \fB[\fIstart\fB..\fIend\fB]\fR exist: use
793\fB[\fIbit\fB]\fR to specify a single bit or \fB[]\fR to specify an
794entire field.
795.IP
796Examples: \fBmove:NXM_NX_REG0[0..5]\->NXM_NX_REG1[26..31]\fR copies the
797six bits numbered 0 through 5, inclusive, in register 0 into bits 26
798through 31, inclusive;
5a6861aa 799\fBmove:NXM_NX_REG0[0..15]\->NXM_OF_VLAN_TCI[]\fR copies the least
f393f81e
BP
800significant 16 bits of register 0 into the VLAN TCI field.
801.
802.IP "\fBload:\fIvalue\fB\->\fIdst\fB[\fIstart\fB..\fIend\fB]"
803Writes \fIvalue\fR to bits \fIstart\fR through \fIend\fR, inclusive,
5a6861aa 804in field \fIdst\fR.
f393f81e
BP
805.IP
806Example: \fBload:55\->NXM_NX_REG2[0..5]\fR loads value 55 (bit pattern
807\fB110111\fR) into bits 0 through 5, inclusive, in register 2.
53ddd40a
BP
808.
809.IP "\fBmultipath(\fIfields\fB, \fIbasis\fB, \fIalgorithm\fB, \fIn_links\fB, \fIarg\fB, \fIdst\fB[\fIstart\fB..\fIend\fB])\fR"
810Hashes \fIfields\fR using \fIbasis\fR as a universal hash parameter,
811then the applies multipath link selection \fIalgorithm\fR (with
812parameter \fIarg\fR) to choose one of \fIn_links\fR output links
813numbered 0 through \fIn_links\fR minus 1, and stores the link into
43edca57 814\fIdst\fB[\fIstart\fB..\fIend\fB]\fR, which must be an NXM field as
53ddd40a
BP
815described above.
816.IP
817Currently, \fIfields\fR must be either \fBeth_src\fR or
818\fBsymmetric_l4\fR and \fIalgorithm\fR must be one of \fBmodulo_n\fR,
819\fBhash_threshold\fR, \fBhrw\fR, and \fBiter_hash\fR. Only
820the \fBiter_hash\fR algorithm uses \fIarg\fR.
821.IP
822Refer to \fBnicira\-ext.h\fR for more details.
3b6a2571
EJ
823.
824.IP "\fBautopath(\fIid\fB, \fIdst\fB[\fIstart\fB..\fIend\fB])\fR"
825Given \fIid\fR, chooses an OpenFlow port and populates it in
43edca57 826\fIdst\fB[\fIstart\fB..\fIend\fB]\fR, which must be an NXM field as
3b6a2571
EJ
827described above.
828.IP
829Currently, \fIid\fR should be the OpenFlow port number of an interface on the
830bridge. If it isn't then \fIdst\fB[\fIstart\fB..\fIend\fB]\fR will be
831populated with the OpenFlow port "none". If \fIid\fR is a member of a bond,
832the normal bond selection logic will be used to choose the destination port.
833Otherwise, the register will be populated with \fIid\fR itself.
834.IP
835Refer to \fBnicira\-ext.h\fR for more details.
daff3353
EJ
836.
837.IP "\fBbundle(\fIfields\fB, \fIbasis\fB, \fIalgorithm\fB, \fIslave_type\fB, slaves:[\fIs1\fB, \fIs2\fB, ...])\fR"
838Hashes \fIfields\fR using \fIbasis\fR as a universal hash parameter, then
839applies the bundle link selection \fIalgorithm\fR to choose one of the listed
840slaves represented as \fIslave_type\fR. Currently the only supported
841\fIslave_type\fR is \fBofport\fR. Thus, each \fIs1\fR through \fIsN\fR should
842be an OpenFlow port number. Outputs to the selected slave.
843.IP
844Currently, \fIfields\fR must be either \fBeth_src\fR or \fBsymmetric_l4\fR and
845\fIalgorithm\fR must be one of \fBhrw\fR and \fBactive_backup\fR.
846.IP
847Example: \fBbundle(eth_src,0,hrw,ofport,slaves:4,8)\fR uses an Ethernet source
848hash with basis 0, to select between OpenFlow ports 4 and 8 using the Highest
849Random Weight algorithm.
850.IP
851Refer to \fBnicira\-ext.h\fR for more details.
a368bb53
EJ
852.
853.IP "\fBbundle_load(\fIfields\fB, \fIbasis\fB, \fIalgorithm\fB, \fIslave_type\fB, \fIdst\fB[\fIstart\fB..\fIend\fB], slaves:[\fIs1\fB, \fIs2\fB, ...])\fR"
854Has the same behavior as the \fBbundle\fR action, with one exception. Instead
855of outputting to the selected slave, it writes its selection to
856\fIdst\fB[\fIstart\fB..\fIend\fB]\fR, which must be an NXM field as described
857above.
858.IP
2638c6dc
BP
859Example: \fBbundle_load(eth_src, 0, hrw, ofport, NXM_NX_REG0[],
860slaves:4, 8)\fR uses an Ethernet source hash with basis 0, to select
861between OpenFlow ports 4 and 8 using the Highest Random Weight
862algorithm, and writes the selection to \fBNXM_NX_REG0[]\fR.
a368bb53
EJ
863.IP
864Refer to \fBnicira\-ext.h\fR for more details.
75a75043
BP
865.
866.IP "\fBlearn(\fIargument\fR[\fB,\fIargument\fR]...\fB)\fR"
867This action adds or modifies a flow in an OpenFlow table, similar to
868\fBovs\-ofctl \-\-strict mod\-flows\fR. The arguments specify the
869flow's match fields, actions, and other properties, as follows. At
870least one match criterion and one action argument should ordinarily be
871specified.
872.RS
873.IP \fBidle_timeout=\fIseconds\fR
874.IQ \fBhard_timeout=\fIseconds\fR
875.IQ \fBpriority=\fIvalue\fR
876These key-value pairs have the same meaning as in the usual
877\fBovs\-ofctl\fR flow syntax.
878.
879.IP \fBtable=\fInumber\fR
880The table in which the new flow should be inserted. Specify a decimal
881number between 0 and 254. The default, if \fBtable\fR is unspecified,
882is table 1.
883.
884.IP \fIfield\fB=\fIvalue\fR
885.IQ \fIfield\fB[\fIstart\fB..\fIend\fB]=\fIsrc\fB[\fIstart\fB..\fIend\fB]\fR
886.IQ \fIfield\fB[\fIstart\fB..\fIend\fB]\fR
887Adds a match criterion to the new flow.
888.IP
889The first form specifies that \fIfield\fR must match the literal
890\fIvalue\fR, e.g. \fBdl_type=0x0800\fR. All of the fields and values
891for \fBovs\-ofctl\fR flow syntax are available with their usual
892meanings.
893.IP
894The second form specifies that \fIfield\fB[\fIstart\fB..\fIend\fB]\fR
895in the new flow must match \fIsrc\fB[\fIstart\fB..\fIend\fB]\fR taken
896from the flow currently being processed.
897.IP
898The third form is a shorthand for the second form. It specifies that
899\fIfield\fB[\fIstart\fB..\fIend\fB]\fR in the new flow must match
900\fIfield\fB[\fIstart\fB..\fIend\fB]\fR taken from the flow currently
901being processed.
902.
903.IP \fBload:\fIvalue\fB\->\fIdst\fB[\fIstart\fB..\fIend\fB]
904.IQ \fBload:\fIsrc\fB[\fIstart\fB..\fIend\fB]\->\fIdst\fB[\fIstart\fB..\fIend\fB]
905.
906Adds a \fBload\fR action to the new flow.
907.IP
908The first form loads the literal \fIvalue\fR into bits \fIstart\fR
909through \fIend\fR, inclusive, in field \fIdst\fR. Its syntax is the
910same as the \fBload\fR action described earlier in this section.
911.IP
912The second form loads \fIsrc\fB[\fIstart\fB..\fIend\fB]\fR, a value
913from the flow currently being processed, into bits \fIstart\fR
914through \fIend\fR, inclusive, in field \fIdst\fR.
915.
916.IP \fBoutput:\fIfield\fB[\fIstart\fB..\fIend\fB]\fR
917Add an \fBoutput\fR action to the new flow's actions, that outputs to
918the OpenFlow port taken from \fIfield\fB[\fIstart\fB..\fIend\fB]\fR,
919which must be an NXM field as described above.
920.RE
921.IP
922For best performance, segregate learned flows into a table (using
923\fBtable=\fInumber\fR) that is not used for any other flows except
924possibly for a lowest-priority ``catch-all'' flow, that is, a flow
925with no match criteria. (This is why the default \fBtable\fR is 1, to
926keep the learned flows separate from the primary flow table 0.)
064af421 927.RE
a9b4a41a 928.
848e8809
EJ
929.IP "\fBexit\fR"
930This action causes Open vSwitch to immediately halt execution of further
931actions. Those actions which have already been executed are unaffected. Any
932further actions, including those which may be in other tables, or different
933levels of the \fBresubmit\fR call stack, are ignored.
934.
064af421 935.PP
e729e793
JP
936An opaque identifier called a cookie can be used as a handle to identify
937a set of flows:
938.
939.IP \fBcookie=\fIvalue\fR[\fB/\fImask\fR]
940.
941A cookie can be associated with a flow using the \fBadd-flow\fR and
942\fBadd-flows\fR commands. \fIvalue\fR can be any 64-bit number and need
943not be unique among flows. If this field is omitted, a default cookie
944value of 0 is used.
945.IP
946When using NXM, the cookie can be used as a handle for querying,
947modifying, and deleting flows. In addition to \fIvalue\fR, an optional
948\fImask\fR may be supplied for the \fBdel-flows\fR, \fBmod-flows\fR,
949\fBdump-flows\fR, and \fBdump-aggregate\fR commands to limit matching
950cookies. A 1-bit in \fImask\fR indicates that the corresponding bit in
951\fIcookie\fR must match exactly, and a 0-bit wildcards that bit.
8cce2125
JP
952.
953.PP
4b6b46ce
BP
954The following additional field sets the priority for flows added by
955the \fBadd\-flow\fR and \fBadd\-flows\fR commands. For
956\fBmod\-flows\fR and \fBdel\-flows\fR when \fB\-\-strict\fR is
957specified, priority must match along with the rest of the flow
c821124b 958specification. Other commands do not allow priority to be specified.
a9b4a41a 959.
064af421
BP
960.IP \fBpriority=\fIvalue\fR
961The priority at which a wildcarded entry will match in comparison to
962others. \fIvalue\fR is a number between 0 and 65535, inclusive. A higher
963\fIvalue\fR will match before a lower one. An exact-match entry will always
964have priority over an entry containing wildcards, so it has an implicit
965priority value of 65535. When adding a flow, if the field is not specified,
966the flow's priority will default to 32768.
a9b4a41a 967.
064af421 968.PP
4e312e69 969The \fBadd\-flow\fR and \fBadd\-flows\fR commands support additional
064af421 970optional fields:
a9b4a41a 971.
064af421
BP
972.TP
973\fBidle_timeout=\fIseconds\fR
974Causes the flow to expire after the given number of seconds of
a1545337
BP
975inactivity. A value of 0 (the default) prevents a flow from expiring due to
976inactivity.
a9b4a41a 977.
064af421
BP
978.IP \fBhard_timeout=\fIseconds\fR
979Causes the flow to expire after the given number of seconds,
980regardless of activity. A value of 0 (the default) gives the flow no
981hard expiration deadline.
a9b4a41a 982.
064af421 983.PP
4e312e69
BP
984The \fBdump\-flows\fR, \fBdump\-aggregate\fR, \fBdel\-flow\fR
985and \fBdel\-flows\fR commands support one additional optional field:
a9b4a41a 986.
064af421
BP
987.TP
988\fBout_port=\fIport\fR
989If set, a matching flow must include an output action to \fIport\fR.
a9b4a41a 990.
064af421 991.SS "Table Entry Output"
a9b4a41a 992.
4e312e69 993The \fBdump\-tables\fR and \fBdump\-aggregate\fR commands print information
064af421
BP
994about the entries in a datapath's tables. Each line of output is a
995unique flow entry, which begins with some common information:
a9b4a41a 996.
064af421
BP
997.IP \fBduration\fR
998The number of seconds the entry has been in the table.
a9b4a41a 999.
064af421
BP
1000.IP \fBtable_id\fR
1001The table that contains the flow. When a packet arrives, the switch
1002begins searching for an entry at the lowest numbered table. Tables are
4e312e69 1003numbered as shown by the \fBdump\-tables\fR command.
a9b4a41a 1004.
064af421
BP
1005.IP \fBpriority\fR
1006The priority of the entry in relation to other entries within the same
1007table. A higher value will match before a lower one.
a9b4a41a 1008.
064af421
BP
1009.IP \fBn_packets\fR
1010The number of packets that have matched the entry.
a9b4a41a 1011.
064af421
BP
1012.IP \fBn_bytes\fR
1013The total number of bytes from packets that have matched the entry.
a9b4a41a 1014.
064af421
BP
1015.PP
1016The rest of the line consists of a description of the flow entry as
1017described in \fBFlow Syntax\fR, above.
a9b4a41a
BP
1018.
1019.
064af421
BP
1020.SH OPTIONS
1021.TP
4e312e69 1022\fB\-\-strict\fR
064af421 1023Uses strict matching when running flow modification commands.
a9b4a41a 1024.
88ca35ee
BP
1025.IP "\fB\-F \fIformat\fR"
1026.IQ "\fB\-\-flow\-format=\fIformat\fR"
1027\fBovs\-ofctl\fR supports the following flow formats, in order of
1028increasing capability:
1029.RS
1030.IP "\fBopenflow10\fR"
1031This is the standard OpenFlow 1.0 flow format. It should be supported
1032by all OpenFlow switches.
1033.
88ca35ee
BP
1034.IP "\fBnxm\fR (Nicira Extended Match)"
1035This Nicira extension to OpenFlow is flexible and extensible. It
1036supports all of the Nicira flow extensions, such as \fBtun_id\fR and
1037registers.
1038.RE
1039.IP
1040Usually, \fBovs\-ofctl\fR picks the correct format automatically. For
1041commands that modify the flow table, \fBovs\-ofctl\fR by default uses
1042the most widely supported flow format that supports the flows being
1043added. For commands that query the flow table, \fBovs\-ofctl\fR by
1044default queries and uses the most advanced format supported by the
1045switch.
1046.IP
1047This option, where \fIformat\fR is one of the formats listed in the
1048above table, overrides \fBovs\-ofctl\fR's default choice of flow
1049format. If a command cannot work as requested using the requested
1050flow format, \fBovs\-ofctl\fR will report a fatal error.
4f564f8d
BP
1051.
1052.IP "\fB\-m\fR"
1053.IQ "\fB\-\-more\fR"
1054Increases the verbosity of OpenFlow messages printed and logged by
1055\fBovs\-ofctl\fR commands. Specify this option more than once to
1056increase verbosity further.
1eb85ef5
EJ
1057.
1058.ds DD \
1059\fBovs\-ofctl\fR detaches only when executing the \fBmonitor\fR or \
1060\fBsnoop\fR commands.
1061.so lib/daemon.man
ac300505 1062.SS "Public Key Infrastructure Options"
84ee7bcf 1063.so lib/ssl.man
064af421
BP
1064.so lib/vlog.man
1065.so lib/common.man
a9b4a41a 1066.
1eb85ef5
EJ
1067.SH "RUNTIME MANAGEMENT COMMANDS"
1068\fBovs\-appctl\fR(8) can send commands to a running \fBovs\-ofctl\fR process.
1069The currently supported commands only apply when executing the \fBmonitor\fR or
1070\fBsnoop\fR commands and are described below.
1071.IP "\fBexit\fR"
1072Causes \fBovs\-ofctl\fR to gracefully terminate.
064af421 1073.SH EXAMPLES
a9b4a41a 1074.
045b2e5c
BP
1075The following examples assume that \fBovs\-vswitchd\fR has a bridge
1076named \fBbr0\fR configured.
a9b4a41a 1077.
064af421 1078.TP
045b2e5c 1079\fBovs\-ofctl dump\-tables br0\fR
064af421
BP
1080Prints out the switch's table stats. (This is more interesting after
1081some traffic has passed through.)
a9b4a41a 1082.
064af421 1083.TP
045b2e5c 1084\fBovs\-ofctl dump\-flows br0\fR
064af421 1085Prints the flow entries in the switch.
a9b4a41a 1086.
064af421 1087.SH "SEE ALSO"
a9b4a41a 1088.
064af421
BP
1089.BR ovs\-appctl (8),
1090.BR ovs\-controller (8),
1091.BR ovs\-vswitchd (8)