tunneling: Remove gre64 tunnel support.
[cascardo/ovs.git] / vswitchd / vswitch.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <database name="ovs-vswitchd.conf.db" title="Open vSwitch Configuration Database">
3   <p>
4     A database with this schema holds the configuration for one Open
5     vSwitch daemon.  The top-level configuration for the daemon is the
6     <ref table="Open_vSwitch"/> table, which must have exactly one
7     record.  Records in other tables are significant only when they
8     can be reached directly or indirectly from the <ref
9     table="Open_vSwitch"/> table.  Records that are not reachable from
10     the <ref table="Open_vSwitch"/> table are automatically deleted
11     from the database, except for records in a few distinguished
12     ``root set'' tables.
13   </p>
14
15   <h2>Common Columns</h2>
16
17   <p>
18     Most tables contain two special columns, named <code>other_config</code>
19     and <code>external_ids</code>.  These columns have the same form and
20     purpose each place that they appear, so we describe them here to save space
21     later.
22   </p>
23
24   <dl>
25     <dt><code>other_config</code>: map of string-string pairs</dt>
26     <dd>
27       <p>
28         Key-value pairs for configuring rarely used features.  Supported keys,
29         along with the forms taken by their values, are documented individually
30         for each table.
31       </p>
32       <p>
33         A few tables do not have <code>other_config</code> columns because no
34         key-value pairs have yet been defined for them.
35       </p>
36     </dd>
37
38     <dt><code>external_ids</code>: map of string-string pairs</dt>
39     <dd>
40       Key-value pairs for use by external frameworks that integrate with Open
41       vSwitch, rather than by Open vSwitch itself.  System integrators should
42       either use the Open vSwitch development mailing list to coordinate on
43       common key-value definitions, or choose key names that are likely to be
44       unique.  In some cases, where key-value pairs have been defined that are
45       likely to be widely useful, they are documented individually for each
46       table.
47     </dd>
48   </dl>
49
50   <table name="Open_vSwitch" title="Open vSwitch configuration.">
51     Configuration for an Open vSwitch daemon.  There must be exactly
52     one record in the <ref table="Open_vSwitch"/> table.
53
54     <group title="Configuration">
55       <column name="bridges">
56         Set of bridges managed by the daemon.
57       </column>
58
59       <column name="ssl">
60         SSL used globally by the daemon.
61       </column>
62
63       <column name="external_ids" key="system-id">
64         A unique identifier for the Open vSwitch's physical host.
65         The form of the identifier depends on the type of the host.
66         On a Citrix XenServer, this will likely be the same as
67         <ref column="external_ids" key="xs-system-uuid"/>.
68       </column>
69
70       <column name="external_ids" key="xs-system-uuid">
71         The Citrix XenServer universally unique identifier for the physical
72         host as displayed by <code>xe host-list</code>.
73       </column>
74
75       <column name="other_config" key="stats-update-interval"
76               type='{"type": "integer", "minInteger": 5000}'>
77         <p>
78           Interval for updating statistics to the database, in milliseconds.
79           This option will affect the update of the <code>statistics</code>
80           column in the following tables: <code>Port</code>, <code>Interface
81           </code>, <code>Mirror</code>.
82         </p>
83         <p>
84           Default value is 5000 ms.
85         </p>
86         <p>
87           Getting statistics more frequently can be achieved via OpenFlow.
88         </p>
89       </column>
90
91       <column name="other_config" key="flow-restore-wait"
92               type='{"type": "boolean"}'>
93         <p>
94           When <code>ovs-vswitchd</code> starts up, it has an empty flow table
95           and therefore it handles all arriving packets in its default fashion
96           according to its configuration, by dropping them or sending them to
97           an OpenFlow controller or switching them as a standalone switch.
98           This behavior is ordinarily desirable.  However, if
99           <code>ovs-vswitchd</code> is restarting as part of a ``hot-upgrade,''
100           then this leads to a relatively long period during which packets are
101           mishandled.
102         </p>
103         <p>
104           This option allows for improvement.  When <code>ovs-vswitchd</code>
105           starts with this value set as <code>true</code>, it will neither
106           flush or expire previously set datapath flows nor will it send and
107           receive any packets to or from the datapath.  When this value is
108           later set to <code>false</code>, <code>ovs-vswitchd</code> will
109           start receiving packets from the datapath and re-setup the flows.
110         </p>
111         <p>
112           Thus, with this option, the procedure for a hot-upgrade of
113           <code>ovs-vswitchd</code> becomes roughly the following:
114         </p>
115         <ol>
116           <li>
117             Stop <code>ovs-vswitchd</code>.
118           </li>
119           <li>
120             Set <ref column="other_config" key="flow-restore-wait"/>
121             to <code>true</code>.
122           </li>
123           <li>
124             Start <code>ovs-vswitchd</code>.
125           </li>
126           <li>
127             Use <code>ovs-ofctl</code> (or some other program, such as an
128             OpenFlow controller) to restore the OpenFlow flow table
129             to the desired state.
130           </li>
131           <li>
132             Set <ref column="other_config" key="flow-restore-wait"/>
133             to <code>false</code> (or remove it entirely from the database).
134           </li>
135         </ol>
136         <p>
137           The <code>ovs-ctl</code>'s ``restart'' and ``force-reload-kmod''
138           functions use the above config option during hot upgrades.
139         </p>
140       </column>
141
142       <column name="other_config" key="flow-limit"
143               type='{"type": "integer", "minInteger": 0}'>
144         <p>
145           The maximum
146           number of flows allowed in the datapath flow table.  Internally OVS
147           will choose a flow limit which will likely be lower than this number,
148           based on real time network conditions.
149         </p>
150         <p>
151           The default is 200000.
152         </p>
153       </column>
154
155       <column name="other_config" key="n-dpdk-rxqs"
156               type='{"type": "integer", "minInteger": 1}'>
157         <p>
158           Specifies the maximum number of rx queues to be created for each dpdk
159           interface.  If not specified or specified to 0, one rx queue will
160           be created for each dpdk interface by default.
161         </p>
162       </column>
163
164       <column name="other_config" key="pmd-cpu-mask">
165         <p>
166           Specifies CPU mask for setting the cpu affinity of PMD (Poll
167           Mode Driver) threads.  Value should be in the form of hex string,
168           similar to the dpdk EAL '-c COREMASK' option input or the 'taskset'
169           mask input.
170         </p>
171         <p>
172           The lowest order bit corresponds to the first CPU core.  A set bit
173           means the corresponding core is available and a pmd thread will be
174           created and pinned to it.  If the input does not cover all cores,
175           those uncovered cores are considered not set.
176         </p>
177         <p>
178           If not specified, one pmd thread will be created for each numa node
179           and pinned to any available core on the numa node by default.
180         </p>
181       </column>
182
183       <column name="other_config" key="n-handler-threads"
184               type='{"type": "integer", "minInteger": 1}'>
185         <p>
186           Specifies the number of threads for software datapaths to use for
187           handling new flows.  The default the number of online CPU cores minus
188           the number of revalidators.
189         </p>
190         <p>
191           This configuration is per datapath.  If you have more than one
192           software datapath (e.g. some <code>system</code> bridges and some
193           <code>netdev</code> bridges), then the total number of threads is
194           <code>n-handler-threads</code> times the number of software
195           datapaths.
196         </p>
197       </column>
198
199       <column name="other_config" key="n-revalidator-threads"
200               type='{"type": "integer", "minInteger": 1}'>
201         <p>
202           Specifies the number of threads for software datapaths to use for
203           revalidating flows in the datapath.  Typically, there is a direct
204           correlation between the number of revalidator threads, and the number
205           of flows allowed in the datapath.  The default is the number of cpu
206           cores divided by four plus one.  If <code>n-handler-threads</code> is
207           set, the default changes to the number of cpu cores minus the number
208           of handler threads.
209         </p>
210         <p>
211           This configuration is per datapath.  If you have more than one
212           software datapath (e.g. some <code>system</code> bridges and some
213           <code>netdev</code> bridges), then the total number of threads is
214           <code>n-handler-threads</code> times the number of software
215           datapaths.
216         </p>
217       </column>
218     </group>
219
220     <group title="Status">
221       <column name="next_cfg">
222         Sequence number for client to increment.  When a client modifies
223         any part of the database configuration and wishes to wait for
224         Open vSwitch to finish applying the changes, it may increment
225         this sequence number.
226       </column>
227
228       <column name="cur_cfg">
229         Sequence number that Open vSwitch sets to the current value of
230         <ref column="next_cfg"/> after it finishes applying a set of
231         configuration changes.
232       </column>
233
234       <group title="Statistics">
235         <p>
236           The <code>statistics</code> column contains key-value pairs that
237           report statistics about a system running an Open vSwitch.  These are
238           updated periodically (currently, every 5 seconds).  Key-value pairs
239           that cannot be determined or that do not apply to a platform are
240           omitted.
241         </p>
242
243         <column name="other_config" key="enable-statistics"
244                 type='{"type": "boolean"}'>
245           Statistics are disabled by default to avoid overhead in the common
246           case when statistics gathering is not useful.  Set this value to
247           <code>true</code> to enable populating the <ref column="statistics"/>
248           column or to <code>false</code> to explicitly disable it.
249         </column>
250
251         <column name="statistics" key="cpu"
252                 type='{"type": "integer", "minInteger": 1}'>
253           <p>
254             Number of CPU processors, threads, or cores currently online and
255             available to the operating system on which Open vSwitch is running,
256             as an integer.  This may be less than the number installed, if some
257             are not online or if they are not available to the operating
258             system.
259           </p>
260           <p>
261             Open vSwitch userspace processes are not multithreaded, but the
262             Linux kernel-based datapath is.
263           </p>
264         </column>
265
266         <column name="statistics" key="load_average">
267           A comma-separated list of three floating-point numbers,
268           representing the system load average over the last 1, 5, and 15
269           minutes, respectively.
270         </column>
271
272         <column name="statistics" key="memory">
273           <p>
274             A comma-separated list of integers, each of which represents a
275             quantity of memory in kilobytes that describes the operating
276             system on which Open vSwitch is running.  In respective order,
277             these values are:
278           </p>
279
280           <ol>
281             <li>Total amount of RAM allocated to the OS.</li>
282             <li>RAM allocated to the OS that is in use.</li>
283             <li>RAM that can be flushed out to disk or otherwise discarded
284             if that space is needed for another purpose.  This number is
285             necessarily less than or equal to the previous value.</li>
286             <li>Total disk space allocated for swap.</li>
287             <li>Swap space currently in use.</li>
288           </ol>
289
290           <p>
291             On Linux, all five values can be determined and are included.  On
292             other operating systems, only the first two values can be
293             determined, so the list will only have two values.
294           </p>
295         </column>
296
297         <column name="statistics" key="process_NAME">
298           <p>
299             One such key-value pair, with <code>NAME</code> replaced by
300             a process name, will exist for each running Open vSwitch
301             daemon process, with <var>name</var> replaced by the
302             daemon's name (e.g. <code>process_ovs-vswitchd</code>).  The
303             value is a comma-separated list of integers.  The integers
304             represent the following, with memory measured in kilobytes
305             and durations in milliseconds:
306           </p>
307
308           <ol>
309             <li>The process's virtual memory size.</li>
310             <li>The process's resident set size.</li>
311             <li>The amount of user and system CPU time consumed by the
312             process.</li>
313             <li>The number of times that the process has crashed and been
314             automatically restarted by the monitor.</li>
315             <li>The duration since the process was started.</li>
316             <li>The duration for which the process has been running.</li>
317           </ol>
318
319           <p>
320             The interpretation of some of these values depends on whether the
321             process was started with the <option>--monitor</option>.  If it
322             was not, then the crash count will always be 0 and the two
323             durations will always be the same.  If <option>--monitor</option>
324             was given, then the crash count may be positive; if it is, the
325             latter duration is the amount of time since the most recent crash
326             and restart.
327           </p>
328
329           <p>
330             There will be one key-value pair for each file in Open vSwitch's
331             ``run directory'' (usually <code>/var/run/openvswitch</code>)
332             whose name ends in <code>.pid</code>, whose contents are a
333             process ID, and which is locked by a running process.  The
334             <var>name</var> is taken from the pidfile's name.
335           </p>
336
337           <p>
338             Currently Open vSwitch is only able to obtain all of the above
339             detail on Linux systems.  On other systems, the same key-value
340             pairs will be present but the values will always be the empty
341             string.
342           </p>
343         </column>
344
345         <column name="statistics" key="file_systems">
346           <p>
347             A space-separated list of information on local, writable file
348             systems.  Each item in the list describes one file system and
349             consists in turn of a comma-separated list of the following:
350           </p>
351
352           <ol>
353             <li>Mount point, e.g. <code>/</code> or <code>/var/log</code>.
354             Any spaces or commas in the mount point are replaced by
355             underscores.</li>
356             <li>Total size, in kilobytes, as an integer.</li>
357             <li>Amount of storage in use, in kilobytes, as an integer.</li>
358           </ol>
359
360           <p>
361             This key-value pair is omitted if there are no local, writable
362             file systems or if Open vSwitch cannot obtain the needed
363             information.
364           </p>
365         </column>
366       </group>
367     </group>
368
369     <group title="Version Reporting">
370       <p>
371         These columns report the types and versions of the hardware and
372         software running Open vSwitch.  We recommend in general that software
373         should test whether specific features are supported instead of relying
374         on version number checks.  These values are primarily intended for
375         reporting to human administrators.
376       </p>
377
378       <column name="ovs_version">
379         The Open vSwitch version number, e.g. <code>1.1.0</code>.
380       </column>
381
382       <column name="db_version">
383         <p>
384           The database schema version number in the form
385           <code><var>major</var>.<var>minor</var>.<var>tweak</var></code>,
386           e.g. <code>1.2.3</code>.  Whenever the database schema is changed in
387           a non-backward compatible way (e.g. deleting a column or a table),
388           <var>major</var> is incremented.  When the database schema is changed
389           in a backward compatible way (e.g. adding a new column),
390           <var>minor</var> is incremented.  When the database schema is changed
391           cosmetically (e.g. reindenting its syntax), <var>tweak</var> is
392           incremented.
393         </p>
394
395         <p>
396           The schema version is part of the database schema, so it can also be
397           retrieved by fetching the schema using the Open vSwitch database
398           protocol.
399         </p>
400       </column>
401
402       <column name="system_type">
403         <p>
404           An identifier for the type of system on top of which Open vSwitch
405           runs, e.g. <code>XenServer</code> or <code>KVM</code>.
406         </p>
407         <p>
408           System integrators are responsible for choosing and setting an
409           appropriate value for this column.
410         </p>
411       </column>
412
413       <column name="system_version">
414         <p>
415           The version of the system identified by <ref column="system_type"/>,
416           e.g. <code>5.6.100-39265p</code> on XenServer 5.6.100 build 39265.
417         </p>
418         <p>
419           System integrators are responsible for choosing and setting an
420           appropriate value for this column.
421         </p>
422       </column>
423
424     </group>
425
426     <group title="Capabilities">
427       <p>
428         These columns report capabilities of the Open vSwitch instance.
429       </p>
430       <column name="datapath_types">
431         <p>
432           This column reports the different dpifs registered with the system.
433           These are the values that this instance supports in the <ref
434           column="datapath_type" table="Bridge"/> column of the <ref
435           table="Bridge"/> table.
436         </p>
437       </column>
438       <column name="iface_types">
439         <p>
440           This column reports the different netdevs registered with the system.
441           These are the values that this instance supports in the <ref
442           column="type" table="Interface"/> column of the <ref
443           table="Interface"/> table.
444         </p>
445       </column>
446     </group>
447
448     <group title="Database Configuration">
449       <p>
450         These columns primarily configure the Open vSwitch database
451         (<code>ovsdb-server</code>), not the Open vSwitch switch
452         (<code>ovs-vswitchd</code>).  The OVSDB database also uses the <ref
453         column="ssl"/> settings.
454       </p>
455
456       <p>
457         The Open vSwitch switch does read the database configuration to
458         determine remote IP addresses to which in-band control should apply.
459       </p>
460
461       <column name="manager_options">
462         Database clients to which the Open vSwitch database server should
463         connect or to which it should listen, along with options for how these
464         connection should be configured.  See the <ref table="Manager"/> table
465         for more information.
466       </column>
467     </group>
468
469     <group title="Common Columns">
470       The overall purpose of these columns is described under <code>Common
471       Columns</code> at the beginning of this document.
472
473       <column name="other_config"/>
474       <column name="external_ids"/>
475     </group>
476   </table>
477
478   <table name="Bridge">
479     <p>
480       Configuration for a bridge within an
481       <ref table="Open_vSwitch"/>.
482     </p>
483     <p>
484       A <ref table="Bridge"/> record represents an Ethernet switch with one or
485       more ``ports,'' which are the <ref table="Port"/> records pointed to by
486       the <ref table="Bridge"/>'s <ref column="ports"/> column.
487     </p>
488
489     <group title="Core Features">
490       <column name="name">
491         Bridge identifier.  Should be alphanumeric and no more than about 8
492         bytes long.  Must be unique among the names of ports, interfaces, and
493         bridges on a host.
494       </column>
495
496       <column name="ports">
497         Ports included in the bridge.
498       </column>
499
500       <column name="mirrors">
501         Port mirroring configuration.
502       </column>
503
504       <column name="netflow">
505         NetFlow configuration.
506       </column>
507
508       <column name="sflow">
509         sFlow(R) configuration.
510       </column>
511
512       <column name="ipfix">
513         IPFIX configuration.
514       </column>
515
516       <column name="flood_vlans">
517         <p>
518           VLAN IDs of VLANs on which MAC address learning should be disabled,
519           so that packets are flooded instead of being sent to specific ports
520           that are believed to contain packets' destination MACs.  This should
521           ordinarily be used to disable MAC learning on VLANs used for
522           mirroring (RSPAN VLANs).  It may also be useful for debugging.
523         </p>
524         <p>
525           SLB bonding (see the <ref table="Port" column="bond_mode"/> column in
526           the <ref table="Port"/> table) is incompatible with
527           <code>flood_vlans</code>.  Consider using another bonding mode or
528           a different type of mirror instead.
529         </p>
530       </column>
531
532       <column name="auto_attach">
533           Auto Attach configuration.
534       </column>
535     </group>
536
537     <group title="OpenFlow Configuration">
538       <column name="controller">
539         <p>
540           OpenFlow controller set.  If unset, then no OpenFlow controllers
541           will be used.
542         </p>
543
544         <p>
545           If there are primary controllers, removing all of them clears the
546           flow table.  If there are no primary controllers, adding one also
547           clears the flow table.  Other changes to the set of controllers, such
548           as adding or removing a service controller, adding another primary
549           controller to supplement an existing primary controller, or removing
550           only one of two primary controllers, have no effect on the flow
551           table.
552         </p>
553       </column>
554
555       <column name="flow_tables">
556         Configuration for OpenFlow tables.  Each pair maps from an OpenFlow
557         table ID to configuration for that table.
558       </column>
559
560       <column name="fail_mode">
561         <p>When a controller is configured, it is, ordinarily, responsible
562         for setting up all flows on the switch.  Thus, if the connection to
563         the controller fails, no new network connections can be set up.
564         If the connection to the controller stays down long enough,
565         no packets can pass through the switch at all.  This setting
566         determines the switch's response to such a situation.  It may be set
567         to one of the following:
568         <dl>
569           <dt><code>standalone</code></dt>
570           <dd>If no message is received from the controller for three
571           times the inactivity probe interval
572           (see <ref column="inactivity_probe"/>), then Open vSwitch
573           will take over responsibility for setting up flows.  In
574           this mode, Open vSwitch causes the bridge to act like an
575           ordinary MAC-learning switch.  Open vSwitch will continue
576           to retry connecting to the controller in the background
577           and, when the connection succeeds, it will discontinue its
578           standalone behavior.</dd>
579           <dt><code>secure</code></dt>
580           <dd>Open vSwitch will not set up flows on its own when the
581           controller connection fails or when no controllers are
582           defined.  The bridge will continue to retry connecting to
583           any defined controllers forever.</dd>
584         </dl>
585         </p>
586         <p>
587           The default is <code>standalone</code> if the value is unset, but
588           future versions of Open vSwitch may change the default.
589         </p>
590         <p>
591           The <code>standalone</code> mode can create forwarding loops on a
592           bridge that has more than one uplink port unless STP is enabled.  To
593           avoid loops on such a bridge, configure <code>secure</code> mode or
594           enable STP (see <ref column="stp_enable"/>).
595         </p>
596         <p>When more than one controller is configured,
597         <ref column="fail_mode"/> is considered only when none of the
598         configured controllers can be contacted.</p>
599         <p>
600           Changing <ref column="fail_mode"/> when no primary controllers are
601           configured clears the flow table.
602         </p>
603       </column>
604
605       <column name="datapath_id">
606         Reports the OpenFlow datapath ID in use.  Exactly 16 hex digits.
607         (Setting this column has no useful effect.  Set <ref
608         column="other-config" key="datapath-id"/> instead.)
609       </column>
610
611       <column name="datapath_version">
612         <p>
613           Reports the version number of the Open vSwitch datapath in use.
614           This allows management software to detect and report discrepancies
615           between Open vSwitch userspace and datapath versions.  (The <ref
616           column="ovs_version" table="Open_vSwitch"/> column in the <ref
617           table="Open_vSwitch"/> reports the Open vSwitch userspace version.)
618           The version reported depends on the datapath in use:
619         </p>
620
621         <ul>
622           <li>
623             When the kernel module included in the Open vSwitch source tree is
624             used, this column reports the Open vSwitch version from which the
625             module was taken.
626           </li>
627
628           <li>
629             When the kernel module that is part of the upstream Linux kernel is
630             used, this column reports <code>&lt;unknown&gt;</code>.
631           </li>
632
633           <li>
634             When the datapath is built into the <code>ovs-vswitchd</code>
635             binary, this column reports <code>&lt;built-in&gt;</code>.  A
636             built-in datapath is by definition the same version as the rest of
637             the Open VSwitch userspace.
638           </li>
639
640           <li>
641             Other datapaths (such as the Hyper-V kernel datapath) currently
642             report <code>&lt;unknown&gt;</code>.
643           </li>
644         </ul>
645
646         <p>
647           A version discrepancy between <code>ovs-vswitchd</code> and the
648           datapath in use is not normally cause for alarm.  The Open vSwitch
649           kernel datapaths for Linux and Hyper-V, in particular, are designed
650           for maximum inter-version compatibility: any userspace version works
651           with with any kernel version.  Some reasons do exist to insist on
652           particular user/kernel pairings.  First, newer kernel versions add
653           new features, that can only be used by new-enough userspace, e.g.
654           VXLAN tunneling requires certain minimal userspace and kernel
655           versions.  Second, as an extension to the first reason, some newer
656           kernel versions add new features for enhancing performance that only
657           new-enough userspace versions can take advantage of.
658         </p>
659       </column>
660
661       <column name="other_config" key="datapath-id">
662         Exactly 16 hex digits to set the OpenFlow datapath ID to a specific
663         value.  May not be all-zero.
664       </column>
665
666       <column name="other_config" key="dp-desc">
667         Human readable description of datapath.  It it a maximum 256
668         byte-long free-form string to describe the datapath for
669         debugging purposes, e.g. <code>switch3 in room 3120</code>.
670       </column>
671
672       <column name="other_config" key="disable-in-band"
673               type='{"type": "boolean"}'>
674         If set to <code>true</code>, disable in-band control on the bridge
675         regardless of controller and manager settings.
676       </column>
677
678       <column name="other_config" key="in-band-queue"
679               type='{"type": "integer", "minInteger": 0, "maxInteger": 4294967295}'>
680         A queue ID as a nonnegative integer.  This sets the OpenFlow queue ID
681         that will be used by flows set up by in-band control on this bridge.
682         If unset, or if the port used by an in-band control flow does not have
683         QoS configured, or if the port does not have a queue with the specified
684         ID, the default queue is used instead.
685       </column>
686
687       <column name="protocols">
688         <p>
689           List of OpenFlow protocols that may be used when negotiating
690           a connection with a controller.  OpenFlow 1.0, 1.1, 1.2, and
691           1.3 are enabled by default if this column is empty.
692         </p>
693
694         <p>
695           OpenFlow 1.4 is not enabled by default because its implementation is
696           missing features.
697         </p>
698
699         <p>
700           OpenFlow 1.5 has the same risks as OpenFlow 1.4, but it is even more
701           experimental because the OpenFlow 1.5 specification is still under
702           development and thus subject to change.  Pass
703           <code>--enable-of15</code> to <code>ovs-vswitchd</code> to allow
704           OpenFlow 1.5 to be enabled.
705         </p>
706       </column>
707     </group>
708
709     <group title="Spanning Tree Configuration">
710       <p>
711         The IEEE 802.1D Spanning Tree Protocol (STP) is a network protocol
712         that ensures loop-free topologies.  It allows redundant links to
713         be included in the network to provide automatic backup paths if
714         the active links fails.
715       </p>
716
717       <p>
718         These settings configure the slower-to-converge but still widely
719         supported version of Spanning Tree Protocol, sometimes known as
720         802.1D-1998.  Open vSwitch also supports the newer Rapid Spanning Tree
721         Protocol (RSTP), documented later in the section titled <code>Rapid
722         Spanning Tree Configuration</code>.
723       </p>
724
725       <group title="STP Configuration">
726         <column name="stp_enable" type='{"type": "boolean"}'>
727           <p>
728             Enable spanning tree on the bridge.  By default, STP is disabled
729             on bridges.  Bond, internal, and mirror ports are not supported
730             and will not participate in the spanning tree.
731           </p>
732
733           <p>
734             STP and RSTP are mutually exclusive.  If both are enabled, RSTP
735             will be used.
736           </p>
737         </column>
738
739         <column name="other_config" key="stp-system-id">
740           The bridge's STP identifier (the lower 48 bits of the bridge-id)
741           in the form
742           <var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>.
743           By default, the identifier is the MAC address of the bridge.
744         </column>
745
746         <column name="other_config" key="stp-priority"
747                 type='{"type": "integer", "minInteger": 0, "maxInteger": 65535}'>
748           The bridge's relative priority value for determining the root
749           bridge (the upper 16 bits of the bridge-id).  A bridge with the
750           lowest bridge-id is elected the root.  By default, the priority
751           is 0x8000.
752         </column>
753
754         <column name="other_config" key="stp-hello-time"
755                 type='{"type": "integer", "minInteger": 1, "maxInteger": 10}'>
756           The interval between transmissions of hello messages by
757           designated ports, in seconds.  By default the hello interval is
758           2 seconds.
759         </column>
760
761         <column name="other_config" key="stp-max-age"
762                 type='{"type": "integer", "minInteger": 6, "maxInteger": 40}'>
763           The maximum age of the information transmitted by the bridge
764           when it is the root bridge, in seconds.  By default, the maximum
765           age is 20 seconds.
766         </column>
767
768         <column name="other_config" key="stp-forward-delay"
769                 type='{"type": "integer", "minInteger": 4, "maxInteger": 30}'>
770           The delay to wait between transitioning root and designated
771           ports to <code>forwarding</code>, in seconds.  By default, the
772           forwarding delay is 15 seconds.
773         </column>
774
775         <column name="other_config" key="mcast-snooping-aging-time"
776                 type='{"type": "integer", "minInteger": 1}'>
777           <p>
778             The maximum number of seconds to retain a multicast snooping entry for
779             which no packets have been seen.  The default is currently 300
780             seconds (5 minutes).  The value, if specified, is forced into a
781             reasonable range, currently 15 to 3600 seconds.
782           </p>
783         </column>
784
785         <column name="other_config" key="mcast-snooping-table-size"
786                 type='{"type": "integer", "minInteger": 1}'>
787           <p>
788             The maximum number of multicast snooping addresses to learn.  The
789             default is currently 2048.  The value, if specified, is forced into
790             a reasonable range, currently 10 to 1,000,000.
791           </p>
792         </column>
793         <column name="other_config" key="mcast-snooping-disable-flood-unregistered"
794                 type='{"type": "boolean"}'>
795           <p>
796             If set to <code>false</code>, unregistered multicast packets are forwarded
797             to all ports.
798             If set to <code>true</code>, unregistered multicast packets are forwarded
799             to ports connected to multicast routers.
800           </p>
801         </column>
802       </group>
803
804       <group title="STP Status">
805         <p>
806           These key-value pairs report the status of 802.1D-1998.  They are
807           present only if STP is enabled (via the <ref column="stp_enable"/>
808           column).
809         </p>
810         <column name="status" key="stp_bridge_id">
811           The bridge ID used in spanning tree advertisements, in the form
812           <var>xxxx</var>.<var>yyyyyyyyyyyy</var> where the <var>x</var>s are
813           the STP priority, the <var>y</var>s are the STP system ID, and each
814           <var>x</var> and <var>y</var> is a hex digit.
815         </column>
816         <column name="status" key="stp_designated_root">
817           The designated root for this spanning tree, in the same form as <ref
818           column="status" key="stp_bridge_id"/>.  If this bridge is the root,
819           this will have the same value as <ref column="status"
820           key="stp_bridge_id"/>, otherwise it will differ.
821         </column>
822         <column name="status" key="stp_root_path_cost">
823           The path cost of reaching the designated bridge.  A lower number is
824           better.  The value is 0 if this bridge is the root, otherwise it is
825           higher.
826         </column>
827       </group>
828     </group>
829
830     <group title="Rapid Spanning Tree">
831       <p>
832         Rapid Spanning Tree Protocol (RSTP), like STP, is a network protocol
833         that ensures loop-free topologies.  RSTP superseded STP with the
834         publication of 802.1D-2004.  Compared to STP, RSTP converges more
835         quickly and recovers more quickly from failures.
836       </p>
837
838       <group title="RSTP Configuration">
839         <column name="rstp_enable" type='{"type": "boolean"}'>
840           <p>
841             Enable Rapid Spanning Tree on the bridge.  By default, RSTP is disabled
842             on bridges.  Bond, internal, and mirror ports are not supported
843             and will not participate in the spanning tree.
844           </p>
845
846           <p>
847             STP and RSTP are mutually exclusive.  If both are enabled, RSTP
848             will be used.
849           </p>
850         </column>
851
852         <column name="other_config" key="rstp-address">
853           The bridge's RSTP address (the lower 48 bits of the bridge-id)
854           in the form
855           <var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>.
856           By default, the address is the MAC address of the bridge.
857         </column>
858
859         <column name="other_config" key="rstp-priority"
860                 type='{"type": "integer", "minInteger": 0, "maxInteger": 61440}'>
861           The bridge's relative priority value for determining the root
862           bridge (the upper 16 bits of the bridge-id).  A bridge with the
863           lowest bridge-id is elected the root.  By default, the priority
864           is 0x8000 (32768).  This value needs to be a multiple of 4096,
865           otherwise it's rounded to the nearest inferior one.
866         </column>
867
868         <column name="other_config" key="rstp-ageing-time"
869                 type='{"type": "integer", "minInteger": 10, "maxInteger": 1000000}'>
870           The Ageing Time parameter for the Bridge.  The default value
871           is 300 seconds.
872         </column>
873
874         <column name="other_config" key="rstp-force-protocol-version"
875                 type='{"type": "integer"}'>
876           The Force Protocol Version parameter for the Bridge.  This
877           can take the value 0 (STP Compatibility mode) or 2
878           (the default, normal operation).
879         </column>
880
881         <column name="other_config" key="rstp-max-age"
882                 type='{"type": "integer", "minInteger": 6, "maxInteger": 40}'>
883           The maximum age of the information transmitted by the Bridge
884           when it is the Root Bridge.  The default value is 20.
885         </column>
886
887         <column name="other_config" key="rstp-forward-delay"
888                 type='{"type": "integer", "minInteger": 4, "maxInteger": 30}'>
889           The delay used by STP Bridges to transition Root and Designated
890           Ports to Forwarding.  The default value is 15.
891         </column>
892
893         <column name="other_config" key="rstp-transmit-hold-count"
894                 type='{"type": "integer", "minInteger": 1, "maxInteger": 10}'>
895           The Transmit Hold Count used by the Port Transmit state machine
896           to limit transmission rate.  The default value is 6.
897         </column>
898       </group>
899
900       <group title="RSTP Status">
901         <p>
902           These key-value pairs report the status of 802.1D-2004.  They are
903           present only if RSTP is enabled (via the <ref column="rstp_enable"/>
904           column).
905         </p>
906         <column name="rstp_status" key="rstp_bridge_id">
907           The bridge ID used in rapid spanning tree advertisements, in the form
908           <var>x</var>.<var>yyy</var>.<var>zzzzzzzzzzzz</var> where
909           <var>x</var> is the RSTP priority, the <var>y</var>s are a locally
910           assigned system ID extension, the <var>z</var>s are the STP system
911           ID, and each <var>x</var>, <var>y</var>, or <var>z</var> is a hex
912           digit.
913         </column>
914         <column name="rstp_status" key="rstp_root_id">
915           The root of this spanning tree, in the same form as <ref
916           column="rstp_status" key="rstp_bridge_id"/>.  If this bridge is the
917           root, this will have the same value as <ref column="rstp_status"
918           key="rstp_bridge_id"/>, otherwise it will differ.
919         </column>
920         <column name="rstp_status" key="rstp_root_path_cost"
921                 type='{"type": "integer", "minInteger": 0}'>
922           The path cost of reaching the root.  A lower number is better.  The
923           value is 0 if this bridge is the root, otherwise it is higher.
924         </column>
925         <column name="rstp_status" key="rstp_designated_id">
926           The RSTP designated ID, in the same form as <ref column="rstp_status"
927           key="rstp_bridge_id"/>.
928         </column>
929         <column name="rstp_status" key="rstp_designated_port_id">
930           The RSTP designated port ID, as a 4-digit hex number.
931         </column>
932         <column name="rstp_status" key="rstp_bridge_port_id">
933           The RSTP bridge port ID, as a 4-digit hex number.
934         </column>
935       </group>
936     </group>
937
938     <group title="Multicast Snooping Configuration">
939       Multicast snooping (RFC 4541) monitors the Internet Group Management
940       Protocol (IGMP) and Multicast Listener Discovery traffic between hosts
941       and multicast routers.  The switch uses what IGMP and MLD snooping
942       learns to forward multicast traffic only to interfaces that are connected
943       to interested receivers.  Currently it supports IGMPv1, IGMPv2, IGMPv3,
944       MLDv1 and MLDv2 protocols.
945
946       <column name="mcast_snooping_enable">
947         Enable multicast snooping on the bridge. For now, the default
948         is disabled.
949       </column>
950     </group>
951
952     <group title="Other Features">
953       <column name="datapath_type">
954         Name of datapath provider.  The kernel datapath has type
955         <code>system</code>.  The userspace datapath has type
956         <code>netdev</code>.  A manager may refer to the <ref
957         table="Open_vSwitch" column="datapath_types"/> column of the <ref
958         table="Open_vSwitch"/> table for a list of the types accepted by this
959         Open vSwitch instance.
960       </column>
961
962       <column name="external_ids" key="bridge-id">
963         A unique identifier of the bridge.  On Citrix XenServer this will
964         commonly be the same as
965         <ref column="external_ids" key="xs-network-uuids"/>.
966       </column>
967
968       <column name="external_ids" key="xs-network-uuids">
969         Semicolon-delimited set of universally unique identifier(s) for the
970         network with which this bridge is associated on a Citrix XenServer
971         host.  The network identifiers are RFC 4122 UUIDs as displayed by,
972         e.g., <code>xe network-list</code>.
973       </column>
974
975       <column name="other_config" key="hwaddr">
976         An Ethernet address in the form
977         <var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>
978         to set the hardware address of the local port and influence the
979         datapath ID.
980       </column>
981
982       <column name="other_config" key="forward-bpdu"
983               type='{"type": "boolean"}'>
984
985         <p>
986           Controls forwarding of BPDUs and other network control frames when
987           NORMAL action is invoked.  When this option is <code>false</code> or
988           unset, frames with reserved Ethernet addresses (see table below) will
989           not be forwarded.  When this option is <code>true</code>, such frames
990           will not be treated specially.
991         </p>
992
993         <p>
994           The above general rule has the following exceptions:
995         </p>
996
997         <ul>
998           <li>
999             If STP is enabled on the bridge (see the <ref column="stp_enable"
1000             table="Bridge"/> column in the <ref table="Bridge"/> table), the
1001             bridge processes all received STP packets and never passes them to
1002             OpenFlow or forwards them.  This is true even if STP is disabled on
1003             an individual port.
1004           </li>
1005
1006           <li>
1007             If LLDP is enabled on an interface (see the <ref column="lldp"
1008             table="Interface"/> column in the <ref table="Interface"/> table),
1009             the interface processes received LLDP packets and never passes them
1010             to OpenFlow or forwards them.
1011           </li>
1012         </ul>
1013
1014         <p>
1015           Set this option to <code>true</code> if the Open vSwitch bridge
1016           connects different Ethernet networks and is not configured to
1017           participate in STP.
1018         </p>
1019
1020         <p>
1021           This option affects packets with the following destination MAC
1022           addresses:
1023         </p>
1024
1025         <dl>
1026           <dt><code>01:80:c2:00:00:00</code></dt>
1027           <dd>IEEE 802.1D Spanning Tree Protocol (STP).</dd>
1028
1029           <dt><code>01:80:c2:00:00:01</code></dt>
1030           <dd>IEEE Pause frame.</dd>
1031
1032           <dt><code>01:80:c2:00:00:0<var>x</var></code></dt>
1033           <dd>Other reserved protocols.</dd>
1034
1035           <dt><code>00:e0:2b:00:00:00</code></dt>
1036           <dd>Extreme Discovery Protocol (EDP).</dd>
1037
1038           <dt>
1039             <code>00:e0:2b:00:00:04</code> and <code>00:e0:2b:00:00:06</code>
1040           </dt>
1041           <dd>Ethernet Automatic Protection Switching (EAPS).</dd>
1042
1043           <dt><code>01:00:0c:cc:cc:cc</code></dt>
1044           <dd>
1045             Cisco Discovery Protocol (CDP), VLAN Trunking Protocol (VTP),
1046             Dynamic Trunking Protocol (DTP), Port Aggregation Protocol (PAgP),
1047             and others.
1048           </dd>
1049
1050           <dt><code>01:00:0c:cc:cc:cd</code></dt>
1051           <dd>Cisco Shared Spanning Tree Protocol PVSTP+.</dd>
1052
1053           <dt><code>01:00:0c:cd:cd:cd</code></dt>
1054           <dd>Cisco STP Uplink Fast.</dd>
1055
1056           <dt><code>01:00:0c:00:00:00</code></dt>
1057           <dd>Cisco Inter Switch Link.</dd>
1058
1059           <dt><code>01:00:0c:cc:cc:c<var>x</var></code></dt>
1060           <dd>Cisco CFM.</dd>
1061         </dl>
1062       </column>
1063
1064       <column name="other_config" key="mac-aging-time"
1065               type='{"type": "integer", "minInteger": 1}'>
1066         <p>
1067           The maximum number of seconds to retain a MAC learning entry for
1068           which no packets have been seen.  The default is currently 300
1069           seconds (5 minutes).  The value, if specified, is forced into a
1070           reasonable range, currently 15 to 3600 seconds.
1071         </p>
1072
1073         <p>
1074           A short MAC aging time allows a network to more quickly detect that a
1075           host is no longer connected to a switch port.  However, it also makes
1076           it more likely that packets will be flooded unnecessarily, when they
1077           are addressed to a connected host that rarely transmits packets.  To
1078           reduce the incidence of unnecessary flooding, use a MAC aging time
1079           longer than the maximum interval at which a host will ordinarily
1080           transmit packets.
1081         </p>
1082       </column>
1083
1084       <column name="other_config" key="mac-table-size"
1085               type='{"type": "integer", "minInteger": 1}'>
1086         <p>
1087           The maximum number of MAC addresses to learn.  The default is
1088           currently 2048.  The value, if specified, is forced into a reasonable
1089           range, currently 10 to 1,000,000.
1090         </p>
1091       </column>
1092     </group>
1093
1094     <group title="Common Columns">
1095       The overall purpose of these columns is described under <code>Common
1096       Columns</code> at the beginning of this document.
1097
1098       <column name="other_config"/>
1099       <column name="external_ids"/>
1100     </group>
1101   </table>
1102  
1103  <table name="Port" table="Port or bond configuration.">
1104     <p>A port within a <ref table="Bridge"/>.</p>
1105     <p>Most commonly, a port has exactly one ``interface,'' pointed to by its
1106     <ref column="interfaces"/> column.  Such a port logically
1107     corresponds to a port on a physical Ethernet switch.  A port
1108     with more than one interface is a ``bonded port'' (see
1109     <ref group="Bonding Configuration"/>).</p>
1110     <p>Some properties that one might think as belonging to a port are actually
1111     part of the port's <ref table="Interface"/> members.</p>
1112
1113     <column name="name">
1114       Port name.  Should be alphanumeric and no more than about 8
1115       bytes long.  May be the same as the interface name, for
1116       non-bonded ports.  Must otherwise be unique among the names of
1117       ports, interfaces, and bridges on a host.
1118     </column>
1119
1120     <column name="interfaces">
1121       The port's interfaces.  If there is more than one, this is a
1122       bonded Port.
1123     </column>
1124
1125     <group title="VLAN Configuration">
1126       <p>Bridge ports support the following types of VLAN configuration:</p>
1127       <dl>
1128         <dt>trunk</dt>
1129         <dd>
1130           <p>
1131             A trunk port carries packets on one or more specified VLANs
1132             specified in the <ref column="trunks"/> column (often, on every
1133             VLAN).  A packet that ingresses on a trunk port is in the VLAN
1134             specified in its 802.1Q header, or VLAN 0 if the packet has no
1135             802.1Q header.  A packet that egresses through a trunk port will
1136             have an 802.1Q header if it has a nonzero VLAN ID.
1137           </p>
1138
1139           <p>
1140             Any packet that ingresses on a trunk port tagged with a VLAN that
1141             the port does not trunk is dropped.
1142           </p>
1143         </dd>
1144
1145         <dt>access</dt>
1146         <dd>
1147           <p>
1148             An access port carries packets on exactly one VLAN specified in the
1149             <ref column="tag"/> column.  Packets egressing on an access port
1150             have no 802.1Q header.
1151           </p>
1152
1153           <p>
1154             Any packet with an 802.1Q header with a nonzero VLAN ID that
1155             ingresses on an access port is dropped, regardless of whether the
1156             VLAN ID in the header is the access port's VLAN ID.
1157           </p>
1158         </dd>
1159
1160         <dt>native-tagged</dt>
1161         <dd>
1162           A native-tagged port resembles a trunk port, with the exception that
1163           a packet without an 802.1Q header that ingresses on a native-tagged
1164           port is in the ``native VLAN'' (specified in the <ref column="tag"/>
1165           column).
1166         </dd>
1167
1168         <dt>native-untagged</dt>
1169         <dd>
1170           A native-untagged port resembles a native-tagged port, with the
1171           exception that a packet that egresses on a native-untagged port in
1172           the native VLAN will not have an 802.1Q header.
1173         </dd>
1174       </dl>
1175       <p>
1176         A packet will only egress through bridge ports that carry the VLAN of
1177         the packet, as described by the rules above.
1178       </p>
1179
1180       <column name="vlan_mode">
1181         <p>
1182           The VLAN mode of the port, as described above.  When this column is
1183           empty, a default mode is selected as follows:
1184         </p>
1185         <ul>
1186           <li>
1187             If <ref column="tag"/> contains a value, the port is an access
1188             port.  The <ref column="trunks"/> column should be empty.
1189           </li>
1190           <li>
1191             Otherwise, the port is a trunk port.  The <ref column="trunks"/>
1192             column value is honored if it is present.
1193           </li>
1194         </ul>
1195       </column>
1196
1197       <column name="tag">
1198         <p>
1199           For an access port, the port's implicitly tagged VLAN.  For a
1200           native-tagged or native-untagged port, the port's native VLAN.  Must
1201           be empty if this is a trunk port.
1202         </p>
1203       </column>
1204
1205       <column name="trunks">
1206         <p>
1207           For a trunk, native-tagged, or native-untagged port, the 802.1Q VLAN
1208           or VLANs that this port trunks; if it is empty, then the port trunks
1209           all VLANs.  Must be empty if this is an access port.
1210         </p>
1211         <p>
1212           A native-tagged or native-untagged port always trunks its native
1213           VLAN, regardless of whether <ref column="trunks"/> includes that
1214           VLAN.
1215         </p>
1216       </column>
1217
1218       <column name="other_config" key="priority-tags"
1219               type='{"type": "boolean"}'>
1220         <p>
1221           An 802.1Q header contains two important pieces of information: a VLAN
1222           ID and a priority.  A frame with a zero VLAN ID, called a
1223           ``priority-tagged'' frame, is supposed to be treated the same way as
1224           a frame without an 802.1Q header at all (except for the priority).
1225         </p>
1226
1227         <p>
1228           However, some network elements ignore any frame that has 802.1Q
1229           header at all, even when the VLAN ID is zero.  Therefore, by default
1230           Open vSwitch does not output priority-tagged frames, instead omitting
1231           the 802.1Q header entirely if the VLAN ID is zero.  Set this key to
1232           <code>true</code> to enable priority-tagged frames on a port.
1233         </p>
1234
1235         <p>
1236           Regardless of this setting, Open vSwitch omits the 802.1Q header on
1237           output if both the VLAN ID and priority would be zero.
1238         </p>
1239
1240         <p>
1241           All frames output to native-tagged ports have a nonzero VLAN ID, so
1242           this setting is not meaningful on native-tagged ports.
1243         </p>
1244       </column>
1245     </group>
1246
1247     <group title="Bonding Configuration">
1248       <p>A port that has more than one interface is a ``bonded port.'' Bonding
1249       allows for load balancing and fail-over.</p>
1250
1251       <p>
1252         The following types of bonding will work with any kind of upstream
1253         switch.  On the upstream switch, do not configure the interfaces as a
1254         bond:
1255       </p>
1256
1257       <dl>
1258         <dt><code>balance-slb</code></dt>
1259         <dd>
1260           Balances flows among slaves based on source MAC address and output
1261           VLAN, with periodic rebalancing as traffic patterns change.
1262         </dd>
1263
1264         <dt><code>active-backup</code></dt>
1265         <dd>
1266           Assigns all flows to one slave, failing over to a backup slave when
1267           the active slave is disabled.  This is the only bonding mode in which
1268           interfaces may be plugged into different upstream switches.
1269         </dd>
1270       </dl>
1271
1272       <p>
1273         The following modes require the upstream switch to support 802.3ad with
1274         successful LACP negotiation. If LACP negotiation fails and
1275         other-config:lacp-fallback-ab is true, then <code>active-backup</code>
1276         mode is used:
1277       </p>
1278
1279       <dl>
1280         <dt><code>balance-tcp</code></dt>
1281         <dd>
1282           Balances flows among slaves based on L2, L3, and L4 protocol
1283           information such as destination MAC address, IP address, and TCP
1284           port.
1285         </dd>
1286       </dl>
1287
1288       <p>These columns apply only to bonded ports.  Their values are
1289       otherwise ignored.</p>
1290
1291       <column name="bond_mode">
1292         <p>The type of bonding used for a bonded port.  Defaults to
1293         <code>active-backup</code> if unset.
1294         </p>
1295       </column>
1296
1297       <column name="other_config" key="bond-hash-basis"
1298               type='{"type": "integer"}'>
1299         An integer hashed along with flows when choosing output slaves in load
1300         balanced bonds.  When changed, all flows will be assigned different
1301         hash values possibly causing slave selection decisions to change.  Does
1302         not affect bonding modes which do not employ load balancing such as
1303         <code>active-backup</code>.
1304       </column>
1305
1306       <group title="Link Failure Detection">
1307         <p>
1308           An important part of link bonding is detecting that links are down so
1309           that they may be disabled.  These settings determine how Open vSwitch
1310           detects link failure.
1311         </p>
1312
1313         <column name="other_config" key="bond-detect-mode"
1314                 type='{"type": "string", "enum": ["set", ["carrier", "miimon"]]}'>
1315           The means used to detect link failures.  Defaults to
1316           <code>carrier</code> which uses each interface's carrier to detect
1317           failures.  When set to <code>miimon</code>, will check for failures
1318           by polling each interface's MII.
1319         </column>
1320
1321         <column name="other_config" key="bond-miimon-interval"
1322                 type='{"type": "integer"}'>
1323           The interval, in milliseconds, between successive attempts to poll
1324           each interface's MII.  Relevant only when <ref column="other_config"
1325           key="bond-detect-mode"/> is <code>miimon</code>.
1326         </column>
1327
1328         <column name="bond_updelay">
1329           <p>
1330             The number of milliseconds for which the link must stay up on an
1331             interface before the interface is considered to be up.  Specify
1332             <code>0</code> to enable the interface immediately.
1333           </p>
1334
1335           <p>
1336             This setting is honored only when at least one bonded interface is
1337             already enabled.  When no interfaces are enabled, then the first
1338             bond interface to come up is enabled immediately.
1339           </p>
1340         </column>
1341
1342         <column name="bond_downdelay">
1343           The number of milliseconds for which the link must stay down on an
1344           interface before the interface is considered to be down.  Specify
1345           <code>0</code> to disable the interface immediately.
1346         </column>
1347       </group>
1348
1349       <group title="LACP Configuration">
1350         <p>
1351           LACP, the Link Aggregation Control Protocol, is an IEEE standard that
1352           allows switches to automatically detect that they are connected by
1353           multiple links and aggregate across those links.  These settings
1354           control LACP behavior.
1355         </p>
1356
1357         <column name="lacp">
1358           Configures LACP on this port.  LACP allows directly connected
1359           switches to negotiate which links may be bonded.  LACP may be enabled
1360           on non-bonded ports for the benefit of any switches they may be
1361           connected to.  <code>active</code> ports are allowed to initiate LACP
1362           negotiations.  <code>passive</code> ports are allowed to participate
1363           in LACP negotiations initiated by a remote switch, but not allowed to
1364           initiate such negotiations themselves.  If LACP is enabled on a port
1365           whose partner switch does not support LACP, the bond will be
1366           disabled, unless other-config:lacp-fallback-ab is set to true.
1367           Defaults to <code>off</code> if unset.
1368         </column>
1369
1370         <column name="other_config" key="lacp-system-id">
1371           The LACP system ID of this <ref table="Port"/>.  The system ID of a
1372           LACP bond is used to identify itself to its partners.  Must be a
1373           nonzero MAC address. Defaults to the bridge Ethernet address if
1374           unset.
1375         </column>
1376
1377         <column name="other_config" key="lacp-system-priority"
1378                 type='{"type": "integer", "minInteger": 1, "maxInteger": 65535}'>
1379           The LACP system priority of this <ref table="Port"/>.  In LACP
1380           negotiations, link status decisions are made by the system with the
1381           numerically lower priority.
1382         </column>
1383
1384         <column name="other_config" key="lacp-time"
1385           type='{"type": "string", "enum": ["set", ["fast", "slow"]]}'>
1386           <p>
1387             The LACP timing which should be used on this <ref table="Port"/>.
1388             By default <code>slow</code> is used.  When configured to be
1389             <code>fast</code> LACP heartbeats are requested at a rate of once
1390             per second causing connectivity problems to be detected more
1391             quickly.  In <code>slow</code> mode, heartbeats are requested at a
1392             rate of once every 30 seconds.
1393           </p>
1394         </column>
1395
1396         <column name="other_config" key="lacp-fallback-ab"
1397           type='{"type": "boolean"}'>
1398           <p>
1399             Determines the behavior of openvswitch bond in LACP mode. If
1400             the partner switch does not support LACP, setting this option
1401             to <code>true</code> allows openvswitch to fallback to
1402             active-backup. If the option is set to <code>false</code>, the
1403             bond will be disabled. In both the cases, once the partner switch
1404             is configured to LACP mode, the bond will use LACP.
1405           </p>
1406         </column>
1407       </group>
1408
1409       <group title="Rebalancing Configuration">
1410         <p>
1411           These settings control behavior when a bond is in
1412           <code>balance-slb</code> or <code>balance-tcp</code> mode.
1413         </p>
1414
1415         <column name="other_config" key="bond-rebalance-interval"
1416                 type='{"type": "integer", "minInteger": 0, "maxInteger": 10000}'>
1417           For a load balanced bonded port, the number of milliseconds between
1418           successive attempts to rebalance the bond, that is, to move flows
1419           from one interface on the bond to another in an attempt to keep usage
1420           of each interface roughly equal.  If zero, load balancing is disabled
1421           on the bond (link failure still cause flows to move).  If
1422           less than 1000ms, the rebalance interval will be 1000ms.
1423         </column>
1424       </group>
1425
1426       <column name="bond_fake_iface">
1427         For a bonded port, whether to create a fake internal interface with the
1428         name of the port.  Use only for compatibility with legacy software that
1429         requires this.
1430       </column>
1431     </group>
1432
1433     <group title="Spanning Tree Protocol">
1434       <p>
1435         The configuration here is only meaningful, and the status is only
1436         populated, when 802.1D-1998 Spanning Tree Protocol is enabled on the
1437         port's <ref column="Bridge"/> with its <ref column="stp_enable"/>
1438         column.
1439       </p>
1440
1441       <group title="STP Configuration">
1442         <column name="other_config" key="stp-enable"
1443                 type='{"type": "boolean"}'>
1444           When STP is enabled on a bridge, it is enabled by default on all of
1445           the bridge's ports except bond, internal, and mirror ports (which do
1446           not work with STP).  If this column's value is <code>false</code>,
1447           STP is disabled on the port.
1448         </column>
1449
1450         <column name="other_config" key="stp-port-num"
1451                 type='{"type": "integer", "minInteger": 1, "maxInteger": 255}'>
1452           The port number used for the lower 8 bits of the port-id.  By
1453           default, the numbers will be assigned automatically.  If any
1454           port's number is manually configured on a bridge, then they
1455           must all be.
1456         </column>
1457
1458         <column name="other_config" key="stp-port-priority"
1459                 type='{"type": "integer", "minInteger": 0, "maxInteger": 255}'>
1460           The port's relative priority value for determining the root
1461           port (the upper 8 bits of the port-id).  A port with a lower
1462           port-id will be chosen as the root port.  By default, the
1463           priority is 0x80.
1464         </column>
1465
1466         <column name="other_config" key="stp-path-cost"
1467                 type='{"type": "integer", "minInteger": 0, "maxInteger": 65535}'>
1468           Spanning tree path cost for the port.  A lower number indicates
1469           a faster link.  By default, the cost is based on the maximum
1470           speed of the link.
1471         </column>
1472       </group>
1473
1474       <group title="STP Status">
1475         <column name="status" key="stp_port_id">
1476           The port ID used in spanning tree advertisements for this port, as 4
1477           hex digits.  Configuring the port ID is described in the
1478           <code>stp-port-num</code> and <code>stp-port-priority</code> keys of
1479           the <code>other_config</code> section earlier.
1480         </column>
1481         <column name="status" key="stp_state"
1482                 type='{"type": "string", "enum": ["set",
1483                       ["disabled", "listening", "learning",
1484                       "forwarding", "blocking"]]}'>
1485           STP state of the port.
1486         </column>
1487         <column name="status" key="stp_sec_in_state"
1488                 type='{"type": "integer", "minInteger": 0}'>
1489           The amount of time this port has been in the current STP state, in
1490           seconds.
1491         </column>
1492         <column name="status" key="stp_role"
1493                 type='{"type": "string", "enum": ["set",
1494                       ["root", "designated", "alternate"]]}'>
1495           STP role of the port.
1496         </column>
1497       </group>
1498     </group>
1499
1500     <group title="Rapid Spanning Tree Protocol">
1501       <p>
1502         The configuration here is only meaningful, and the status and
1503         statistics are only populated, when 802.1D-1998 Spanning Tree Protocol
1504         is enabled on the port's <ref column="Bridge"/> with its <ref
1505         column="stp_enable"/> column.
1506       </p>
1507
1508       <group title="RSTP Configuration">
1509         <column name="other_config" key="rstp-enable"
1510                 type='{"type": "boolean"}'>
1511           When RSTP is enabled on a bridge, it is enabled by default on all of
1512           the bridge's ports except bond, internal, and mirror ports (which do
1513           not work with RSTP).  If this column's value is <code>false</code>,
1514           RSTP is disabled on the port.
1515         </column>
1516
1517         <column name="other_config" key="rstp-port-priority"
1518                 type='{"type": "integer", "minInteger": 0, "maxInteger": 240}'>
1519           The port's relative priority value for determining the root port, in
1520           multiples of 16.  By default, the port priority is 0x80 (128).  Any
1521           value in the lower 4 bits is rounded off.  The significant upper 4
1522           bits become the upper 4 bits of the port-id.  A port with the lowest
1523           port-id is elected as the root.
1524         </column>
1525
1526         <column name="other_config" key="rstp-port-num"
1527                 type='{"type": "integer", "minInteger": 1, "maxInteger": 4095}'>
1528           The local RSTP port number, used as the lower 12 bits of the port-id.
1529           By default the port numbers are assigned automatically, and typically
1530           may not correspond to the OpenFlow port numbers.  A port with the
1531           lowest port-id is elected as the root.
1532         </column>
1533
1534         <column name="other_config" key="rstp-port-path-cost"
1535                 type='{"type": "integer"}'>
1536           The port path cost.  The Port's contribution, when it is
1537           the Root Port, to the Root Path Cost for the Bridge.  By default the
1538           cost is automatically calculated from the port's speed.
1539         </column>
1540
1541         <column name="other_config" key="rstp-port-admin-edge"
1542                 type='{"type": "boolean"}'>
1543           The admin edge port parameter for the Port.  Default is
1544           <code>false</code>.
1545         </column>
1546
1547         <column name="other_config" key="rstp-port-auto-edge"
1548                 type='{"type": "boolean"}'>
1549           The auto edge port parameter for the Port.  Default is
1550           <code>true</code>.
1551         </column>
1552
1553         <column name="other_config" key="rstp-port-mcheck"
1554                 type='{"type": "boolean"}'>
1555           <p>
1556             The mcheck port parameter for the Port.  Default is
1557             <code>false</code>.  May be set to force the Port Protocol
1558             Migration state machine to transmit RST BPDUs for a
1559             MigrateTime period, to test whether all STP Bridges on the
1560             attached LAN have been removed and the Port can continue to
1561             transmit RSTP BPDUs.  Setting mcheck has no effect if the
1562             Bridge is operating in STP Compatibility mode.
1563           </p>
1564           <p>
1565             Changing the value from <code>true</code> to
1566             <code>false</code> has no effect, but needs to be done if
1567             this behavior is to be triggered again by subsequently
1568             changing the value from <code>false</code> to
1569             <code>true</code>.
1570           </p>
1571         </column>
1572       </group>
1573
1574       <group title="RSTP Status">
1575         <column name="rstp_status" key="rstp_port_id">
1576           The port ID used in spanning tree advertisements for this port, as 4
1577           hex digits.  Configuring the port ID is described in the
1578           <code>rstp-port-num</code> and <code>rstp-port-priority</code> keys
1579           of the <code>other_config</code> section earlier.
1580         </column>
1581         <column name="rstp_status" key="rstp_port_role"
1582                 type='{"type": "string", "enum": ["set",
1583                       ["Root", "Designated", "Alternate", "Backup", "Disabled"]]}'>
1584           RSTP role of the port.
1585         </column>
1586         <column name="rstp_status" key="rstp_port_state"
1587                 type='{"type": "string", "enum": ["set",
1588                       ["Disabled", "Learning", "Forwarding", "Discarding"]]}'>
1589           RSTP state of the port.
1590         </column>
1591         <column name="rstp_status" key="rstp_designated_bridge_id">
1592           The port's RSTP designated bridge ID, in the same form as <ref
1593           column="rstp_status" key="rstp_bridge_id"/> in the <ref
1594           table="Bridge"/> table.
1595         </column>
1596         <column name="rstp_status" key="rstp_designated_port_id">
1597           The port's RSTP designated port ID, as 4 hex digits.
1598         </column>
1599         <column name="rstp_status" key="rstp_designated_path_cost"
1600                 type='{"type": "integer"}'>
1601           The port's RSTP designated path cost.  Lower is better.
1602         </column>
1603       </group>
1604
1605       <group title="RSTP Statistics">
1606         <column name="rstp_statistics" key="rstp_tx_count">
1607           Number of RSTP BPDUs transmitted through this port.
1608         </column>
1609         <column name="rstp_statistics" key="rstp_rx_count">
1610           Number of valid RSTP BPDUs received by this port.
1611         </column>
1612         <column name="rstp_statistics" key="rstp_error_count">
1613           Number of invalid RSTP BPDUs received by this port.
1614         </column>
1615         <column name="rstp_statistics" key="rstp_uptime">
1616           The duration covered by the other RSTP statistics, in seconds.
1617         </column>
1618       </group>
1619     </group>
1620
1621     <group title="Multicast Snooping">
1622       <column name="other_config" key="mcast-snooping-flood"
1623               type='{"type": "boolean"}'>
1624         <p>
1625           If set to <code>true</code>, multicast packets (except Reports) are
1626           unconditionally forwarded to the specific port.
1627         </p>
1628       </column>
1629       <column name="other_config" key="mcast-snooping-flood-reports"
1630               type='{"type": "boolean"}'>
1631         <p>
1632           If set to <code>true</code>, multicast Reports are unconditionally
1633           forwarded to the specific port.
1634         </p>
1635       </column>
1636     </group>
1637
1638     <group title="Other Features">
1639       <column name="qos">
1640         Quality of Service configuration for this port.
1641       </column>
1642
1643       <column name="mac">
1644         The MAC address to use for this port for the purpose of choosing the
1645         bridge's MAC address.  This column does not necessarily reflect the
1646         port's actual MAC address, nor will setting it change the port's actual
1647         MAC address.
1648       </column>
1649
1650       <column name="fake_bridge">
1651         Does this port represent a sub-bridge for its tagged VLAN within the
1652         Bridge?  See ovs-vsctl(8) for more information.
1653       </column>
1654
1655       <column name="external_ids" key="fake-bridge-id-*">
1656         External IDs for a fake bridge (see the <ref column="fake_bridge"/>
1657         column) are defined by prefixing a <ref table="Bridge"/> <ref
1658         table="Bridge" column="external_ids"/> key with
1659         <code>fake-bridge-</code>,
1660         e.g. <code>fake-bridge-xs-network-uuids</code>.
1661       </column>
1662     </group>
1663
1664     <column name="bond_active_slave">
1665       For a bonded port, record the mac address of the current active slave.
1666     </column>
1667
1668     <group title="Port Statistics">
1669       <p>
1670         Key-value pairs that report port statistics.  The update period
1671         is controlled by <ref column="other_config"
1672         key="stats-update-interval"/> in the <code>Open_vSwitch</code> table.
1673       </p>
1674       <group title="Statistics: STP transmit and receive counters">
1675         <column name="statistics" key="stp_tx_count">
1676           Number of STP BPDUs sent on this port by the spanning
1677           tree library.
1678         </column>
1679         <column name="statistics" key="stp_rx_count">
1680           Number of STP BPDUs received on this port and accepted by the
1681           spanning tree library.
1682         </column>
1683         <column name="statistics" key="stp_error_count">
1684           Number of bad STP BPDUs received on this port.  Bad BPDUs
1685           include runt packets and those with an unexpected protocol ID.
1686         </column>
1687       </group>
1688     </group>
1689
1690     <group title="Common Columns">
1691       The overall purpose of these columns is described under <code>Common
1692       Columns</code> at the beginning of this document.
1693
1694       <column name="other_config"/>
1695       <column name="external_ids"/>
1696     </group>
1697   </table>
1698
1699   <table name="Interface" title="One physical network device in a Port.">
1700     An interface within a <ref table="Port"/>.
1701
1702     <group title="Core Features">
1703       <column name="name">
1704         Interface name.  Should be alphanumeric and no more than about 8 bytes
1705         long.  May be the same as the port name, for non-bonded ports.  Must
1706         otherwise be unique among the names of ports, interfaces, and bridges
1707         on a host.
1708       </column>
1709
1710       <column name="ifindex">
1711         A positive interface index as defined for SNMP MIB-II in RFCs 1213 and
1712         2863, if the interface has one, otherwise 0.  The ifindex is useful for
1713         seamless integration with protocols such as SNMP and sFlow.
1714       </column>
1715
1716       <column name="mac_in_use">
1717         The MAC address in use by this interface.
1718       </column>
1719
1720       <column name="mac">
1721         <p>Ethernet address to set for this interface.  If unset then the
1722         default MAC address is used:</p>
1723         <ul>
1724           <li>For the local interface, the default is the lowest-numbered MAC
1725           address among the other bridge ports, either the value of the
1726           <ref table="Port" column="mac"/> in its <ref table="Port"/> record,
1727           if set, or its actual MAC (for bonded ports, the MAC of its slave
1728           whose name is first in alphabetical order).  Internal ports and
1729           bridge ports that are used as port mirroring destinations (see the
1730           <ref table="Mirror"/> table) are ignored.</li>
1731           <li>For other internal interfaces, the default MAC is randomly
1732           generated.</li>
1733           <li>External interfaces typically have a MAC address associated with
1734           their hardware.</li>
1735         </ul>
1736         <p>Some interfaces may not have a software-controllable MAC
1737         address.</p>
1738       </column>
1739
1740       <column name="error">
1741         If the configuration of the port failed, as indicated by -1 in <ref
1742         column="ofport"/>, Open vSwitch sets this column to an error
1743         description in human readable form.  Otherwise, Open vSwitch clears
1744         this column.
1745       </column>
1746
1747       <group title="OpenFlow Port Number">
1748         <p>
1749           When a client adds a new interface, Open vSwitch chooses an OpenFlow
1750           port number for the new port.  If the client that adds the port fills
1751           in <ref column="ofport_request"/>, then Open vSwitch tries to use its
1752           value as the OpenFlow port number.  Otherwise, or if the requested
1753           port number is already in use or cannot be used for another reason,
1754           Open vSwitch automatically assigns a free port number.  Regardless of
1755           how the port number was obtained, Open vSwitch then reports in <ref
1756           column="ofport"/> the port number actually assigned.
1757         </p>
1758
1759         <p>
1760           Open vSwitch limits the port numbers that it automatically assigns to
1761           the range 1 through 32,767, inclusive.  Controllers therefore have
1762           free use of ports 32,768 and up.
1763         </p>
1764
1765         <column name="ofport">
1766           <p>
1767             OpenFlow port number for this interface.  Open vSwitch sets this
1768             column's value, so other clients should treat it as read-only.
1769           </p>
1770           <p>
1771             The OpenFlow ``local'' port (<code>OFPP_LOCAL</code>) is 65,534.
1772             The other valid port numbers are in the range 1 to 65,279,
1773             inclusive.  Value -1 indicates an error adding the interface.
1774           </p>
1775         </column>
1776
1777         <column name="ofport_request"
1778                 type='{"type": "integer", "minInteger": 1, "maxInteger": 65279}'>
1779           <p>
1780             Requested OpenFlow port number for this interface.
1781           </p>
1782
1783           <p>
1784             A client should ideally set this column's value in the same
1785             database transaction that it uses to create the interface.  Open
1786             vSwitch version 2.1 and later will honor a later request for a
1787             specific port number, althuogh it might confuse some controllers:
1788             OpenFlow does not have a way to announce a port number change, so
1789             Open vSwitch represents it over OpenFlow as a port deletion
1790             followed immediately by a port addition.
1791           </p>
1792
1793           <p>
1794             If <ref column="ofport_request"/> is set or changed to some other
1795             port's automatically assigned port number, Open vSwitch chooses a
1796             new port number for the latter port.
1797           </p>
1798         </column>
1799       </group>
1800     </group>
1801
1802     <group title="System-Specific Details">
1803       <column name="type">
1804         <p>
1805           The interface type.  The types supported by a particular instance of
1806           Open vSwitch are listed in the <ref table="Open_vSwitch"
1807           column="iface_types"/> column in the <ref table="Open_vSwitch"/>
1808           table.  The following types are defined:
1809         </p>
1810
1811         <dl>
1812           <dt><code>system</code></dt>
1813           <dd>An ordinary network device, e.g. <code>eth0</code> on Linux.
1814           Sometimes referred to as ``external interfaces'' since they are
1815           generally connected to hardware external to that on which the Open
1816           vSwitch is running.  The empty string is a synonym for
1817           <code>system</code>.</dd>
1818
1819           <dt><code>internal</code></dt>
1820           <dd>A simulated network device that sends and receives traffic.  An
1821           internal interface whose <ref column="name"/> is the same as its
1822           bridge's <ref table="Open_vSwitch" column="name"/> is called the
1823           ``local interface.''  It does not make sense to bond an internal
1824           interface, so the terms ``port'' and ``interface'' are often used
1825           imprecisely for internal interfaces.</dd>
1826
1827           <dt><code>tap</code></dt>
1828           <dd>A TUN/TAP device managed by Open vSwitch.</dd>
1829
1830           <dt><code>geneve</code></dt>
1831           <dd>
1832             An Ethernet over Geneve (<code>http://tools.ietf.org/html/draft-ietf-nvo3-geneve-00</code>)
1833             IPv4 tunnel.
1834
1835             A description of how to match and set Geneve options can be found
1836             in the <code>ovs-ofctl</code> manual page.
1837           </dd>
1838
1839           <dt><code>gre</code></dt>
1840           <dd>
1841             An Ethernet over RFC 2890 Generic Routing Encapsulation over IPv4
1842             tunnel.
1843           </dd>
1844
1845           <dt><code>ipsec_gre</code></dt>
1846           <dd>
1847             An Ethernet over RFC 2890 Generic Routing Encapsulation over IPv4
1848             IPsec tunnel.
1849           </dd>
1850
1851           <dt><code>vxlan</code></dt>
1852           <dd>
1853             <p>
1854               An Ethernet tunnel over the UDP-based VXLAN protocol described in
1855               RFC 7348.
1856             </p>
1857             <p>
1858               Open vSwitch uses UDP destination port 4789.  The source port used for
1859               VXLAN traffic varies on a per-flow basis and is in the ephemeral port
1860               range.
1861             </p>
1862           </dd>
1863
1864           <dt><code>lisp</code></dt>
1865           <dd>
1866             <p>
1867               A layer 3 tunnel over the experimental, UDP-based Locator/ID
1868               Separation Protocol (RFC 6830).
1869             </p>
1870             <p>
1871               Only IPv4 and IPv6 packets are supported by the protocol, and
1872               they are sent and received without an Ethernet header.  Traffic
1873               to/from LISP ports is expected to be configured explicitly, and
1874               the ports are not intended to participate in learning based
1875               switching.  As such, they are always excluded from packet
1876               flooding.
1877             </p>
1878           </dd>
1879
1880           <dt><code>stt</code></dt>
1881           <dd>
1882              The Stateless TCP Tunnel (STT) is particularly useful when tunnel
1883              endpoints are in end-systems, as it utilizes the capabilities of
1884              standard network interface cards to improve performance.  STT utilizes
1885              a TCP-like header inside the IP header. It is stateless, i.e., there is
1886              no TCP connection state of any kind associated with the tunnel.  The
1887              TCP-like header is used to leverage the capabilities of existing
1888              network interface cards, but should not be interpreted as implying
1889              any sort of connection state between endpoints.
1890              Since the STT protocol does not engage in the usual TCP 3-way handshake,
1891              so it will have difficulty traversing stateful firewalls.
1892              The protocol is documented at
1893              http://www.ietf.org/archive/id/draft-davie-stt-06.txt
1894
1895              All traffic uses a default destination port of 7471. STT is only
1896              available in kernel datapath on kernel 3.5 or newer.
1897           </dd>
1898
1899           <dt><code>patch</code></dt>
1900           <dd>
1901             A pair of virtual devices that act as a patch cable.
1902           </dd>
1903
1904           <dt><code>null</code></dt>
1905           <dd>An ignored interface. Deprecated and slated for removal in
1906               February 2013.</dd>
1907         </dl>
1908       </column>
1909     </group>
1910
1911     <group title="Tunnel Options">
1912       <p>
1913         These options apply to interfaces with <ref column="type"/> of
1914         <code>geneve</code>, <code>gre</code>, <code>ipsec_gre</code>,
1915         <code>vxlan</code>, <code>lisp</code> and <code>stt</code>.
1916       </p>
1917
1918       <p>
1919         Each tunnel must be uniquely identified by the combination of <ref
1920         column="type"/>, <ref column="options" key="remote_ip"/>, <ref
1921         column="options" key="local_ip"/>, and <ref column="options"
1922         key="in_key"/>.  If two ports are defined that are the same except one
1923         has an optional identifier and the other does not, the more specific
1924         one is matched first.  <ref column="options" key="in_key"/> is
1925         considered more specific than <ref column="options" key="local_ip"/> if
1926         a port defines one and another port defines the other.
1927       </p>
1928
1929       <column name="options" key="remote_ip">
1930         <p>Required.  The remote tunnel endpoint, one of:</p>
1931
1932         <ul>
1933           <li>
1934             An IPv4 address (not a DNS name), e.g. <code>192.168.0.123</code>.
1935             Only unicast endpoints are supported.
1936           </li>
1937           <li>
1938             The word <code>flow</code>.  The tunnel accepts packets from any
1939             remote tunnel endpoint.  To process only packets from a specific
1940             remote tunnel endpoint, the flow entries may match on the
1941             <code>tun_src</code> field.  When sending packets to a
1942             <code>remote_ip=flow</code> tunnel, the flow actions must
1943             explicitly set the <code>tun_dst</code> field to the IP address of
1944             the desired remote tunnel endpoint, e.g. with a
1945             <code>set_field</code> action.
1946           </li>
1947         </ul>
1948
1949         <p>
1950          The remote tunnel endpoint for any packet received from a tunnel
1951          is available in the <code>tun_src</code> field for matching in the
1952          flow table.
1953         </p>
1954       </column>
1955
1956       <column name="options" key="local_ip">
1957         <p>
1958           Optional.  The tunnel destination IP that received packets must
1959           match.  Default is to match all addresses.  If specified, may be one
1960           of:
1961         </p>
1962
1963         <ul>
1964           <li>
1965             An IPv4 address (not a DNS name), e.g. <code>192.168.12.3</code>.
1966           </li>
1967           <li>
1968             The word <code>flow</code>.  The tunnel accepts packets sent to any
1969             of the local IP addresses of the system running OVS.  To process
1970             only packets sent to a specific IP address, the flow entries may
1971             match on the <code>tun_dst</code> field.  When sending packets to a
1972             <code>local_ip=flow</code> tunnel, the flow actions may
1973             explicitly set the <code>tun_src</code> field to the desired IP
1974             address, e.g. with a <code>set_field</code> action.  However, while
1975             routing the tunneled packet out, the local system may override the
1976             specified address with the local IP address configured for the
1977             outgoing system interface.
1978
1979             <p>
1980               This option is valid only for tunnels also configured with the
1981               <code>remote_ip=flow</code> option.
1982             </p>
1983           </li>
1984         </ul>
1985
1986         <p>
1987           The tunnel destination IP address for any packet received from a
1988           tunnel is available in the <code>tun_dst</code> field for matching in
1989           the flow table.
1990         </p>
1991       </column>
1992
1993       <column name="options" key="in_key">
1994         <p>Optional.  The key that received packets must contain, one of:</p>
1995
1996         <ul>
1997           <li>
1998             <code>0</code>.  The tunnel receives packets with no key or with a
1999             key of 0.  This is equivalent to specifying no <ref column="options"
2000             key="in_key"/> at all.
2001           </li>
2002           <li>
2003             A positive 24-bit (for Geneve, VXLAN, and LISP), 32-bit (for GRE)
2004             or 64-bit (for STT) number.  The tunnel receives only
2005             packets with the specified key.
2006           </li>
2007           <li>
2008             The word <code>flow</code>.  The tunnel accepts packets with any
2009             key.  The key will be placed in the <code>tun_id</code> field for
2010             matching in the flow table.  The <code>ovs-ofctl</code> manual page
2011             contains additional information about matching fields in OpenFlow
2012             flows.
2013           </li>
2014         </ul>
2015
2016         <p>
2017         </p>
2018       </column>
2019
2020       <column name="options" key="out_key">
2021         <p>Optional.  The key to be set on outgoing packets, one of:</p>
2022
2023         <ul>
2024           <li>
2025             <code>0</code>.  Packets sent through the tunnel will have no key.
2026             This is equivalent to specifying no <ref column="options"
2027             key="out_key"/> at all.
2028           </li>
2029           <li>
2030             A positive 24-bit (for Geneve, VXLAN and LISP), 32-bit (for GRE) or
2031             64-bit (for STT) number.  Packets sent through the tunnel
2032             will have the specified key.
2033           </li>
2034           <li>
2035             The word <code>flow</code>.  Packets sent through the tunnel will
2036             have the key set using the <code>set_tunnel</code> Nicira OpenFlow
2037             vendor extension (0 is used in the absence of an action).  The
2038             <code>ovs-ofctl</code> manual page contains additional information
2039             about the Nicira OpenFlow vendor extensions.
2040           </li>
2041         </ul>
2042       </column>
2043
2044       <column name="options" key="key">
2045         Optional.  Shorthand to set <code>in_key</code> and
2046         <code>out_key</code> at the same time.
2047       </column>
2048
2049       <column name="options" key="tos">
2050         Optional.  The value of the ToS bits to be set on the encapsulating
2051         packet.  ToS is interpreted as DSCP and ECN bits, ECN part must be
2052         zero.  It may also be the word <code>inherit</code>, in which case
2053         the ToS will be copied from the inner packet if it is IPv4 or IPv6
2054         (otherwise it will be 0).  The ECN fields are always inherited.
2055         Default is 0.
2056       </column>
2057
2058       <column name="options" key="ttl">
2059         Optional.  The TTL to be set on the encapsulating packet.  It may also
2060         be the word <code>inherit</code>, in which case the TTL will be copied
2061         from the inner packet if it is IPv4 or IPv6 (otherwise it will be the
2062         system default, typically 64).  Default is the system default TTL.
2063       </column>
2064
2065       <column name="options" key="df_default"
2066               type='{"type": "boolean"}'>
2067         Optional.  If enabled, the Don't Fragment bit will be set on tunnel
2068         outer headers to allow path MTU discovery. Default is enabled; set
2069         to <code>false</code> to disable.
2070       </column>
2071
2072       <group title="Tunnel Options: vxlan only">
2073
2074       <column name="options" key="exts">
2075         <p>Optional.  Comma separated list of optional VXLAN extensions to
2076            enable. The following extensions are supported:</p>
2077
2078         <ul>
2079           <li>
2080             <code>gbp</code>: VXLAN-GBP allows to transport the group policy
2081             context of a packet across the VXLAN tunnel to other network
2082             peers. See the field description of <code>tun_gbp_id</code> and
2083             <code>tun_gbp_flags</code> in ovs-ofctl(8) for additional
2084             information.
2085             (<code>https://tools.ietf.org/html/draft-smith-vxlan-group-policy</code>)
2086           </li>
2087         </ul>
2088       </column>
2089
2090           </group>
2091
2092       <group title="Tunnel Options: gre, ipsec_gre, geneve, and vxlan">
2093         <p>
2094           <code>gre</code>, <code>ipsec_gre</code>, <code>geneve</code>, and
2095           <code>vxlan</code> interfaces support these options.
2096         </p>
2097
2098         <column name="options" key="csum" type='{"type": "boolean"}'>
2099           <p>
2100             Optional.  Compute encapsulation header (either GRE or UDP) 
2101             checksums on outgoing packets.  Default is disabled, set to
2102             <code>true</code> to enable.  Checksums present on incoming
2103             packets will be validated regardless of this setting.
2104           </p>
2105
2106           <p>
2107             When using the upstream Linux kernel module, computation of
2108             checksums for <code>geneve</code> and <code>vxlan</code> requires
2109             Linux kernel version 4.0 or higher. <code>gre</code> supports
2110             checksums for all versions of Open vSwitch that support GRE.
2111             The out of tree kernel module distributed as part of OVS
2112             can compute all tunnel checksums on any kernel version that it
2113             is compatible with.
2114           </p>
2115
2116           <p>
2117             This option is supported for <code>ipsec_gre</code>, but not useful
2118             because GRE checksums are weaker than, and redundant with, IPsec
2119             payload authentication.
2120           </p>
2121         </column>
2122       </group>
2123
2124       <group title="Tunnel Options: ipsec_gre only">
2125         <p>
2126           Only <code>ipsec_gre</code> interfaces support these options.
2127         </p>
2128
2129         <column name="options" key="peer_cert">
2130           Required for certificate authentication.  A string containing the
2131           peer's certificate in PEM format.  Additionally the host's
2132           certificate must be specified with the <code>certificate</code>
2133           option.
2134         </column>
2135
2136         <column name="options" key="certificate">
2137           Required for certificate authentication.  The name of a PEM file
2138           containing a certificate that will be presented to the peer during
2139           authentication.
2140         </column>
2141
2142         <column name="options" key="private_key">
2143           Optional for certificate authentication.  The name of a PEM file
2144           containing the private key associated with <code>certificate</code>.
2145           If <code>certificate</code> contains the private key, this option may
2146           be omitted.
2147         </column>
2148
2149         <column name="options" key="psk">
2150           Required for pre-shared key authentication.  Specifies a pre-shared
2151           key for authentication that must be identical on both sides of the
2152           tunnel.
2153         </column>
2154       </group>
2155     </group>
2156
2157     <group title="Patch Options">
2158       <p>
2159         Only <code>patch</code> interfaces support these options.
2160       </p>
2161
2162       <column name="options" key="peer">
2163         The <ref column="name"/> of the <ref table="Interface"/> for the other
2164         side of the patch.  The named <ref table="Interface"/>'s own
2165         <code>peer</code> option must specify this <ref table="Interface"/>'s
2166         name.  That is, the two patch interfaces must have reversed <ref
2167         column="name"/> and <code>peer</code> values.
2168       </column>
2169     </group>
2170
2171     <group title="Interface Status">
2172       <p>
2173         Status information about interfaces attached to bridges, updated every
2174         5 seconds.  Not all interfaces have all of these properties; virtual
2175         interfaces don't have a link speed, for example.  Non-applicable
2176         columns will have empty values.
2177       </p>
2178       <column name="admin_state">
2179         <p>
2180           The administrative state of the physical network link.
2181         </p>
2182       </column>
2183
2184       <column name="link_state">
2185         <p>
2186           The observed state of the physical network link.  This is ordinarily
2187           the link's carrier status.  If the interface's <ref table="Port"/> is
2188           a bond configured for miimon monitoring, it is instead the network
2189           link's miimon status.
2190         </p>
2191       </column>
2192
2193       <column name="link_resets">
2194         <p>
2195           The number of times Open vSwitch has observed the
2196           <ref column="link_state"/> of this <ref table="Interface"/> change.
2197         </p>
2198       </column>
2199
2200       <column name="link_speed">
2201         <p>
2202           The negotiated speed of the physical network link.
2203           Valid values are positive integers greater than 0.
2204         </p>
2205       </column>
2206
2207       <column name="duplex">
2208         <p>
2209           The duplex mode of the physical network link.
2210         </p>
2211       </column>
2212
2213       <column name="mtu">
2214         <p>
2215           The MTU (maximum transmission unit); i.e. the largest
2216           amount of data that can fit into a single Ethernet frame.
2217           The standard Ethernet MTU is 1500 bytes.  Some physical media
2218           and many kinds of virtual interfaces can be configured with
2219           higher MTUs.
2220         </p>
2221         <p>
2222           This column will be empty for an interface that does not
2223           have an MTU as, for example, some kinds of tunnels do not.
2224         </p>
2225       </column>
2226
2227       <column name="lacp_current">
2228         Boolean value indicating LACP status for this interface.  If true, this
2229         interface has current LACP information about its LACP partner.  This
2230         information may be used to monitor the health of interfaces in a LACP
2231         enabled port.  This column will be empty if LACP is not enabled.
2232       </column>
2233
2234       <column name="status">
2235         Key-value pairs that report port status.  Supported status values are
2236         <ref column="type"/>-dependent; some interfaces may not have a valid
2237         <ref column="status" key="driver_name"/>, for example.
2238       </column>
2239
2240       <column name="status" key="driver_name">
2241         The name of the device driver controlling the network adapter.
2242       </column>
2243
2244       <column name="status" key="driver_version">
2245         The version string of the device driver controlling the network
2246         adapter.
2247       </column>
2248
2249       <column name="status" key="firmware_version">
2250         The version string of the network adapter's firmware, if available.
2251       </column>
2252
2253       <column name="status" key="source_ip">
2254         The source IP address used for an IPv4 tunnel end-point, such as
2255         <code>gre</code>.
2256       </column>
2257
2258       <column name="status" key="tunnel_egress_iface">
2259         Egress interface for tunnels.  Currently only relevant for tunnels
2260         on Linux systems, this column will show the name of the interface
2261         which is responsible for routing traffic destined for the configured
2262         <ref column="options" key="remote_ip"/>.  This could be an internal
2263         interface such as a bridge port.
2264       </column>
2265
2266       <column name="status" key="tunnel_egress_iface_carrier"
2267               type='{"type": "string", "enum": ["set", ["down", "up"]]}'>
2268         Whether carrier is detected on <ref column="status"
2269         key="tunnel_egress_iface"/>.
2270       </column>
2271     </group>
2272
2273     <group title="Statistics">
2274       <p>
2275         Key-value pairs that report interface statistics.  The current
2276         implementation updates these counters periodically.  The update period
2277         is controlled by <ref column="other_config"
2278         key="stats-update-interval"/> in the <code>Open_vSwitch</code> table.
2279         Future implementations may update them when an interface is created,
2280         when they are queried (e.g. using an OVSDB <code>select</code>
2281         operation), and just before an interface is deleted due to virtual
2282         interface hot-unplug or VM shutdown, and perhaps at other times, but
2283         not on any regular periodic basis.
2284       </p>
2285       <p>
2286         These are the same statistics reported by OpenFlow in its <code>struct
2287         ofp_port_stats</code> structure.  If an interface does not support a
2288         given statistic, then that pair is omitted.
2289       </p>
2290       <group title="Statistics: Successful transmit and receive counters">
2291         <column name="statistics" key="rx_packets">
2292           Number of received packets.
2293         </column>
2294         <column name="statistics" key="rx_bytes">
2295           Number of received bytes.
2296         </column>
2297         <column name="statistics" key="tx_packets">
2298           Number of transmitted packets.
2299         </column>
2300         <column name="statistics" key="tx_bytes">
2301           Number of transmitted bytes.
2302         </column>
2303       </group>
2304       <group title="Statistics: Receive errors">
2305         <column name="statistics" key="rx_dropped">
2306           Number of packets dropped by RX.
2307         </column>
2308         <column name="statistics" key="rx_frame_err">
2309           Number of frame alignment errors.
2310         </column>
2311         <column name="statistics" key="rx_over_err">
2312           Number of packets with RX overrun.
2313         </column>
2314         <column name="statistics" key="rx_crc_err">
2315           Number of CRC errors.
2316         </column>
2317         <column name="statistics" key="rx_errors">
2318           Total number of receive errors, greater than or equal to the sum of
2319           the above.
2320         </column>
2321       </group>
2322       <group title="Statistics: Transmit errors">
2323         <column name="statistics" key="tx_dropped">
2324           Number of packets dropped by TX.
2325         </column>
2326         <column name="statistics" key="collisions">
2327           Number of collisions.
2328         </column>
2329         <column name="statistics" key="tx_errors">
2330           Total number of transmit errors, greater than or equal to the sum of
2331           the above.
2332         </column>
2333       </group>
2334     </group>
2335
2336     <group title="Ingress Policing">
2337       <p>
2338         These settings control ingress policing for packets received on this
2339         interface.  On a physical interface, this limits the rate at which
2340         traffic is allowed into the system from the outside; on a virtual
2341         interface (one connected to a virtual machine), this limits the rate at
2342         which the VM is able to transmit.
2343       </p>
2344       <p>
2345         Policing is a simple form of quality-of-service that simply drops
2346         packets received in excess of the configured rate.  Due to its
2347         simplicity, policing is usually less accurate and less effective than
2348         egress QoS (which is configured using the <ref table="QoS"/> and <ref
2349         table="Queue"/> tables).
2350       </p>
2351       <p>
2352         Policing is currently implemented only on Linux.  The Linux
2353         implementation uses a simple ``token bucket'' approach:
2354       </p>
2355       <ul>
2356         <li>
2357           The size of the bucket corresponds to <ref
2358           column="ingress_policing_burst"/>.  Initially the bucket is full.
2359         </li>
2360         <li>
2361           Whenever a packet is received, its size (converted to tokens) is
2362           compared to the number of tokens currently in the bucket.  If the
2363           required number of tokens are available, they are removed and the
2364           packet is forwarded.  Otherwise, the packet is dropped.
2365         </li>
2366         <li>
2367           Whenever it is not full, the bucket is refilled with tokens at the
2368           rate specified by <ref column="ingress_policing_rate"/>.
2369         </li>
2370       </ul>
2371       <p>
2372         Policing interacts badly with some network protocols, and especially
2373         with fragmented IP packets.  Suppose that there is enough network
2374         activity to keep the bucket nearly empty all the time.  Then this token
2375         bucket algorithm will forward a single packet every so often, with the
2376         period depending on packet size and on the configured rate.  All of the
2377         fragments of an IP packets are normally transmitted back-to-back, as a
2378         group.  In such a situation, therefore, only one of these fragments
2379         will be forwarded and the rest will be dropped.  IP does not provide
2380         any way for the intended recipient to ask for only the remaining
2381         fragments.  In such a case there are two likely possibilities for what
2382         will happen next: either all of the fragments will eventually be
2383         retransmitted (as TCP will do), in which case the same problem will
2384         recur, or the sender will not realize that its packet has been dropped
2385         and data will simply be lost (as some UDP-based protocols will do).
2386         Either way, it is possible that no forward progress will ever occur.
2387       </p>
2388       <column name="ingress_policing_rate">
2389         <p>
2390           Maximum rate for data received on this interface, in kbps.  Data
2391           received faster than this rate is dropped.  Set to <code>0</code>
2392           (the default) to disable policing.
2393         </p>
2394       </column>
2395
2396       <column name="ingress_policing_burst">
2397         <p>Maximum burst size for data received on this interface, in kb.  The
2398         default burst size if set to <code>0</code> is 1000 kb.  This value
2399         has no effect if <ref column="ingress_policing_rate"/>
2400         is <code>0</code>.</p>
2401         <p>
2402           Specifying a larger burst size lets the algorithm be more forgiving,
2403           which is important for protocols like TCP that react severely to
2404           dropped packets.  The burst size should be at least the size of the
2405           interface's MTU.  Specifying a value that is numerically at least as
2406           large as 10% of <ref column="ingress_policing_rate"/> helps TCP come
2407           closer to achieving the full rate.
2408         </p>
2409       </column>
2410     </group>
2411
2412     <group title="Bidirectional Forwarding Detection (BFD)">
2413       <p>
2414         BFD, defined in RFC 5880 and RFC 5881, allows point-to-point
2415         detection of connectivity failures by occasional transmission of
2416         BFD control messages.  Open vSwitch implements BFD to serve
2417         as a more popular and standards compliant alternative to CFM.
2418       </p>
2419
2420       <p>
2421         BFD operates by regularly transmitting BFD control messages at a rate
2422         negotiated independently in each direction.  Each endpoint specifies
2423         the rate at which it expects to receive control messages, and the rate
2424         at which it is willing to transmit them.  Open vSwitch uses a detection
2425         multiplier of three, meaning that an endpoint signals a connectivity
2426         fault if three consecutive BFD control messages fail to arrive.  In the
2427         case of a unidirectional connectivity issue, the system not receiving
2428         BFD control messages signals the problem to its peer in the messages it
2429         transmits.
2430       </p>
2431
2432       <p>
2433         The Open vSwitch implementation of BFD aims to comply faithfully
2434         with RFC 5880 requirements.  Open vSwitch does not implement the
2435         optional Authentication or ``Echo Mode'' features.
2436       </p>
2437
2438       <group title="BFD Configuration">
2439         <p>
2440           A controller sets up key-value pairs in the <ref column="bfd"/>
2441           column to enable and configure BFD.
2442         </p>
2443
2444         <column name="bfd" key="enable" type='{"type": "boolean"}'>
2445           True to enable BFD on this <ref table="Interface"/>.  If not
2446           specified, BFD will not be enabled by default.
2447         </column>
2448
2449         <column name="bfd" key="min_rx"
2450                 type='{"type": "integer", "minInteger": 1}'>
2451           The shortest interval, in milliseconds, at which this BFD session
2452           offers to receive BFD control messages.  The remote endpoint may
2453           choose to send messages at a slower rate.  Defaults to
2454           <code>1000</code>.
2455         </column>
2456
2457         <column name="bfd" key="min_tx"
2458                 type='{"type": "integer", "minInteger": 1}'>
2459           The shortest interval, in milliseconds, at which this BFD session is
2460           willing to transmit BFD control messages.  Messages will actually be
2461           transmitted at a slower rate if the remote endpoint is not willing to
2462           receive as quickly as specified.  Defaults to <code>100</code>.
2463         </column>
2464
2465         <column name="bfd" key="decay_min_rx" type='{"type": "integer"}'>
2466           An alternate receive interval, in milliseconds, that must be greater
2467           than or equal to <ref column="bfd" key="min_rx"/>.  The
2468           implementation switches from <ref column="bfd" key="min_rx"/> to <ref
2469           column="bfd" key="decay_min_rx"/> when there is no obvious incoming
2470           data traffic at the interface, to reduce the CPU and bandwidth cost
2471           of monitoring an idle interface.  This feature may be disabled by
2472           setting a value of 0.  This feature is reset whenever <ref
2473           column="bfd" key="decay_min_rx"/> or <ref column="bfd" key="min_rx"/>
2474           changes.
2475         </column>
2476
2477         <column name="bfd" key="forwarding_if_rx" type='{"type": "boolean"}'>
2478           When <code>true</code>, traffic received on the
2479           <ref table="Interface"/> is used to indicate the capability of packet
2480           I/O.  BFD control packets are still transmitted and received.  At
2481           least one BFD control packet must be received every 100 * <ref
2482           column="bfd" key="min_rx"/> amount of time.  Otherwise, even if
2483           traffic are received, the <ref column="bfd" key="forwarding"/>
2484           will be <code>false</code>.
2485         </column>
2486
2487         <column name="bfd" key="cpath_down" type='{"type": "boolean"}'>
2488           Set to true to notify the remote endpoint that traffic should not be
2489           forwarded to this system for some reason other than a connectivty
2490           failure on the interface being monitored.  The typical underlying
2491           reason is ``concatenated path down,'' that is, that connectivity
2492           beyond the local system is down.  Defaults to false.
2493         </column>
2494
2495         <column name="bfd" key="check_tnl_key" type='{"type": "boolean"}'>
2496           Set to true to make BFD accept only control messages with a tunnel
2497           key of zero.  By default, BFD accepts control messages with any
2498           tunnel key.
2499         </column>
2500
2501         <column name="bfd" key="bfd_local_src_mac">
2502           Set to an Ethernet address in the form
2503           <var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>
2504           to set the MAC used as source for transmitted BFD packets.  The
2505           default is the mac address of the BFD enabled interface.
2506         </column>
2507
2508         <column name="bfd" key="bfd_local_dst_mac">
2509           Set to an Ethernet address in the form
2510           <var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>
2511           to set the MAC used as destination for transmitted BFD packets.  The
2512           default is <code>00:23:20:00:00:01</code>.
2513         </column>
2514
2515         <column name="bfd" key="bfd_remote_dst_mac">
2516           Set to an Ethernet address in the form
2517           <var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>
2518           to set the MAC used for checking the destination of received BFD packets.
2519           Packets with different destination MAC will not be considered as BFD packets.
2520           If not specified the destination MAC address of received BFD packets
2521           are not checked.
2522         </column>
2523
2524         <column name="bfd" key="bfd_src_ip">
2525           Set to an IPv4 address to set the IP address used as source for
2526           transmitted BFD packets.  The default is <code>169.254.1.1</code>.
2527         </column>
2528
2529         <column name="bfd" key="bfd_dst_ip">
2530           Set to an IPv4 address to set the IP address used as destination
2531           for transmitted BFD packets.  The default is <code>169.254.1.0</code>.
2532         </column>
2533       </group>
2534
2535       <group title="BFD Status">
2536         <p>
2537           The switch sets key-value pairs in the <ref column="bfd_status"/>
2538           column to report the status of BFD on this interface.  When BFD is
2539           not enabled, with <ref column="bfd" key="enable"/>, the switch clears
2540           all key-value pairs from <ref column="bfd_status"/>.
2541         </p>
2542
2543         <column name="bfd_status" key="state"
2544                 type='{"type": "string",
2545                       "enum": ["set", ["admin_down", "down", "init", "up"]]}'>
2546           Reports the state of the BFD session.  The BFD session is fully
2547           healthy and negotiated if <code>UP</code>.
2548         </column>
2549
2550         <column name="bfd_status" key="forwarding" type='{"type": "boolean"}'>
2551           Reports whether the BFD session believes this <ref
2552           table="Interface"/> may be used to forward traffic.  Typically this
2553           means the local session is signaling <code>UP</code>, and the remote
2554           system isn't signaling a problem such as concatenated path down.
2555         </column>
2556
2557         <column name="bfd_status" key="diagnostic">
2558           In case of a problem, set to an error message that reports what the
2559           local BFD session thinks is wrong.  The error messages are defined
2560           in section 4.1 of [RFC 5880].
2561         </column>
2562
2563         <column name="bfd_status" key="remote_state"
2564                 type='{"type": "string",
2565                       "enum": ["set", ["admin_down", "down", "init", "up"]]}'>
2566           Reports the state of the remote endpoint's BFD session.
2567         </column>
2568
2569         <column name="bfd_status" key="remote_diagnostic">
2570           In case of a problem, set to an error message that reports what the
2571           remote endpoint's BFD session thinks is wrong.  The error messages
2572           are defined in section 4.1 of [RFC 5880].
2573         </column>
2574
2575         <column name="bfd_status" key="flap_count"
2576           type='{"type": "integer", "minInteger": 0}'>
2577           Counts the number of <ref column="bfd_status" key="forwarding" />
2578           flaps since start.  A flap is considered as a change of the
2579           <ref column="bfd_status" key="forwarding" /> value.
2580         </column>
2581       </group>
2582     </group>
2583
2584     <group title="Connectivity Fault Management">
2585       <p>
2586         802.1ag Connectivity Fault Management (CFM) allows a group of
2587         Maintenance Points (MPs) called a Maintenance Association (MA) to
2588         detect connectivity problems with each other.  MPs within a MA should
2589         have complete and exclusive interconnectivity.  This is verified by
2590         occasionally broadcasting Continuity Check Messages (CCMs) at a
2591         configurable transmission interval.
2592       </p>
2593
2594       <p>
2595         According to the 802.1ag specification, each Maintenance Point should
2596         be configured out-of-band with a list of Remote Maintenance Points it
2597         should have connectivity to.  Open vSwitch differs from the
2598         specification in this area.  It simply assumes the link is faulted if
2599         no Remote Maintenance Points are reachable, and considers it not
2600         faulted otherwise.
2601       </p>
2602
2603       <p>
2604           When operating over tunnels which have no <code>in_key</code>, or an
2605           <code>in_key</code> of <code>flow</code>.  CFM will only accept CCMs
2606           with a tunnel key of zero.
2607       </p>
2608
2609       <column name="cfm_mpid">
2610         <p>
2611           A Maintenance Point ID (MPID) uniquely identifies each endpoint
2612           within a Maintenance Association.  The MPID is used to identify this
2613           endpoint to other Maintenance Points in the MA.  Each end of a link
2614           being monitored should have a different MPID.  Must be configured to
2615           enable CFM on this <ref table="Interface"/>.
2616         </p>
2617         <p>
2618           According to the 802.1ag specification, MPIDs can only range between
2619           [1, 8191].  However, extended mode (see <ref column="other_config"
2620           key="cfm_extended"/>) supports eight byte MPIDs.
2621         </p>
2622       </column>
2623
2624       <column name="cfm_flap_count">
2625         Counts the number of cfm fault flapps since boot.  A flap is
2626         considered to be a change of the <ref column="cfm_fault"/> value.
2627       </column>
2628
2629       <column name="cfm_fault">
2630         <p>
2631           Indicates a connectivity fault triggered by an inability to receive
2632           heartbeats from any remote endpoint.  When a fault is triggered on
2633           <ref table="Interface"/>s participating in bonds, they will be
2634           disabled.
2635         </p>
2636         <p>
2637           Faults can be triggered for several reasons.  Most importantly they
2638           are triggered when no CCMs are received for a period of 3.5 times the
2639           transmission interval. Faults are also triggered when any CCMs
2640           indicate that a Remote Maintenance Point is not receiving CCMs but
2641           able to send them.  Finally, a fault is triggered if a CCM is
2642           received which indicates unexpected configuration.  Notably, this
2643           case arises when a CCM is received which advertises the local MPID.
2644         </p>
2645       </column>
2646
2647       <column name="cfm_fault_status" key="recv">
2648         Indicates a CFM fault was triggered due to a lack of CCMs received on
2649         the <ref table="Interface"/>.
2650       </column>
2651
2652       <column name="cfm_fault_status" key="rdi">
2653         Indicates a CFM fault was triggered due to the reception of a CCM with
2654         the RDI bit flagged.  Endpoints set the RDI bit in their CCMs when they
2655         are not receiving CCMs themselves.  This typically indicates a
2656         unidirectional connectivity failure.
2657       </column>
2658
2659       <column name="cfm_fault_status" key="maid">
2660         Indicates a CFM fault was triggered due to the reception of a CCM with
2661         a MAID other than the one Open vSwitch uses.  CFM broadcasts are tagged
2662         with an identification number in addition to the MPID called the MAID.
2663         Open vSwitch only supports receiving CCM broadcasts tagged with the
2664         MAID it uses internally.
2665       </column>
2666
2667       <column name="cfm_fault_status" key="loopback">
2668         Indicates a CFM fault was triggered due to the reception of a CCM
2669         advertising the same MPID configured in the <ref column="cfm_mpid"/>
2670         column of this <ref table="Interface"/>.  This may indicate a loop in
2671         the network.
2672       </column>
2673
2674       <column name="cfm_fault_status" key="overflow">
2675         Indicates a CFM fault was triggered because the CFM module received
2676         CCMs from more remote endpoints than it can keep track of.
2677       </column>
2678
2679       <column name="cfm_fault_status" key="override">
2680         Indicates a CFM fault was manually triggered by an administrator using
2681         an <code>ovs-appctl</code> command.
2682       </column>
2683
2684       <column name="cfm_fault_status" key="interval">
2685         Indicates a CFM fault was triggered due to the reception of a CCM
2686         frame having an invalid interval.
2687       </column>
2688
2689       <column name="cfm_remote_opstate">
2690         <p>When in extended mode, indicates the operational state of the
2691           remote endpoint as either <code>up</code> or <code>down</code>.  See
2692           <ref column="other_config" key="cfm_opstate"/>.
2693         </p>
2694       </column>
2695
2696       <column name="cfm_health">
2697         <p>
2698           Indicates the health of the interface as a percentage of CCM frames
2699           received over 21 <ref column="other_config" key="cfm_interval"/>s.
2700           The health of an interface is undefined if it is communicating with
2701           more than one <ref column="cfm_remote_mpids"/>.  It reduces if
2702           healthy heartbeats are not received at the expected rate, and
2703           gradually improves as healthy heartbeats are received at the desired
2704           rate. Every 21 <ref column="other_config" key="cfm_interval"/>s, the
2705           health of the interface is refreshed.
2706         </p>
2707         <p>
2708           As mentioned above, the faults can be triggered for several reasons.
2709           The link health will deteriorate even if heartbeats are received but
2710           they are reported to be unhealthy.  An unhealthy heartbeat in this
2711           context is a heartbeat for which either some fault is set or is out
2712           of sequence.  The interface health can be 100 only on receiving
2713           healthy heartbeats at the desired rate.
2714         </p>
2715       </column>
2716
2717       <column name="cfm_remote_mpids">
2718         When CFM is properly configured, Open vSwitch will occasionally
2719         receive CCM broadcasts.  These broadcasts contain the MPID of the
2720         sending Maintenance Point.  The list of MPIDs from which this
2721         <ref table="Interface"/> is receiving broadcasts from is regularly
2722         collected and written to this column.
2723       </column>
2724
2725       <column name="other_config" key="cfm_interval"
2726               type='{"type": "integer"}'>
2727         <p>
2728           The interval, in milliseconds, between transmissions of CFM
2729           heartbeats.  Three missed heartbeat receptions indicate a
2730           connectivity fault.
2731         </p>
2732
2733         <p>
2734           In standard operation only intervals of 3, 10, 100, 1,000, 10,000,
2735           60,000, or 600,000 ms are supported.  Other values will be rounded
2736           down to the nearest value on the list.  Extended mode (see <ref
2737           column="other_config" key="cfm_extended"/>) supports any interval up
2738           to 65,535 ms.  In either mode, the default is 1000 ms.
2739         </p>
2740
2741         <p>We do not recommend using intervals less than 100 ms.</p>
2742       </column>
2743
2744       <column name="other_config" key="cfm_extended"
2745               type='{"type": "boolean"}'>
2746         When <code>true</code>, the CFM module operates in extended mode. This
2747         causes it to use a nonstandard destination address to avoid conflicting
2748         with compliant implementations which may be running concurrently on the
2749         network. Furthermore, extended mode increases the accuracy of the
2750         <code>cfm_interval</code> configuration parameter by breaking wire
2751         compatibility with 802.1ag compliant implementations.  And extended
2752         mode allows eight byte MPIDs.  Defaults to <code>false</code>.
2753       </column>
2754
2755       <column name="other_config" key="cfm_demand" type='{"type": "boolean"}'>
2756         <p>
2757           When <code>true</code>, and
2758           <ref column="other_config" key="cfm_extended"/> is true, the CFM
2759           module operates in demand mode.  When in demand mode, traffic
2760           received on the <ref table="Interface"/> is used to indicate
2761           liveness.  CCMs are still transmitted and received.  At least one
2762           CCM must be received every 100 * <ref column="other_config"
2763           key="cfm_interval"/> amount of time.  Otherwise, even if traffic
2764           are received, the CFM module will raise the connectivity fault.
2765         </p>
2766
2767         <p>
2768             Demand mode has a couple of caveats:
2769           <ul>
2770             <li>
2771               To ensure that ovs-vswitchd has enough time to pull statistics
2772               from the datapath, the fault detection interval is set to
2773               3.5 * MAX(<ref column="other_config" key="cfm_interval"/>, 500)
2774               ms.
2775             </li>
2776
2777             <li>
2778               To avoid ambiguity, demand mode disables itself when there are
2779               multiple remote maintenance points.
2780             </li>
2781
2782             <li>
2783               If the <ref table="Interface"/> is heavily congested, CCMs
2784               containing the <ref column="other_config" key="cfm_opstate"/>
2785               status may be dropped causing changes in the operational state to
2786               be delayed.  Similarly, if CCMs containing the RDI bit are not
2787               received, unidirectional link failures may not be detected.
2788             </li>
2789           </ul>
2790         </p>
2791       </column>
2792
2793       <column name="other_config" key="cfm_opstate"
2794               type='{"type": "string", "enum": ["set", ["down", "up"]]}'>
2795         When <code>down</code>, the CFM module marks all CCMs it generates as
2796         operationally down without triggering a fault.  This allows remote
2797         maintenance points to choose not to forward traffic to the
2798         <ref table="Interface"/> on which this CFM module is running.
2799         Currently, in Open vSwitch, the opdown bit of CCMs affects
2800         <ref table="Interface"/>s participating in bonds, and the bundle
2801         OpenFlow action. This setting is ignored when CFM is not in extended
2802         mode.  Defaults to <code>up</code>.
2803       </column>
2804
2805       <column name="other_config" key="cfm_ccm_vlan"
2806         type='{"type": "integer", "minInteger": 1, "maxInteger": 4095}'>
2807         When set, the CFM module will apply a VLAN tag to all CCMs it generates
2808         with the given value.  May be the string <code>random</code> in which
2809         case each CCM will be tagged with a different randomly generated VLAN.
2810       </column>
2811
2812       <column name="other_config" key="cfm_ccm_pcp"
2813         type='{"type": "integer", "minInteger": 1, "maxInteger": 7}'>
2814         When set, the CFM module will apply a VLAN tag to all CCMs it generates
2815         with the given PCP value, the VLAN ID of the tag is governed by the
2816         value of <ref column="other_config" key="cfm_ccm_vlan"/>. If
2817         <ref column="other_config" key="cfm_ccm_vlan"/> is unset, a VLAN ID of
2818         zero is used.
2819       </column>
2820
2821     </group>
2822
2823     <group title="Bonding Configuration">
2824       <column name="other_config" key="lacp-port-id"
2825               type='{"type": "integer", "minInteger": 1, "maxInteger": 65535}'>
2826         The LACP port ID of this <ref table="Interface"/>.  Port IDs are
2827         used in LACP negotiations to identify individual ports
2828         participating in a bond.
2829       </column>
2830
2831       <column name="other_config" key="lacp-port-priority"
2832               type='{"type": "integer", "minInteger": 1, "maxInteger": 65535}'>
2833         The LACP port priority of this <ref table="Interface"/>.  In LACP
2834         negotiations <ref table="Interface"/>s with numerically lower
2835         priorities are preferred for aggregation.
2836       </column>
2837
2838       <column name="other_config" key="lacp-aggregation-key"
2839               type='{"type": "integer", "minInteger": 1, "maxInteger": 65535}'>
2840         The LACP aggregation key of this <ref table="Interface"/>.  <ref
2841         table="Interface"/>s with different aggregation keys may not be active
2842         within a given <ref table="Port"/> at the same time.
2843       </column>
2844     </group>
2845
2846     <group title="Virtual Machine Identifiers">
2847       <p>
2848         These key-value pairs specifically apply to an interface that
2849         represents a virtual Ethernet interface connected to a virtual
2850         machine.  These key-value pairs should not be present for other types
2851         of interfaces.  Keys whose names end in <code>-uuid</code> have
2852         values that uniquely identify the entity in question.  For a Citrix
2853         XenServer hypervisor, these values are UUIDs in RFC 4122 format.
2854         Other hypervisors may use other formats.
2855       </p>
2856
2857       <column name="external_ids" key="attached-mac">
2858         The MAC address programmed into the ``virtual hardware'' for this
2859         interface, in the form
2860         <var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>.
2861         For Citrix XenServer, this is the value of the <code>MAC</code> field
2862         in the VIF record for this interface.
2863       </column>
2864
2865       <column name="external_ids" key="iface-id">
2866         A system-unique identifier for the interface.  On XenServer, this will
2867         commonly be the same as <ref column="external_ids" key="xs-vif-uuid"/>.
2868       </column>
2869
2870       <column name="external_ids" key="iface-status"
2871               type='{"type": "string",
2872                     "enum": ["set", ["active", "inactive"]]}'>
2873         <p>
2874           Hypervisors may sometimes have more than one interface associated
2875           with a given <ref column="external_ids" key="iface-id"/>, only one of
2876           which is actually in use at a given time.  For example, in some
2877           circumstances XenServer has both a ``tap'' and a ``vif'' interface
2878           for a single <ref column="external_ids" key="iface-id"/>, but only
2879           uses one of them at a time.  A hypervisor that behaves this way must
2880           mark the currently in use interface <code>active</code> and the
2881           others <code>inactive</code>.  A hypervisor that never has more than
2882           one interface for a given <ref column="external_ids" key="iface-id"/>
2883           may mark that interface <code>active</code> or omit <ref
2884           column="external_ids" key="iface-status"/> entirely.
2885         </p>
2886
2887         <p>
2888           During VM migration, a given <ref column="external_ids"
2889           key="iface-id"/> might transiently be marked <code>active</code> on
2890           two different hypervisors.  That is, <code>active</code> means that
2891           this <ref column="external_ids" key="iface-id"/> is the active
2892           instance within a single hypervisor, not in a broader scope.
2893           There is one exception: some hypervisors support ``migration'' from a
2894           given hypervisor to itself (most often for test purposes).  During
2895           such a ``migration,'' two instances of a single <ref
2896           column="external_ids" key="iface-id"/> might both be briefly marked
2897           <code>active</code> on a single hypervisor.
2898         </p>
2899       </column>
2900
2901       <column name="external_ids" key="xs-vif-uuid">
2902         The virtual interface associated with this interface.
2903       </column>
2904
2905       <column name="external_ids" key="xs-network-uuid">
2906         The virtual network to which this interface is attached.
2907       </column>
2908
2909       <column name="external_ids" key="vm-id">
2910         The VM to which this interface belongs. On XenServer, this will be the
2911         same as <ref column="external_ids" key="xs-vm-uuid"/>.
2912       </column>
2913
2914       <column name="external_ids" key="xs-vm-uuid">
2915         The VM to which this interface belongs.
2916       </column>
2917     </group>
2918
2919     <group title="VLAN Splinters">
2920       <p>
2921         The ``VLAN splinters'' feature increases Open vSwitch compatibility
2922         with buggy network drivers in old versions of Linux that do not
2923         properly support VLANs when VLAN devices are not used, at some cost
2924         in memory and performance.
2925       </p>
2926
2927       <p>
2928         When VLAN splinters are enabled on a particular interface, Open vSwitch
2929         creates a VLAN device for each in-use VLAN.  For sending traffic tagged
2930         with a VLAN on the interface, it substitutes the VLAN device.  Traffic
2931         received on the VLAN device is treated as if it had been received on
2932         the interface on the particular VLAN.
2933       </p>
2934
2935       <p>
2936         VLAN splinters consider a VLAN to be in use if:
2937       </p>
2938
2939       <ul>
2940         <li>
2941           The VLAN is the <ref table="Port" column="tag"/> value in any <ref
2942           table="Port"/> record.
2943         </li>
2944
2945         <li>
2946           The VLAN is listed within the <ref table="Port" column="trunks"/>
2947           column of the <ref table="Port"/> record of an interface on which
2948           VLAN splinters are enabled.
2949
2950           An empty <ref table="Port" column="trunks"/> does not influence the
2951           in-use VLANs: creating 4,096 VLAN devices is impractical because it
2952           will exceed the current 1,024 port per datapath limit.
2953         </li>
2954
2955         <li>
2956           An OpenFlow flow within any bridge matches the VLAN.
2957         </li>
2958       </ul>
2959
2960       <p>
2961         The same set of in-use VLANs applies to every interface on which VLAN
2962         splinters are enabled.  That is, the set is not chosen separately for
2963         each interface but selected once as the union of all in-use VLANs based
2964         on the rules above.
2965       </p>
2966
2967       <p>
2968         It does not make sense to enable VLAN splinters on an interface for an
2969         access port, or on an interface that is not a physical port.
2970       </p>
2971
2972       <p>
2973         VLAN splinters are deprecated.  When broken device drivers are no
2974         longer in widespread use, we will delete this feature.
2975       </p>
2976
2977       <column name="other_config" key="enable-vlan-splinters"
2978               type='{"type": "boolean"}'>
2979         <p>
2980           Set to <code>true</code> to enable VLAN splinters on this interface.
2981           Defaults to <code>false</code>.
2982         </p>
2983
2984         <p>
2985           VLAN splinters increase kernel and userspace memory overhead, so do
2986           not use them unless they are needed.
2987         </p>
2988
2989         <p>
2990           VLAN splinters do not support 802.1p priority tags.  Received
2991           priorities will appear to be 0, regardless of their actual values,
2992           and priorities on transmitted packets will also be cleared to 0.
2993         </p>
2994       </column>
2995     </group>
2996
2997     <group title="Auto Attach Configuration">
2998       <p>
2999           Auto Attach configuration for a particular interface.
3000       </p>
3001
3002       <column name="lldp" key="enable" type='{"type": "boolean"}'>
3003           True to enable LLDP on this <ref table="Interface"/>.  If not
3004           specified, LLDP will be disabled by default.
3005       </column>
3006     </group>
3007
3008     <group title="Common Columns">
3009       The overall purpose of these columns is described under <code>Common
3010       Columns</code> at the beginning of this document.
3011
3012       <column name="other_config"/>
3013       <column name="external_ids"/>
3014     </group>
3015   </table>
3016
3017   <table name="Flow_Table" title="OpenFlow table configuration">
3018     <p>Configuration for a particular OpenFlow table.</p>
3019
3020     <column name="name">
3021       The table's name.  Set this column to change the name that controllers
3022       will receive when they request table statistics, e.g. <code>ovs-ofctl
3023       dump-tables</code>.  The name does not affect switch behavior.
3024     </column>
3025
3026     <group title="Eviction Policy">
3027       <p>
3028         Open vSwitch supports limiting the number of flows that may be
3029         installed in a flow table, via the <ref column="flow_limit"/> column.
3030         When adding a flow would exceed this limit, by default Open vSwitch
3031         reports an error, but there are two ways to configure Open vSwitch to
3032         instead delete (``evict'') a flow to make room for the new one:
3033       </p>
3034
3035       <ul>
3036         <li>
3037           Set the <ref column="overflow_policy"/> column to <code>evict</code>.
3038         </li>
3039
3040         <li>
3041           Send an OpenFlow 1.4+ ``table mod request'' to enable eviction for
3042           the flow table (e.g. <code>ovs-ofctl -O OpenFlow14 mod-table br0 0
3043           evict</code> to enable eviction on flow table 0 of bridge
3044           <code>br0</code>).
3045         </li>
3046       </ul>
3047
3048       <p>
3049         When a flow must be evicted due to overflow, the flow to evict is
3050         chosen through an approximation of the following algorithm.  This
3051         algorithm is used regardless of how eviction was enabled:
3052       </p>
3053
3054       <ol>
3055         <li>
3056           Divide the flows in the table into groups based on the values of the
3057           fields or subfields specified in the <ref column="groups"/> column,
3058           so that all of the flows in a given group have the same values for
3059           those fields.  If a flow does not specify a given field, that field's
3060           value is treated as 0.  If <ref column="groups"/> is empty, then all
3061           of the flows in the flow table are treated as a single group.
3062         </li>
3063
3064         <li>
3065           Consider the flows in the largest group, that is, the group that
3066           contains the greatest number of flows.  If two or more groups all
3067           have the same largest number of flows, consider the flows in all of
3068           those groups.
3069         </li>
3070
3071         <li>
3072           If the flows under consideration have different importance values,
3073           eliminate from consideration any flows except those with the lowest
3074           importance.  (``Importance,'' a 16-bit integer value attached to each
3075           flow, was introduced in OpenFlow 1.4.  Flows inserted with older
3076           versions of OpenFlow always have an importance of 0.)
3077         </li>
3078
3079         <li>
3080           Among the flows under consideration, choose the flow that expires
3081           soonest for eviction.
3082         </li>
3083       </ol>
3084
3085       <p>
3086         The eviction process only considers flows that have an idle timeout
3087         or a hard timeout.  That is, eviction never deletes permanent flows.
3088         (Permanent flows do count against <ref column="flow_limit"/>.)
3089       </p>
3090
3091       <column name="flow_limit">
3092         If set, limits the number of flows that may be added to the table.
3093         Open vSwitch may limit the number of flows in a table for other
3094         reasons, e.g. due to hardware limitations or for resource availability
3095         or performance reasons.
3096       </column>
3097
3098       <column name="overflow_policy">
3099         <p>
3100           Controls the switch's behavior when an OpenFlow flow table
3101           modification request would add flows in excess of <ref
3102           column="flow_limit"/>.  The supported values are:
3103         </p>
3104
3105         <dl>
3106           <dt><code>refuse</code></dt>
3107           <dd>
3108             Refuse to add the flow or flows.  This is also the default policy
3109             when <ref column="overflow_policy"/> is unset.
3110           </dd>
3111
3112           <dt><code>evict</code></dt>
3113           <dd>
3114             Delete a flow chosen according to the algorithm described above.
3115           </dd>
3116         </dl>
3117       </column>
3118
3119       <column name="groups">
3120         <p>
3121           When <ref column="overflow_policy"/> is <code>evict</code>, this
3122           controls how flows are chosen for eviction when the flow table would
3123           otherwise exceed <ref column="flow_limit"/> flows.  Its value is a
3124           set of NXM fields or sub-fields, each of which takes one of the forms
3125           <code><var>field</var>[]</code> or
3126           <code><var>field</var>[<var>start</var>..<var>end</var>]</code>,
3127           e.g. <code>NXM_OF_IN_PORT[]</code>.  Please see
3128           <code>nicira-ext.h</code> for a complete list of NXM field names.
3129         </p>
3130
3131         <p>
3132           Open vSwitch ignores any invalid or unknown field specifications.
3133         </p>
3134
3135         <p>
3136           When eviction is not enabled, via <ref column="overflow_policy"/> or
3137           an OpenFlow 1.4+ ``table mod,'' this column has no effect.
3138         </p>
3139       </column>
3140     </group>
3141
3142     <group title="Classifier Optimization">
3143       <column name="prefixes">
3144         <p>
3145           This string set specifies which fields should be used for
3146           address prefix tracking.  Prefix tracking allows the
3147           classifier to skip rules with longer than necessary prefixes,
3148           resulting in better wildcarding for datapath flows.
3149         </p>
3150         <p>
3151           Prefix tracking may be beneficial when a flow table contains
3152           matches on IP address fields with different prefix lengths.
3153           For example, when a flow table contains IP address matches on
3154           both full addresses and proper prefixes, the full address
3155           matches will typically cause the datapath flow to un-wildcard
3156           the whole address field (depending on flow entry priorities).
3157           In this case each packet with a different address gets handed
3158           to the userspace for flow processing and generates its own
3159           datapath flow.  With prefix tracking enabled for the address
3160           field in question packets with addresses matching shorter
3161           prefixes would generate datapath flows where the irrelevant
3162           address bits are wildcarded, allowing the same datapath flow
3163           to handle all the packets within the prefix in question.  In
3164           this case many userspace upcalls can be avoided and the
3165           overall performance can be better.
3166         </p>
3167         <p>
3168           This is a performance optimization only, so packets will
3169           receive the same treatment with or without prefix tracking.
3170         </p>
3171         <p>
3172           The supported fields are: <code>tun_id</code>,
3173           <code>tun_src</code>, <code>tun_dst</code>,
3174           <code>nw_src</code>, <code>nw_dst</code> (or aliases
3175           <code>ip_src</code> and <code>ip_dst</code>),
3176           <code>ipv6_src</code>, and <code>ipv6_dst</code>.  (Using this
3177           feature for <code>tun_id</code> would only make sense if the
3178           tunnel IDs have prefix structure similar to IP addresses.)
3179         </p>
3180
3181         <p>
3182           By default, the <code>prefixes=ip_dst,ip_src</code> are used
3183           on each flow table.  This instructs the flow classifier to
3184           track the IP destination and source addresses used by the
3185           rules in this specific flow table.
3186         </p>
3187
3188         <p>
3189           The keyword <code>none</code> is recognized as an explicit
3190           override of the default values, causing no prefix fields to be
3191           tracked.
3192         </p>
3193
3194         <p>
3195           To set the prefix fields, the flow table record needs to
3196           exist:
3197         </p>
3198
3199         <dl>
3200           <dt><code>ovs-vsctl set Bridge br0 flow_tables:0=@N1 -- --id=@N1 create Flow_Table name=table0</code></dt>
3201           <dd>
3202             Creates a flow table record for the OpenFlow table number 0.
3203           </dd>
3204
3205           <dt><code>ovs-vsctl set Flow_Table table0 prefixes=ip_dst,ip_src</code></dt>
3206           <dd>
3207             Enables prefix tracking for IP source and destination
3208             address fields.
3209           </dd>
3210         </dl>
3211
3212         <p>
3213           There is a maximum number of fields that can be enabled for any
3214           one flow table.  Currently this limit is 3.
3215         </p>
3216       </column>
3217     </group>
3218
3219     <group title="Common Columns">
3220       The overall purpose of these columns is described under <code>Common
3221       Columns</code> at the beginning of this document.
3222
3223       <column name="external_ids"/>
3224     </group>
3225   </table>
3226
3227   <table name="QoS" title="Quality of Service configuration">
3228     <p>Quality of Service (QoS) configuration for each Port that
3229     references it.</p>
3230
3231     <column name="type">
3232       <p>The type of QoS to implement. The currently defined types are
3233       listed below:</p>
3234       <dl>
3235         <dt><code>linux-htb</code></dt>
3236         <dd>
3237           Linux ``hierarchy token bucket'' classifier.  See tc-htb(8) (also at
3238           <code>http://linux.die.net/man/8/tc-htb</code>) and the HTB manual
3239           (<code>http://luxik.cdi.cz/~devik/qos/htb/manual/userg.htm</code>)
3240           for information on how this classifier works and how to configure it.
3241         </dd>
3242       </dl>
3243       <dl>
3244         <dt><code>linux-hfsc</code></dt>
3245         <dd>
3246           Linux "Hierarchical Fair Service Curve" classifier.
3247           See <code>http://linux-ip.net/articles/hfsc.en/</code> for
3248           information on how this classifier works.
3249         </dd>
3250       </dl>
3251       <dl>
3252         <dt><code>linux-sfq</code></dt>
3253         <dd>
3254           Linux ``Stochastic Fairness Queueing'' classifier. See
3255           <code>tc-sfq</code>(8) (also at
3256           <code>http://linux.die.net/man/8/tc-sfq</code>) for information on
3257           how this classifier works.
3258         </dd>
3259       </dl>
3260       <dl>
3261         <dt><code>linux-codel</code></dt>
3262         <dd>
3263           Linux ``Controlled Delay'' classifier. See <code>tc-codel</code>(8)
3264           (also at
3265           <code>http://man7.org/linux/man-pages/man8/tc-codel.8.html</code>)
3266           for information on how this classifier works.
3267         </dd>
3268       </dl>
3269       <dl>
3270         <dt><code>linux-fq_codel</code></dt>
3271         <dd>
3272           Linux ``Fair Queuing with Controlled Delay'' classifier. See
3273           <code>tc-fq_codel</code>(8) (also at
3274           <code>http://man7.org/linux/man-pages/man8/tc-fq_codel.8.html</code>)
3275           for information on how this classifier works.
3276         </dd>
3277       </dl>
3278     </column>
3279
3280     <column name="queues">
3281       <p>A map from queue numbers to <ref table="Queue"/> records.  The
3282       supported range of queue numbers depend on <ref column="type"/>.  The
3283       queue numbers are the same as the <code>queue_id</code> used in
3284       OpenFlow in <code>struct ofp_action_enqueue</code> and other
3285       structures.</p>
3286
3287       <p>
3288         Queue 0 is the ``default queue.''  It is used by OpenFlow output
3289         actions when no specific queue has been set.  When no configuration for
3290         queue 0 is present, it is automatically configured as if a <ref
3291         table="Queue"/> record with empty <ref table="Queue" column="dscp"/>
3292         and <ref table="Queue" column="other_config"/> columns had been
3293         specified.
3294         (Before version 1.6, Open vSwitch would leave queue 0 unconfigured in
3295         this case.  With some queuing disciplines, this dropped all packets
3296         destined for the default queue.)
3297       </p>
3298     </column>
3299
3300     <group title="Configuration for linux-htb and linux-hfsc">
3301       <p>
3302         The <code>linux-htb</code> and <code>linux-hfsc</code> classes support
3303         the following key-value pair:
3304       </p>
3305
3306       <column name="other_config" key="max-rate" type='{"type": "integer"}'>
3307         Maximum rate shared by all queued traffic, in bit/s.  Optional.  If not
3308         specified, for physical interfaces, the default is the link rate.  For
3309         other interfaces or if the link rate cannot be determined, the default
3310         is currently 100 Mbps.
3311       </column>
3312     </group>
3313
3314     <group title="Common Columns">
3315       The overall purpose of these columns is described under <code>Common
3316       Columns</code> at the beginning of this document.
3317
3318       <column name="other_config"/>
3319       <column name="external_ids"/>
3320     </group>
3321   </table>
3322
3323   <table name="Queue" title="QoS output queue.">
3324     <p>A configuration for a port output queue, used in configuring Quality of
3325     Service (QoS) features.  May be referenced by <ref column="queues"
3326     table="QoS"/> column in <ref table="QoS"/> table.</p>
3327
3328     <column name="dscp">
3329       If set, Open vSwitch will mark all traffic egressing this
3330       <ref table="Queue"/> with the given DSCP bits.  Traffic egressing the
3331       default <ref table="Queue"/> is only marked if it was explicitly selected
3332       as the <ref table="Queue"/> at the time the packet was output.  If unset,
3333       the DSCP bits of traffic egressing this <ref table="Queue"/> will remain
3334       unchanged.
3335     </column>
3336
3337     <group title="Configuration for linux-htb QoS">
3338       <p>
3339         <ref table="QoS"/> <ref table="QoS" column="type"/>
3340         <code>linux-htb</code> may use <code>queue_id</code>s less than 61440.
3341         It has the following key-value pairs defined.
3342       </p>
3343
3344       <column name="other_config" key="min-rate"
3345               type='{"type": "integer", "minInteger": 1}'>
3346         Minimum guaranteed bandwidth, in bit/s.
3347       </column>
3348
3349       <column name="other_config" key="max-rate"
3350               type='{"type": "integer", "minInteger": 1}'>
3351         Maximum allowed bandwidth, in bit/s.  Optional.  If specified, the
3352         queue's rate will not be allowed to exceed the specified value, even
3353         if excess bandwidth is available.  If unspecified, defaults to no
3354         limit.
3355       </column>
3356
3357       <column name="other_config" key="burst"
3358               type='{"type": "integer", "minInteger": 1}'>
3359         Burst size, in bits.  This is the maximum amount of ``credits'' that a
3360         queue can accumulate while it is idle.  Optional.  Details of the
3361         <code>linux-htb</code> implementation require a minimum burst size, so
3362         a too-small <code>burst</code> will be silently ignored.
3363       </column>
3364
3365       <column name="other_config" key="priority"
3366               type='{"type": "integer", "minInteger": 0, "maxInteger": 4294967295}'>
3367         A queue with a smaller <code>priority</code> will receive all the
3368         excess bandwidth that it can use before a queue with a larger value
3369         receives any.  Specific priority values are unimportant; only relative
3370         ordering matters.  Defaults to 0 if unspecified.
3371       </column>
3372     </group>
3373
3374     <group title="Configuration for linux-hfsc QoS">
3375       <p>
3376         <ref table="QoS"/> <ref table="QoS" column="type"/>
3377         <code>linux-hfsc</code> may use <code>queue_id</code>s less than 61440.
3378         It has the following key-value pairs defined.
3379       </p>
3380
3381       <column name="other_config" key="min-rate"
3382               type='{"type": "integer", "minInteger": 1}'>
3383         Minimum guaranteed bandwidth, in bit/s.
3384       </column>
3385
3386       <column name="other_config" key="max-rate"
3387               type='{"type": "integer", "minInteger": 1}'>
3388         Maximum allowed bandwidth, in bit/s.  Optional.  If specified, the
3389         queue's rate will not be allowed to exceed the specified value, even if
3390         excess bandwidth is available.  If unspecified, defaults to no
3391         limit.
3392       </column>
3393     </group>
3394
3395     <group title="Common Columns">
3396       The overall purpose of these columns is described under <code>Common
3397       Columns</code> at the beginning of this document.
3398
3399       <column name="other_config"/>
3400       <column name="external_ids"/>
3401     </group>
3402   </table>
3403
3404   <table name="Mirror" title="Port mirroring.">
3405     <p>A port mirror within a <ref table="Bridge"/>.</p>
3406     <p>A port mirror configures a bridge to send selected frames to special
3407     ``mirrored'' ports, in addition to their normal destinations.  Mirroring
3408     traffic may also be referred to as SPAN or RSPAN, depending on how
3409     the mirrored traffic is sent.</p>
3410
3411     <p>
3412       When a packet enters an Open vSwitch bridge, it becomes eligible for
3413       mirroring based on its ingress port and VLAN.  As the packet travels
3414       through the flow tables, each time it is output to a port, it becomes
3415       eligible for mirroring based on the egress port and VLAN.  In Open
3416       vSwitch 2.5 and later, mirroring occurs just after a packet first becomes
3417       eligible, using the packet as it exists at that point; in Open vSwitch
3418       2.4 and earlier, mirroring occurs only after a packet has traversed all
3419       the flow tables, using the original packet as it entered the bridge.
3420       This makes a difference only when the flow table modifies the packet: in
3421       Open vSwitch 2.4, the modifications are never visible to mirrors, whereas
3422       in Open vSwitch 2.5 and later modifications made before the first output
3423       that makes it eligible for mirroring to a particular destination are
3424       visible.
3425     </p>
3426
3427     <p>
3428       A packet that enters an Open vSwitch bridge is mirrored to a particular
3429       destination only once, even if it is eligible for multiple reasons.  For
3430       example, a packet would be mirrored to a particular <ref
3431       column="output_port"/> only once, even if it is selected for mirroring to
3432       that port by <ref column="select_dst_port"/> and <ref
3433       column="select_src_port"/> in the same or different <ref table="Mirror"/>
3434       records.
3435     </p>
3436
3437     <column name="name">
3438       Arbitrary identifier for the <ref table="Mirror"/>.
3439     </column>
3440
3441     <group title="Selecting Packets for Mirroring">
3442       <p>
3443         To be selected for mirroring, a given packet must enter or leave the
3444         bridge through a selected port and it must also be in one of the
3445         selected VLANs.
3446       </p>
3447
3448       <column name="select_all">
3449         If true, every packet arriving or departing on any port is
3450         selected for mirroring.
3451       </column>
3452
3453       <column name="select_dst_port">
3454         Ports on which departing packets are selected for mirroring.
3455       </column>
3456
3457       <column name="select_src_port">
3458         Ports on which arriving packets are selected for mirroring.
3459       </column>
3460
3461       <column name="select_vlan">
3462         VLANs on which packets are selected for mirroring.  An empty set
3463         selects packets on all VLANs.
3464       </column>
3465     </group>
3466
3467     <group title="Mirroring Destination Configuration">
3468       <p>
3469         These columns are mutually exclusive.  Exactly one of them must be
3470         nonempty.
3471       </p>
3472
3473       <column name="output_port">
3474         <p>Output port for selected packets, if nonempty.</p>
3475         <p>Specifying a port for mirror output reserves that port exclusively
3476         for mirroring.  No frames other than those selected for mirroring
3477         via this column
3478         will be forwarded to the port, and any frames received on the port
3479         will be discarded.</p>
3480         <p>
3481           The output port may be any kind of port supported by Open vSwitch.
3482           It may be, for example, a physical port (sometimes called SPAN) or a
3483           GRE tunnel.
3484         </p>
3485       </column>
3486
3487       <column name="output_vlan">
3488         <p>Output VLAN for selected packets, if nonempty.</p>
3489         <p>The frames will be sent out all ports that trunk
3490         <ref column="output_vlan"/>, as well as any ports with implicit VLAN
3491         <ref column="output_vlan"/>.  When a mirrored frame is sent out a
3492         trunk port, the frame's VLAN tag will be set to
3493         <ref column="output_vlan"/>, replacing any existing tag; when it is
3494         sent out an implicit VLAN port, the frame will not be tagged.  This
3495         type of mirroring is sometimes called RSPAN.</p>
3496         <p>
3497           See the documentation for
3498           <ref column="other_config" key="forward-bpdu"/> in the
3499           <ref table="Interface"/> table for a list of destination MAC
3500           addresses which will not be mirrored to a VLAN to avoid confusing
3501           switches that interpret the protocols that they represent.
3502         </p>
3503         <p><em>Please note:</em> Mirroring to a VLAN can disrupt a network that
3504         contains unmanaged switches.  Consider an unmanaged physical switch
3505         with two ports: port 1, connected to an end host, and port 2,
3506         connected to an Open vSwitch configured to mirror received packets
3507         into VLAN 123 on port 2.  Suppose that the end host sends a packet on
3508         port 1 that the physical switch forwards to port 2.  The Open vSwitch
3509         forwards this packet to its destination and then reflects it back on
3510         port 2 in VLAN 123.  This reflected packet causes the unmanaged
3511         physical switch to replace the MAC learning table entry, which
3512         correctly pointed to port 1, with one that incorrectly points to port
3513         2.  Afterward, the physical switch will direct packets destined for
3514         the end host to the Open vSwitch on port 2, instead of to the end
3515         host on port 1, disrupting connectivity.  If mirroring to a VLAN is
3516         desired in this scenario, then the physical switch must be replaced
3517         by one that learns Ethernet addresses on a per-VLAN basis.  In
3518         addition, learning should be disabled on the VLAN containing mirrored
3519         traffic. If this is not done then intermediate switches will learn
3520         the MAC address of each end host from the mirrored traffic.  If
3521         packets being sent to that end host are also mirrored, then they will
3522         be dropped since the switch will attempt to send them out the input
3523         port. Disabling learning for the VLAN will cause the switch to
3524         correctly send the packet out all ports configured for that VLAN.  If
3525         Open vSwitch is being used as an intermediate switch, learning can be
3526         disabled by adding the mirrored VLAN to <ref column="flood_vlans"/>
3527         in the appropriate <ref table="Bridge"/> table or tables.</p>
3528         <p>
3529           Mirroring to a GRE tunnel has fewer caveats than mirroring to a
3530           VLAN and should generally be preferred.
3531         </p>
3532       </column>
3533     </group>
3534
3535     <group title="Statistics: Mirror counters">
3536       <p>
3537         Key-value pairs that report mirror statistics.  The update period
3538         is controlled by <ref column="other_config"
3539         key="stats-update-interval"/> in the <code>Open_vSwitch</code> table.
3540       </p>
3541       <column name="statistics" key="tx_packets">
3542         Number of packets transmitted through this mirror.
3543       </column>
3544       <column name="statistics" key="tx_bytes">
3545         Number of bytes transmitted through this mirror.
3546       </column>
3547     </group>
3548
3549     <group title="Common Columns">
3550       The overall purpose of these columns is described under <code>Common
3551       Columns</code> at the beginning of this document.
3552
3553       <column name="external_ids"/>
3554     </group>
3555   </table>
3556
3557   <table name="Controller" title="OpenFlow controller configuration.">
3558     <p>An OpenFlow controller.</p>
3559
3560     <p>
3561       Open vSwitch supports two kinds of OpenFlow controllers:
3562     </p>
3563
3564     <dl>
3565       <dt>Primary controllers</dt>
3566       <dd>
3567         <p>
3568           This is the kind of controller envisioned by the OpenFlow 1.0
3569           specification.  Usually, a primary controller implements a network
3570           policy by taking charge of the switch's flow table.
3571         </p>
3572
3573         <p>
3574           Open vSwitch initiates and maintains persistent connections to
3575           primary controllers, retrying the connection each time it fails or
3576           drops.  The <ref table="Bridge" column="fail_mode"/> column in the
3577           <ref table="Bridge"/> table applies to primary controllers.
3578         </p>
3579
3580         <p>
3581           Open vSwitch permits a bridge to have any number of primary
3582           controllers.  When multiple controllers are configured, Open
3583           vSwitch connects to all of them simultaneously.  Because
3584           OpenFlow 1.0 does not specify how multiple controllers
3585           coordinate in interacting with a single switch, more than
3586           one primary controller should be specified only if the
3587           controllers are themselves designed to coordinate with each
3588           other.  (The Nicira-defined <code>NXT_ROLE</code> OpenFlow
3589           vendor extension may be useful for this.)
3590         </p>
3591       </dd>
3592       <dt>Service controllers</dt>
3593       <dd>
3594         <p>
3595           These kinds of OpenFlow controller connections are intended for
3596           occasional support and maintenance use, e.g. with
3597           <code>ovs-ofctl</code>.  Usually a service controller connects only
3598           briefly to inspect or modify some of a switch's state.
3599         </p>
3600
3601         <p>
3602           Open vSwitch listens for incoming connections from service
3603           controllers.  The service controllers initiate and, if necessary,
3604           maintain the connections from their end.  The <ref table="Bridge"
3605           column="fail_mode"/> column in the <ref table="Bridge"/> table does
3606           not apply to service controllers.
3607         </p>
3608
3609         <p>
3610           Open vSwitch supports configuring any number of service controllers.
3611         </p>
3612       </dd>
3613     </dl>
3614
3615     <p>
3616       The <ref column="target"/> determines the type of controller.
3617     </p>
3618
3619     <group title="Core Features">
3620       <column name="target">
3621         <p>Connection method for controller.</p>
3622         <p>
3623           The following connection methods are currently supported for primary
3624           controllers:
3625         </p>
3626         <dl>
3627           <dt><code>ssl:<var>ip</var></code>[<code>:<var>port</var></code>]</dt>
3628           <dd>
3629             <p>The specified SSL <var>port</var> on the host at the
3630             given <var>ip</var>, which must be expressed as an IP
3631             address (not a DNS name).  The <ref table="Open_vSwitch"
3632             column="ssl"/> column in the <ref table="Open_vSwitch"/>
3633             table must point to a valid SSL configuration when this form
3634             is used.</p>
3635             <p>If <var>port</var> is not specified, it defaults to 6653.</p>
3636             <p>SSL support is an optional feature that is not always built as
3637             part of Open vSwitch.</p>
3638           </dd>
3639           <dt><code>tcp:<var>ip</var></code>[<code>:<var>port</var></code>]</dt>
3640           <dd>
3641             <p>
3642               The specified TCP <var>port</var> on the host at the given
3643               <var>ip</var>, which must be expressed as an IP address (not a
3644               DNS name), where <var>ip</var> can be IPv4 or IPv6 address.  If
3645               <var>ip</var> is an IPv6 address, wrap it in square brackets,
3646               e.g. <code>tcp:[::1]:6653</code>.
3647             </p>
3648             <p>
3649               If <var>port</var> is not specified, it defaults to 6653.
3650             </p>
3651           </dd>
3652         </dl>
3653         <p>
3654           The following connection methods are currently supported for service
3655           controllers:
3656         </p>
3657         <dl>
3658           <dt><code>pssl:</code>[<var>port</var>][<code>:<var>ip</var></code>]</dt>
3659           <dd>
3660             <p>
3661               Listens for SSL connections on the specified TCP <var>port</var>.
3662               If <var>ip</var>, which must be expressed as an IP address (not a
3663               DNS name), is specified, then connections are restricted to the
3664               specified local IP address (either IPv4 or IPv6).  If
3665               <var>ip</var> is an IPv6 address, wrap it in square brackets,
3666               e.g. <code>pssl:6653:[::1]</code>.
3667             </p>
3668             <p>
3669               If <var>port</var> is not specified, it defaults to
3670               6653.  If <var>ip</var> is not specified then it listens only on
3671               IPv4 (but not IPv6) addresses.  The
3672               <ref table="Open_vSwitch" column="ssl"/>
3673               column in the <ref table="Open_vSwitch"/> table must point to a
3674               valid SSL configuration when this form is used.
3675             </p>
3676             <p>
3677               If <var>port</var> is not specified, it currently to 6653.
3678             </p>
3679             <p>
3680               SSL support is an optional feature that is not always built as
3681               part of Open vSwitch.
3682             </p>
3683           </dd>
3684           <dt><code>ptcp:</code>[<var>port</var>][<code>:<var>ip</var></code>]</dt>
3685           <dd>
3686             <p>
3687               Listens for connections on the specified TCP <var>port</var>.  If
3688               <var>ip</var>, which must be expressed as an IP address (not a
3689               DNS name), is specified, then connections are restricted to the
3690               specified local IP address (either IPv4 or IPv6).  If
3691               <var>ip</var> is an IPv6 address, wrap it in square brackets,
3692               e.g. <code>ptcp:6653:[::1]</code>. If <var>ip</var> is not
3693               specified then it listens only on IPv4 addresses.
3694             </p>
3695             <p>
3696               If <var>port</var> is not specified, it defaults to 6653.
3697             </p>
3698           </dd>
3699         </dl>
3700         <p>When multiple controllers are configured for a single bridge, the
3701         <ref column="target"/> values must be unique.  Duplicate
3702         <ref column="target"/> values yield unspecified results.</p>
3703       </column>
3704
3705       <column name="connection_mode">
3706         <p>If it is specified, this setting must be one of the following
3707         strings that describes how Open vSwitch contacts this OpenFlow
3708         controller over the network:</p>
3709
3710         <dl>
3711           <dt><code>in-band</code></dt>
3712           <dd>In this mode, this controller's OpenFlow traffic travels over the
3713           bridge associated with the controller.  With this setting, Open
3714           vSwitch allows traffic to and from the controller regardless of the
3715           contents of the OpenFlow flow table.  (Otherwise, Open vSwitch
3716           would never be able to connect to the controller, because it did
3717           not have a flow to enable it.)  This is the most common connection
3718           mode because it is not necessary to maintain two independent
3719           networks.</dd>
3720           <dt><code>out-of-band</code></dt>
3721           <dd>In this mode, OpenFlow traffic uses a control network separate
3722           from the bridge associated with this controller, that is, the
3723           bridge does not use any of its own network devices to communicate
3724           with the controller.  The control network must be configured
3725           separately, before or after <code>ovs-vswitchd</code> is started.
3726           </dd>
3727         </dl>
3728
3729         <p>If not specified, the default is implementation-specific.</p>
3730       </column>
3731     </group>
3732
3733     <group title="Controller Failure Detection and Handling">
3734       <column name="max_backoff">
3735         Maximum number of milliseconds to wait between connection attempts.
3736         Default is implementation-specific.
3737       </column>
3738
3739       <column name="inactivity_probe">
3740         Maximum number of milliseconds of idle time on connection to
3741         controller before sending an inactivity probe message.  If Open
3742         vSwitch does not communicate with the controller for the specified
3743         number of seconds, it will send a probe.  If a response is not
3744         received for the same additional amount of time, Open vSwitch
3745         assumes the connection has been broken and attempts to reconnect.
3746         Default is implementation-specific.  A value of 0 disables
3747         inactivity probes.
3748       </column>
3749     </group>
3750
3751     <group title="Asynchronous Messages">
3752       <p>
3753         OpenFlow switches send certain messages to controllers spontanenously,
3754         that is, not in response to any request from the controller.  These
3755         messages are called ``asynchronous messages.''  These columns allow
3756         asynchronous messages to be limited or disabled to ensure the best use
3757         of network resources.
3758       </p>
3759
3760       <column name="enable_async_messages">
3761         The OpenFlow protocol enables asynchronous messages at time of
3762         connection establishment, which means that a controller can receive
3763         asynchronous messages, potentially many of them, even if it turns them
3764         off immediately after connecting.  Set this column to
3765         <code>false</code> to change Open vSwitch behavior to disable, by
3766         default, all asynchronous messages.  The controller can use the
3767         <code>NXT_SET_ASYNC_CONFIG</code> Nicira extension to OpenFlow to turn
3768         on any messages that it does want to receive, if any.
3769       </column>
3770
3771       <group title="Controller Rate Limiting">
3772         <p>
3773           A switch can forward packets to a controller over the OpenFlow
3774           protocol.  Forwarding packets this way at too high a rate can
3775           overwhelm a controller, frustrate use of the OpenFlow connection for
3776           other purposes, increase the latency of flow setup, and use an
3777           unreasonable amount of bandwidth.  Therefore, Open vSwitch supports
3778           limiting the rate of packet forwarding to a controller.
3779         </p>
3780
3781         <p>
3782           There are two main reasons in OpenFlow for a packet to be sent to a
3783           controller: either the packet ``misses'' in the flow table, that is,
3784           there is no matching flow, or a flow table action says to send the
3785           packet to the controller.  Open vSwitch limits the rate of each kind
3786           of packet separately at the configured rate.  Therefore, the actual
3787           rate that packets are sent to the controller can be up to twice the
3788           configured rate, when packets are sent for both reasons.
3789         </p>
3790
3791         <p>
3792           This feature is specific to forwarding packets over an OpenFlow
3793           connection.  It is not general-purpose QoS.  See the <ref
3794           table="QoS"/> table for quality of service configuration, and <ref
3795           column="ingress_policing_rate" table="Interface"/> in the <ref
3796           table="Interface"/> table for ingress policing configuration.
3797         </p>
3798
3799         <column name="controller_rate_limit">
3800           <p>
3801             The maximum rate at which the switch will forward packets to the
3802             OpenFlow controller, in packets per second.  If no value is
3803             specified, rate limiting is disabled.
3804           </p>
3805         </column>
3806
3807         <column name="controller_burst_limit">
3808           <p>
3809             When a high rate triggers rate-limiting, Open vSwitch queues
3810             packets to the controller for each port and transmits them to the
3811             controller at the configured rate.  This value limits the number of
3812             queued packets.  Ports on a bridge share the packet queue fairly.
3813           </p>
3814
3815           <p>
3816             This value has no effect unless <ref
3817             column="controller_rate_limit"/> is configured.  The current
3818             default when this value is not specified is one-quarter of <ref
3819             column="controller_rate_limit"/>, meaning that queuing can delay
3820             forwarding a packet to the controller by up to 250 ms.
3821           </p>
3822         </column>
3823
3824         <group title="Controller Rate Limiting Statistics">
3825           <p>
3826             These values report the effects of rate limiting.  Their values are
3827             relative to establishment of the most recent OpenFlow connection,
3828             or since rate limiting was enabled, whichever happened more
3829             recently.  Each consists of two values, one with <code>TYPE</code>
3830             replaced by <code>miss</code> for rate limiting flow table misses,
3831             and the other with <code>TYPE</code> replaced by
3832             <code>action</code> for rate limiting packets sent by OpenFlow
3833             actions.
3834           </p>
3835
3836           <p>
3837             These statistics are reported only when controller rate limiting is
3838             enabled.
3839           </p>
3840
3841           <column name="status" key="packet-in-TYPE-bypassed"
3842                   type='{"type": "integer", "minInteger": 0}'>
3843             Number of packets sent directly to the controller, without queuing,
3844             because the rate did not exceed the configured maximum.
3845           </column>
3846
3847           <column name="status" key="packet-in-TYPE-queued"
3848                   type='{"type": "integer", "minInteger": 0}'>
3849             Number of packets added to the queue to send later.
3850           </column>
3851
3852           <column name="status" key="packet-in-TYPE-dropped"
3853                   type='{"type": "integer", "minInteger": 0}'>
3854             Number of packets added to the queue that were later dropped due to
3855             overflow.  This value is less than or equal to <ref column="status"
3856             key="packet-in-TYPE-queued"/>.
3857           </column>
3858
3859           <column name="status" key="packet-in-TYPE-backlog"
3860                   type='{"type": "integer", "minInteger": 0}'>
3861             Number of packets currently queued.  The other statistics increase
3862             monotonically, but this one fluctuates between 0 and the <ref
3863             column="controller_burst_limit"/> as conditions change.
3864           </column>
3865         </group>
3866       </group>
3867     </group>
3868
3869     <group title="Additional In-Band Configuration">
3870       <p>These values are considered only in in-band control mode (see
3871       <ref column="connection_mode"/>).</p>
3872
3873       <p>When multiple controllers are configured on a single bridge, there
3874       should be only one set of unique values in these columns.  If different
3875       values are set for these columns in different controllers, the effect
3876       is unspecified.</p>
3877
3878       <column name="local_ip">
3879         The IP address to configure on the local port,
3880         e.g. <code>192.168.0.123</code>.  If this value is unset, then
3881         <ref column="local_netmask"/> and <ref column="local_gateway"/> are
3882         ignored.
3883       </column>
3884
3885       <column name="local_netmask">
3886         The IP netmask to configure on the local port,
3887         e.g. <code>255.255.255.0</code>.  If <ref column="local_ip"/> is set
3888         but this value is unset, then the default is chosen based on whether
3889         the IP address is class A, B, or C.
3890       </column>
3891
3892       <column name="local_gateway">
3893         The IP address of the gateway to configure on the local port, as a
3894         string, e.g. <code>192.168.0.1</code>.  Leave this column unset if
3895         this network has no gateway.
3896       </column>
3897     </group>
3898
3899     <group title="Controller Status">
3900       <column name="is_connected">
3901         <code>true</code> if currently connected to this controller,
3902         <code>false</code> otherwise.
3903       </column>
3904
3905       <column name="role"
3906               type='{"type": "string", "enum": ["set", ["other", "master", "slave"]]}'>
3907         <p>The level of authority this controller has on the associated
3908         bridge. Possible values are:</p>
3909         <dl>
3910           <dt><code>other</code></dt>
3911           <dd>Allows the controller access to all OpenFlow features.</dd>
3912           <dt><code>master</code></dt>
3913           <dd>Equivalent to <code>other</code>, except that there may be at
3914           most one master controller at a time.  When a controller configures
3915           itself as <code>master</code>, any existing master is demoted to
3916           the <code>slave</code> role.</dd>
3917           <dt><code>slave</code></dt>
3918           <dd>Allows the controller read-only access to OpenFlow features.
3919           Attempts to modify the flow table will be rejected with an
3920           error.  Slave controllers do not receive OFPT_PACKET_IN or
3921           OFPT_FLOW_REMOVED messages, but they do receive OFPT_PORT_STATUS
3922           messages.</dd>
3923         </dl>
3924       </column>
3925
3926       <column name="status" key="last_error">
3927         A human-readable description of the last error on the connection
3928         to the controller; i.e. <code>strerror(errno)</code>.  This key
3929         will exist only if an error has occurred.
3930       </column>
3931
3932       <column name="status" key="state"
3933               type='{"type": "string", "enum": ["set", ["VOID", "BACKOFF", "CONNECTING", "ACTIVE", "IDLE"]]}'>
3934         <p>
3935           The state of the connection to the controller:
3936         </p>
3937         <dl>
3938           <dt><code>VOID</code></dt>
3939           <dd>Connection is disabled.</dd>
3940
3941           <dt><code>BACKOFF</code></dt>
3942           <dd>Attempting to reconnect at an increasing period.</dd>
3943
3944           <dt><code>CONNECTING</code></dt>
3945           <dd>Attempting to connect.</dd>
3946
3947           <dt><code>ACTIVE</code></dt>
3948           <dd>Connected, remote host responsive.</dd>
3949
3950           <dt><code>IDLE</code></dt>
3951           <dd>Connection is idle.  Waiting for response to keep-alive.</dd>
3952         </dl>
3953         <p>
3954           These values may change in the future.  They are provided only for
3955           human consumption.
3956         </p>
3957       </column>
3958
3959       <column name="status" key="sec_since_connect"
3960               type='{"type": "integer", "minInteger": 0}'>
3961         The amount of time since this controller last successfully connected to
3962         the switch (in seconds).  Value is empty if controller has never
3963         successfully connected.
3964       </column>
3965
3966       <column name="status" key="sec_since_disconnect"
3967               type='{"type": "integer", "minInteger": 1}'>
3968         The amount of time since this controller last disconnected from
3969         the switch (in seconds). Value is empty if controller has never
3970         disconnected.
3971       </column>
3972     </group>
3973
3974     <group title="Connection Parameters">
3975       <p>
3976         Additional configuration for a connection between the controller
3977         and the Open vSwitch.
3978       </p>
3979
3980       <column name="other_config" key="dscp"
3981                 type='{"type": "integer"}'>
3982         The Differentiated Service Code Point (DSCP) is specified using 6 bits
3983         in the Type of Service (TOS) field in the IP header. DSCP provides a
3984         mechanism to classify the network traffic and provide Quality of
3985         Service (QoS) on IP networks.
3986
3987         The DSCP value specified here is used when establishing the connection
3988         between the controller and the Open vSwitch.  If no value is specified,
3989         a default value of 48 is chosen.  Valid DSCP values must be in the
3990         range 0 to 63.
3991       </column>
3992     </group>
3993
3994
3995     <group title="Common Columns">
3996       The overall purpose of these columns is described under <code>Common
3997       Columns</code> at the beginning of this document.
3998
3999       <column name="external_ids"/>
4000       <column name="other_config"/>
4001     </group>
4002   </table>
4003
4004   <table name="Manager" title="OVSDB management connection.">
4005     <p>
4006       Configuration for a database connection to an Open vSwitch database
4007       (OVSDB) client.
4008     </p>
4009
4010     <p>
4011       This table primarily configures the Open vSwitch database
4012       (<code>ovsdb-server</code>), not the Open vSwitch switch
4013       (<code>ovs-vswitchd</code>).  The switch does read the table to determine
4014       what connections should be treated as in-band.
4015     </p>
4016
4017     <p>
4018       The Open vSwitch database server can initiate and maintain active
4019       connections to remote clients.  It can also listen for database
4020       connections.
4021     </p>
4022
4023     <group title="Core Features">
4024       <column name="target">
4025         <p>Connection method for managers.</p>
4026         <p>
4027           The following connection methods are currently supported:
4028         </p>
4029         <dl>
4030           <dt><code>ssl:<var>ip</var></code>[<code>:<var>port</var></code>]</dt>
4031           <dd>
4032             <p>
4033               The specified SSL <var>port</var> on the host at the given
4034               <var>ip</var>, which must be expressed as an IP address
4035               (not a DNS name).  The <ref table="Open_vSwitch"
4036               column="ssl"/> column in the <ref table="Open_vSwitch"/>
4037               table must point to a valid SSL configuration when this
4038               form is used.
4039             </p>
4040             <p>
4041               If <var>port</var> is not specified, it defaults to 6640.
4042             </p>
4043             <p>
4044               SSL support is an optional feature that is not always
4045               built as part of Open vSwitch.
4046             </p>
4047           </dd>
4048
4049           <dt><code>tcp:<var>ip</var></code>[<code>:<var>port</var></code>]</dt>
4050           <dd>
4051             <p>
4052               The specified TCP <var>port</var> on the host at the given
4053               <var>ip</var>, which must be expressed as an IP address (not a
4054               DNS name), where <var>ip</var> can be IPv4 or IPv6 address.  If
4055               <var>ip</var> is an IPv6 address, wrap it in square brackets,
4056               e.g. <code>tcp:[::1]:6640</code>.
4057             </p>
4058             <p>
4059               If <var>port</var> is not specified, it defaults to 6640.
4060             </p>
4061           </dd>
4062           <dt><code>pssl:</code>[<var>port</var>][<code>:<var>ip</var></code>]</dt>
4063           <dd>
4064             <p>
4065               Listens for SSL connections on the specified TCP <var>port</var>.
4066               Specify 0 for <var>port</var> to have the kernel automatically
4067               choose an available port.  If <var>ip</var>, which must be
4068               expressed as an IP address (not a DNS name), is specified, then
4069               connections are restricted to the specified local IP address
4070               (either IPv4 or IPv6 address).  If <var>ip</var> is an IPv6
4071               address, wrap in square brackets,
4072               e.g. <code>pssl:6640:[::1]</code>.  If <var>ip</var> is not
4073               specified then it listens only on IPv4 (but not IPv6) addresses.
4074               The <ref table="Open_vSwitch" column="ssl"/> column in the <ref
4075               table="Open_vSwitch"/> table must point to a valid SSL
4076               configuration when this form is used.
4077             </p>
4078             <p>
4079               If <var>port</var> is not specified, it defaults to 6640.
4080             </p>
4081             <p>
4082               SSL support is an optional feature that is not always built as
4083               part of Open vSwitch.
4084             </p>
4085           </dd>
4086           <dt><code>ptcp:</code>[<var>port</var>][<code>:<var>ip</var></code>]</dt>
4087           <dd>
4088             <p>
4089               Listens for connections on the specified TCP <var>port</var>.
4090               Specify 0 for <var>port</var> to have the kernel automatically
4091               choose an available port.  If <var>ip</var>, which must be
4092               expressed as an IP address (not a DNS name), is specified, then
4093               connections are restricted to the specified local IP address
4094               (either IPv4 or IPv6 address).  If <var>ip</var> is an IPv6
4095               address, wrap it in square brackets,
4096               e.g. <code>ptcp:6640:[::1]</code>.  If <var>ip</var> is not
4097               specified then it listens only on IPv4 addresses.
4098             </p>
4099             <p>
4100               If <var>port</var> is not specified, it defaults to 6640.
4101             </p>
4102           </dd>
4103         </dl>
4104         <p>When multiple managers are configured, the <ref column="target"/>
4105         values must be unique.  Duplicate <ref column="target"/> values yield
4106         unspecified results.</p>
4107       </column>
4108
4109       <column name="connection_mode">
4110         <p>
4111           If it is specified, this setting must be one of the following strings
4112           that describes how Open vSwitch contacts this OVSDB client over the
4113           network:
4114         </p>
4115
4116         <dl>
4117           <dt><code>in-band</code></dt>
4118           <dd>
4119             In this mode, this connection's traffic travels over a bridge
4120             managed by Open vSwitch.  With this setting, Open vSwitch allows
4121             traffic to and from the client regardless of the contents of the
4122             OpenFlow flow table.  (Otherwise, Open vSwitch would never be able
4123             to connect to the client, because it did not have a flow to enable
4124             it.)  This is the most common connection mode because it is not
4125             necessary to maintain two independent networks.
4126           </dd>
4127           <dt><code>out-of-band</code></dt>
4128           <dd>
4129             In this mode, the client's traffic uses a control network separate
4130             from that managed by Open vSwitch, that is, Open vSwitch does not
4131             use any of its own network devices to communicate with the client.
4132             The control network must be configured separately, before or after
4133             <code>ovs-vswitchd</code> is started.
4134           </dd>
4135         </dl>
4136
4137         <p>
4138           If not specified, the default is implementation-specific.
4139         </p>
4140       </column>
4141     </group>
4142
4143     <group title="Client Failure Detection and Handling">
4144       <column name="max_backoff">
4145         Maximum number of milliseconds to wait between connection attempts.
4146         Default is implementation-specific.
4147       </column>
4148
4149       <column name="inactivity_probe">
4150         Maximum number of milliseconds of idle time on connection to the client
4151         before sending an inactivity probe message.  If Open vSwitch does not
4152         communicate with the client for the specified number of seconds, it
4153         will send a probe.  If a response is not received for the same
4154         additional amount of time, Open vSwitch assumes the connection has been
4155         broken and attempts to reconnect.  Default is implementation-specific.
4156         A value of 0 disables inactivity probes.
4157       </column>
4158     </group>
4159
4160     <group title="Status">
4161       <column name="is_connected">
4162         <code>true</code> if currently connected to this manager,
4163         <code>false</code> otherwise.
4164       </column>
4165
4166       <column name="status" key="last_error">
4167         A human-readable description of the last error on the connection
4168         to the manager; i.e. <code>strerror(errno)</code>.  This key
4169         will exist only if an error has occurred.
4170       </column>
4171
4172       <column name="status" key="state"
4173               type='{"type": "string", "enum": ["set", ["VOID", "BACKOFF", "CONNECTING", "ACTIVE", "IDLE"]]}'>
4174         <p>
4175           The state of the connection to the manager:
4176         </p>
4177         <dl>
4178           <dt><code>VOID</code></dt>
4179           <dd>Connection is disabled.</dd>
4180
4181           <dt><code>BACKOFF</code></dt>
4182           <dd>Attempting to reconnect at an increasing period.</dd>
4183
4184           <dt><code>CONNECTING</code></dt>
4185           <dd>Attempting to connect.</dd>
4186
4187           <dt><code>ACTIVE</code></dt>
4188           <dd>Connected, remote host responsive.</dd>
4189
4190           <dt><code>IDLE</code></dt>
4191           <dd>Connection is idle.  Waiting for response to keep-alive.</dd>
4192         </dl>
4193         <p>
4194           These values may change in the future.  They are provided only for
4195           human consumption.
4196         </p>
4197       </column>
4198
4199       <column name="status" key="sec_since_connect"
4200               type='{"type": "integer", "minInteger": 0}'>
4201         The amount of time since this manager last successfully connected
4202         to the database (in seconds). Value is empty if manager has never
4203         successfully connected.
4204       </column>
4205
4206       <column name="status" key="sec_since_disconnect"
4207               type='{"type": "integer", "minInteger": 0}'>
4208         The amount of time since this manager last disconnected from the
4209         database (in seconds). Value is empty if manager has never
4210         disconnected.
4211       </column>
4212
4213       <column name="status" key="locks_held">
4214         Space-separated list of the names of OVSDB locks that the connection
4215         holds.  Omitted if the connection does not hold any locks.
4216       </column>
4217
4218       <column name="status" key="locks_waiting">
4219         Space-separated list of the names of OVSDB locks that the connection is
4220         currently waiting to acquire.  Omitted if the connection is not waiting
4221         for any locks.
4222       </column>
4223
4224       <column name="status" key="locks_lost">
4225         Space-separated list of the names of OVSDB locks that the connection
4226         has had stolen by another OVSDB client.  Omitted if no locks have been
4227         stolen from this connection.
4228       </column>
4229
4230       <column name="status" key="n_connections"
4231               type='{"type": "integer", "minInteger": 2}'>
4232         <p>
4233           When <ref column="target"/> specifies a connection method that
4234           listens for inbound connections (e.g. <code>ptcp:</code> or
4235           <code>pssl:</code>) and more than one connection is actually active,
4236           the value is the number of active connections.  Otherwise, this
4237           key-value pair is omitted.
4238         </p>
4239         <p>
4240           When multiple connections are active, status columns and key-value
4241           pairs (other than this one) report the status of one arbitrarily
4242           chosen connection.
4243         </p>
4244       </column>
4245
4246       <column name="status" key="bound_port" type='{"type": "integer"}'>
4247           When <ref column="target"/> is <code>ptcp:</code> or
4248           <code>pssl:</code>, this is the TCP port on which the OVSDB server is
4249           listening.  (This is is particularly useful when <ref
4250           column="target"/> specifies a port of 0, allowing the kernel to
4251           choose any available port.)
4252       </column>
4253     </group>
4254
4255     <group title="Connection Parameters">
4256       <p>
4257         Additional configuration for a connection between the manager
4258         and the Open vSwitch Database.
4259       </p>
4260
4261       <column name="other_config" key="dscp"
4262                 type='{"type": "integer"}'>
4263         The Differentiated Service Code Point (DSCP) is specified using 6 bits
4264         in the Type of Service (TOS) field in the IP header. DSCP provides a
4265         mechanism to classify the network traffic and provide Quality of
4266         Service (QoS) on IP networks.
4267
4268         The DSCP value specified here is used when establishing the connection
4269         between the manager and the Open vSwitch.  If no value is specified, a
4270         default value of 48 is chosen.  Valid DSCP values must be in the range
4271         0 to 63.
4272       </column>
4273     </group>
4274
4275     <group title="Common Columns">
4276       The overall purpose of these columns is described under <code>Common
4277       Columns</code> at the beginning of this document.
4278
4279       <column name="external_ids"/>
4280       <column name="other_config"/>
4281     </group>
4282   </table>
4283
4284   <table name="NetFlow">
4285     A NetFlow target.  NetFlow is a protocol that exports a number of
4286     details about terminating IP flows, such as the principals involved
4287     and duration.
4288
4289     <column name="targets">
4290       NetFlow targets in the form
4291       <code><var>ip</var>:<var>port</var></code>.  The <var>ip</var>
4292       must be specified numerically, not as a DNS name.
4293     </column>
4294
4295     <column name="engine_id">
4296       Engine ID to use in NetFlow messages.  Defaults to datapath index
4297       if not specified.
4298     </column>
4299
4300     <column name="engine_type">
4301       Engine type to use in NetFlow messages.  Defaults to datapath
4302       index if not specified.
4303     </column>
4304
4305     <column name="active_timeout">
4306       <p>
4307         The interval at which NetFlow records are sent for flows that
4308         are still active, in seconds.  A value of <code>0</code>
4309         requests the default timeout (currently 600 seconds); a value
4310         of <code>-1</code> disables active timeouts.
4311       </p>
4312
4313       <p>
4314         The NetFlow passive timeout, for flows that become inactive,
4315         is not configurable.  It will vary depending on the Open
4316         vSwitch version, the forms and contents of the OpenFlow flow
4317         tables, CPU and memory usage, and network activity.  A typical
4318         passive timeout is about a second.
4319       </p>
4320     </column>
4321
4322     <column name="add_id_to_interface">
4323       <p>If this column's value is <code>false</code>, the ingress and egress
4324       interface fields of NetFlow flow records are derived from OpenFlow port
4325       numbers.  When it is <code>true</code>, the 7 most significant bits of
4326       these fields will be replaced by the least significant 7 bits of the
4327       engine id.  This is useful because many NetFlow collectors do not
4328       expect multiple switches to be sending messages from the same host, so
4329       they do not store the engine information which could be used to
4330       disambiguate the traffic.</p>
4331       <p>When this option is enabled, a maximum of 508 ports are supported.</p>
4332     </column>
4333
4334     <group title="Common Columns">
4335       The overall purpose of these columns is described under <code>Common
4336       Columns</code> at the beginning of this document.
4337
4338       <column name="external_ids"/>
4339     </group>
4340   </table>
4341
4342   <table name="SSL">
4343     SSL configuration for an Open_vSwitch.
4344
4345     <column name="private_key">
4346       Name of a PEM file containing the private key used as the switch's
4347       identity for SSL connections to the controller.
4348     </column>
4349
4350     <column name="certificate">
4351       Name of a PEM file containing a certificate, signed by the
4352       certificate authority (CA) used by the controller and manager,
4353       that certifies the switch's private key, identifying a trustworthy
4354       switch.
4355     </column>
4356
4357     <column name="ca_cert">
4358       Name of a PEM file containing the CA certificate used to verify
4359       that the switch is connected to a trustworthy controller.
4360     </column>
4361
4362     <column name="bootstrap_ca_cert">
4363       If set to <code>true</code>, then Open vSwitch will attempt to
4364       obtain the CA certificate from the controller on its first SSL
4365       connection and save it to the named PEM file. If it is successful,
4366       it will immediately drop the connection and reconnect, and from then
4367       on all SSL connections must be authenticated by a certificate signed
4368       by the CA certificate thus obtained.  <em>This option exposes the
4369       SSL connection to a man-in-the-middle attack obtaining the initial
4370       CA certificate.</em>  It may still be useful for bootstrapping.
4371     </column>
4372
4373     <group title="Common Columns">
4374       The overall purpose of these columns is described under <code>Common
4375       Columns</code> at the beginning of this document.
4376
4377       <column name="external_ids"/>
4378     </group>
4379   </table>
4380
4381   <table name="sFlow">
4382     <p>A set of sFlow(R) targets.  sFlow is a protocol for remote
4383     monitoring of switches.</p>
4384
4385     <column name="agent">
4386       Name of the network device whose IP address should be reported as the
4387       ``agent address'' to collectors.  If not specified, the agent device is
4388       figured from the first target address and the routing table.  If the
4389       routing table does not contain a route to the target, the IP address
4390       defaults to the <ref table="Controller" column="local_ip"/> in the
4391       collector's <ref table="Controller"/>.  If an agent IP address cannot be
4392       determined any of these ways, sFlow is disabled.
4393     </column>
4394
4395     <column name="header">
4396       Number of bytes of a sampled packet to send to the collector.
4397       If not specified, the default is 128 bytes.
4398     </column>
4399
4400     <column name="polling">
4401       Polling rate in seconds to send port statistics to the collector.
4402       If not specified, defaults to 30 seconds.
4403     </column>
4404
4405     <column name="sampling">
4406       Rate at which packets should be sampled and sent to the collector.
4407       If not specified, defaults to 400, which means one out of 400
4408       packets, on average, will be sent to the collector.
4409     </column>
4410
4411     <column name="targets">
4412       sFlow targets in the form
4413       <code><var>ip</var>:<var>port</var></code>.
4414     </column>
4415
4416     <group title="Common Columns">
4417       The overall purpose of these columns is described under <code>Common
4418       Columns</code> at the beginning of this document.
4419
4420       <column name="external_ids"/>
4421     </group>
4422   </table>
4423
4424   <table name="IPFIX">
4425     <p>Configuration for sending packets to IPFIX collectors.</p>
4426
4427     <p>
4428       IPFIX is a protocol that exports a number of details about flows.  The
4429       IPFIX implementation in Open vSwitch samples packets at a configurable
4430       rate, extracts flow information from those packets, optionally caches and
4431       aggregates the flow information, and sends the result to one or more
4432       collectors.
4433     </p>
4434
4435     <p>
4436       IPFIX in Open vSwitch can be configured two different ways:
4437     </p>
4438
4439     <ul>
4440       <li>
4441         With <em>per-bridge sampling</em>, Open vSwitch performs IPFIX sampling
4442         automatically on all packets that pass through a bridge.  To configure
4443         per-bridge sampling, create an <ref table="IPFIX"/> record and point a
4444         <ref table="Bridge"/> table's <ref table="Bridge" column="ipfix"/>
4445         column to it.  The <ref table="Flow_Sample_Collector_Set"/> table is
4446         not used for per-bridge sampling.
4447       </li>
4448
4449       <li>
4450         <p>
4451           With <em>flow-based sampling</em>, <code>sample</code> actions in the
4452           OpenFlow flow table drive IPFIX sampling.  See
4453           <code>ovs-ofctl</code>(8) for a description of the
4454           <code>sample</code> action.
4455         </p>
4456
4457         <p>
4458           Flow-based sampling also requires database configuration: create a
4459           <ref table="IPFIX"/> record that describes the IPFIX configuration
4460           and a <ref table="Flow_Sample_Collector_Set"/> record that points to
4461           the <ref table="Bridge"/> whose flow table holds the
4462           <code>sample</code> actions and to <ref table="IPFIX"/> record.  The
4463           <ref table="Bridge" column="ipfix"/> in the <ref table="Bridge"/>
4464           table is not used for flow-based sampling.
4465         </p>
4466       </li>
4467     </ul>
4468
4469     <column name="targets">
4470       IPFIX target collectors in the form
4471       <code><var>ip</var>:<var>port</var></code>.
4472     </column>
4473
4474     <column name="cache_active_timeout">
4475       The maximum period in seconds for which an IPFIX flow record is
4476       cached and aggregated before being sent.  If not specified,
4477       defaults to 0.  If 0, caching is disabled.
4478     </column>
4479
4480     <column name="cache_max_flows">
4481       The maximum number of IPFIX flow records that can be cached at a
4482       time.  If not specified, defaults to 0.  If 0, caching is
4483       disabled.
4484     </column>
4485
4486     <group title="Per-Bridge Sampling">
4487       <p>
4488         These values affect only per-bridge sampling.  See above for a
4489         description of the differences between per-bridge and flow-based
4490         sampling.
4491       </p>
4492
4493       <column name="sampling">
4494         The rate at which packets should be sampled and sent to each target
4495         collector.  If not specified, defaults to 400, which means one out of
4496         400 packets, on average, will be sent to each target collector.
4497       </column>
4498
4499       <column name="obs_domain_id">
4500         The IPFIX Observation Domain ID sent in each IPFIX packet.  If not
4501         specified, defaults to 0.
4502       </column>
4503
4504       <column name="obs_point_id">
4505         The IPFIX Observation Point ID sent in each IPFIX flow record.  If not
4506         specified, defaults to 0.
4507       </column>
4508
4509       <column name="other_config" key="enable-tunnel-sampling"
4510               type='{"type": "boolean"}'>
4511         <p>
4512           Set to <code>true</code> to enable sampling and reporting tunnel
4513           header 7-tuples in IPFIX flow records.  Tunnel sampling is disabled
4514           by default.
4515         </p>
4516
4517         <p>
4518           The following enterprise entities report the sampled tunnel info:
4519         </p>
4520
4521         <dl>
4522           <dt>tunnelType:</dt>
4523           <dd>
4524             <p>ID: 891, and enterprise ID 6876 (VMware).</p>
4525             <p>type: unsigned 8-bit integer.</p>
4526             <p>data type semantics: identifier.</p>
4527             <p>description: Identifier of the layer 2 network overlay network
4528             encapsulation type: 0x01 VxLAN, 0x02 GRE, 0x03 LISP, 0x05 IPsec+GRE,
4529             0x07 GENEVE.</p>
4530           </dd>
4531           <dt>tunnelKey:</dt>
4532           <dd>
4533             <p>ID: 892, and enterprise ID 6876 (VMware).</p>
4534             <p>type: variable-length octetarray.</p>
4535             <p>data type semantics: identifier.</p>
4536             <p>description: Key which is used for identifying an individual
4537             traffic flow within a VxLAN (24-bit VNI), GENEVE (24-bit VNI),
4538             GRE (32-bit key), or LISP (24-bit instance ID) tunnel. The
4539             key is encoded in this octetarray as a 3-, 4-, or 8-byte integer
4540             ID in network byte order.</p>
4541           </dd>
4542           <dt>tunnelSourceIPv4Address:</dt>
4543           <dd>
4544             <p>ID: 893, and enterprise ID 6876 (VMware).</p>
4545             <p>type: unsigned 32-bit integer.</p>
4546             <p>data type semantics: identifier.</p>
4547             <p>description: The IPv4 source address in the tunnel IP packet
4548             header.</p>
4549           </dd>
4550           <dt>tunnelDestinationIPv4Address:</dt>
4551           <dd>
4552             <p>ID: 894, and enterprise ID 6876 (VMware).</p>
4553             <p>type: unsigned 32-bit integer.</p>
4554             <p>data type semantics: identifier.</p>
4555             <p>description: The IPv4 destination address in the tunnel IP
4556             packet header.</p>
4557           </dd>
4558           <dt>tunnelProtocolIdentifier:</dt>
4559           <dd>
4560             <p>ID: 895, and enterprise ID 6876 (VMware).</p>
4561             <p>type: unsigned 8-bit integer.</p>
4562             <p>data type semantics: identifier.</p>
4563             <p>description: The value of the protocol number in the tunnel
4564             IP packet header. The protocol number identifies the tunnel IP
4565             packet payload type.</p>
4566           </dd>
4567           <dt>tunnelSourceTransportPort:</dt>
4568           <dd>
4569             <p>ID: 896, and enterprise ID 6876 (VMware).</p>
4570             <p>type: unsigned 16-bit integer.</p>
4571             <p>data type semantics: identifier.</p>
4572             <p>description: The source port identifier in the tunnel transport
4573             header. For the transport protocols UDP, TCP, and SCTP, this is
4574             the source port number given in the respective header.</p>
4575           </dd>
4576           <dt>tunnelDestinationTransportPort:</dt>
4577           <dd>
4578             <p>ID: 897, and enterprise ID 6876 (VMware).</p>
4579             <p>type: unsigned 16-bit integer.</p>
4580             <p>data type semantics: identifier.</p>
4581             <p>description: The destination port identifier in the tunnel
4582             transport header. For the transport protocols UDP, TCP, and SCTP,
4583             this is the destination port number given in the respective header.
4584             </p>
4585           </dd>
4586         </dl>
4587       </column>
4588
4589       <column name="other_config" key="enable-input-sampling"
4590               type='{"type": "boolean"}'>
4591         By default, Open vSwitch samples and reports flows at bridge port input
4592         in IPFIX flow records.  Set this column to <code>false</code> to
4593         disable input sampling.
4594       </column>
4595
4596       <column name="other_config" key="enable-output-sampling"
4597               type='{"type": "boolean"}'>
4598         By default, Open vSwitch samples and reports flows at bridge port
4599         output in IPFIX flow records.  Set this column to <code>false</code> to
4600         disable output sampling.
4601       </column>
4602     </group>
4603
4604     <group title="Common Columns">
4605       The overall purpose of these columns is described under <code>Common
4606       Columns</code> at the beginning of this document.
4607
4608       <column name="external_ids"/>
4609     </group>
4610   </table>
4611
4612   <table name="Flow_Sample_Collector_Set">
4613     <p>
4614       A set of IPFIX collectors of packet samples generated by OpenFlow
4615       <code>sample</code> actions.  This table is used only for IPFIX
4616       flow-based sampling, not for per-bridge sampling (see the <ref
4617       table="IPFIX"/> table for a description of the two forms).
4618     </p>
4619
4620     <column name="id">
4621       The ID of this collector set, unique among the bridge's
4622       collector sets, to be used as the <code>collector_set_id</code>
4623       in OpenFlow <code>sample</code> actions.
4624     </column>
4625
4626     <column name="bridge">
4627       The bridge into which OpenFlow <code>sample</code> actions can
4628       be added to send packet samples to this set of IPFIX collectors.
4629     </column>
4630
4631     <column name="ipfix">
4632       Configuration of the set of IPFIX collectors to send one flow
4633       record per sampled packet to.
4634     </column>
4635
4636     <group title="Common Columns">
4637       The overall purpose of these columns is described under <code>Common
4638       Columns</code> at the beginning of this document.
4639
4640       <column name="external_ids"/>
4641     </group>
4642   </table>
4643
4644   <table name="AutoAttach">
4645     <p>Auto Attach configuration within a bridge.  The IETF Auto-Attach SPBM
4646        draft standard describes a compact method of using IEEE 802.1AB Link
4647        Layer Discovery Protocol (LLDP) together with a IEEE 802.1aq Shortest
4648        Path Bridging (SPB) network to automatically attach network devices
4649        to individual services in a SPB network.  The intent here is to allow
4650        network applications and devices using OVS to be able to easily take
4651        advantage of features offered by industry standard SPB networks.</p>
4652
4653     <p>Auto Attach (AA) uses LLDP to communicate between a directly connected
4654        Auto Attach Client (AAC) and Auto Attach Server (AAS). The LLDP protocol
4655        is extended to add two new Type-Length-Value tuples (TLVs). The first
4656        new TLV supports the ongoing discovery of directly connected AA
4657        correspondents. Auto Attach operates by regularly transmitting AA
4658        discovery TLVs between the AA client and AA server. By exchanging these
4659        discovery messages, both the AAC and AAS learn the system name and
4660        system description of their peer. In the OVS context, OVS operates as
4661        the AA client and the AA server resides on a switch at the edge of the
4662        SPB network.</p>
4663
4664      <p>Once AA discovery has been completed the AAC then uses the
4665        second new TLV to deliver identifier mappings from the AAC to the AAS. A primary
4666        feature of Auto Attach is to facilitate the mapping of VLANs defined
4667        outside the SPB network onto service ids (ISIDs) defined within the SPM
4668        network. By doing so individual external VLANs can be mapped onto
4669        specific SPB network services. These VLAN id to ISID mappings can be
4670        configured and managed locally using new options added to the ovs-vsctl
4671        command.</p>
4672
4673     <p>The Auto Attach OVS feature does not provide a full implementation of
4674        the LLDP protocol. Support for the mandatory TLVs as defined by the LLDP
4675        standard and support for the AA TLV extensions is provided. LLDP
4676        protocol support in OVS can be enabled or disabled on a port by port
4677        basis. LLDP support is disabled by default.</p>
4678
4679     <column name="system_name">
4680       The system_name string is exported in LLDP messages.  It should uniquely
4681       identify the bridge in the network.
4682     </column>
4683
4684     <column name="system_description">
4685       The system_description string is exported in LLDP messages.  It should
4686       describe the type of software and hardware.
4687     </column>
4688
4689     <column name="mappings">
4690       A mapping from SPB network Individual Service Identifier (ISID) to VLAN id.
4691     </column>
4692   </table>
4693 </database>