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